Searched refs:TypeList (Results 1 - 5 of 5) 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.h38 typedef std::vector<Type*> TypeList; typedef in class:llvm::ValueEnumerator
45 TypeList Types;
116 const TypeList &getTypes() const { return Types; }
H A DBitcodeWriter.cpp164 const ValueEnumerator::TypeList &TypeList = VE.getTypes(); local
178 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
179 Type *T = TypeList[i];
236 const ValueEnumerator::TypeList &TypeList = VE.getTypes(); local
304 TypeVals.push_back(TypeList.size());
309 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
310 Type *T = TypeList[i];
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp47 std::vector<Type*>().swap(TypeList);
370 if (ID >= TypeList.size())
373 if (Type *Ty = TypeList[ID])
378 return TypeList[ID] = StructType::create(Context, "");
383 if (ID >= TypeList.size())
384 TypeList.resize(ID+1);
386 return TypeList[ID];
504 if (!TypeList.empty())
516 if (NumRecords != TypeList.size())
546 TypeList
[all...]
H A DBitcodeReader.h139 std::vector<Type*> TypeList;

Completed in 103 milliseconds