Home
last modified time | relevance | path

Searched refs:IndexOf (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/native/services/sensorservice/
H A Dtraits.h43 template <typename TList, typename T> struct IndexOf;
46 struct IndexOf<NullType, T> {
51 struct IndexOf<TypeList<T, Tail>, T> {
56 struct IndexOf<TypeList<Head, Tail>, T> {
58 enum { temp = IndexOf<Tail, T>::value };
104 enum { isStdUnsignedInt = TL::IndexOf<UnsignedInts, T>::value >= 0 };
105 enum { isStdSignedInt = TL::IndexOf<SignedInts, T>::value >= 0 };
106 …enum { isStdIntegral = TL::IndexOf<OtherInts, T>::value >= 0 || isStdUnsignedInt || isStdSig…
107 enum { isStdFloat = TL::IndexOf<Floats, T>::value >= 0 };
/aosp12/art/runtime/interpreter/
H A Dinterpreter_cache.h67 Entry& entry = data_[IndexOf(key)]; in Get()
77 data_[IndexOf(key)] = Entry{key, value}; in Set()
87 static ALWAYS_INLINE size_t IndexOf(const void* key) { in IndexOf() function
/aosp12/art/runtime/
H A Ddebugger.cc858 size_t IndexOf(const char* s) const { in IndexOf() function in art::StringTable
1055 class_names.IndexOf(record->GetClassDescriptor(&temp)); in GetRecentAllocations()
1068 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); in GetRecentAllocations()
1069 size_t method_name_index = method_names.IndexOf(m->GetName()); in GetRecentAllocations()
1070 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); in GetRecentAllocations()
/aosp12/art/runtime/entrypoints/quick/
H A Dquick_entrypoints_list.h127 V(IndexOf, int32_t, void*, uint32_t, uint32_t) \
/aosp12/frameworks/native/libs/vr/libpdx/
H A Dvariant_tests.cpp637 TEST(Variant, IndexOf) { in TEST() argument