Searched refs:TypeList (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/sensorservice/
H A Dtraits.h30 struct TypeList { struct in namespace:android
36 #define TYPELIST_1(T1) TypeList<T1, NullType>
37 #define TYPELIST_2(T1, T2) TypeList<T1, TYPELIST_1(T2)>
38 #define TYPELIST_3(T1, T2, T3) TypeList<T1, TYPELIST_2(T2, T3)>
39 #define TYPELIST_4(T1, T2, T3, T4) TypeList<T1, TYPELIST_3(T2, T3, T4)>
51 struct IndexOf<TypeList<T, Tail>, T> {
56 struct IndexOf<TypeList<Head, Tail>, T> {
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.h43 typedef std::vector<llvm::Type*> TypeList; typedef in class:llvm_2_9::ValueEnumerator
50 TypeList Types;
124 const TypeList &getTypes() const { return Types; }
H A DBitcodeWriter.cpp171 const llvm_2_9::ValueEnumerator::TypeList &TypeList = VE.getTypes(); local
185 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
186 Type *T = TypeList[i];
244 const llvm_2_9::ValueEnumerator::TypeList &TypeList = VE.getTypes(); local
312 TypeVals.push_back(TypeList.size());
317 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
318 Type *T = TypeList[i];
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.h43 typedef std::vector<llvm::Type*> TypeList; typedef in class:llvm_2_9_func::ValueEnumerator
50 TypeList Types;
124 const TypeList &getTypes() const { return Types; }
H A DBitcodeWriter.cpp194 const llvm_2_9_func::ValueEnumerator::TypeList &TypeList = VE.getTypes(); local
251 TypeVals.push_back(TypeList.size());
256 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
257 Type *T = TypeList[i];
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp99 std::vector<Type*>().swap(TypeList);
422 if (ID >= TypeList.size())
425 if (Type *Ty = TypeList[ID])
430 return TypeList[ID] = StructType::create(Context, "");
435 if (ID >= TypeList.size())
436 TypeList.resize(ID+1);
438 return TypeList[ID];
558 if (!TypeList.empty())
570 if (NumRecords != TypeList.size())
600 TypeList
[all...]
H A DBitcodeReader.h139 std::vector<Type*> TypeList;
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp340 std::vector<Type*>().swap(TypeList);
701 if (ID >= TypeList.size())
704 if (Type *Ty = TypeList[ID])
709 return TypeList[ID] = StructType::create(Context);
714 if (ID >= TypeList.size())
715 TypeList.resize(ID+1);
717 return TypeList[ID];
837 if (!TypeList.empty())
849 if (NumRecords != TypeList.size())
879 TypeList
[all...]
H A DBitcodeReader.h139 std::vector<Type*> TypeList;
/frameworks/compile/mclinker/utils/gtest/include/
H A Dgtest.h6705 // The TypeList template makes it possible to use either a single type
6710 struct TypeList { typedef Types1<T> type; }; struct in namespace:testing::internal
6722 struct TypeList<Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, struct in namespace:testing::internal
16997 typedef ::testing::internal::TypeList< Types >::type \
17085 ::testing::internal::TypeList< Types >::type>::Register(\

Completed in 358 milliseconds