HomeSort by: relevance | last modified time | path
    Searched refs:TypeList (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 192 typedef ::testing::internal::TypeList<Types>::type GTEST_TYPE_PARAMS_( \
310 ::testing::internal::TypeList<Types>::type>:: \
318 ::testing::internal::TypeList<Types>::type>())
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 45 using TypeList = std::vector<Type *>;
59 TypeList Types;
212 const TypeList &getTypes() const { return Types; }
BitcodeWriter.cpp 849 const ValueEnumerator::TypeList &TypeList = VE.getTypes();
908 TypeVals.push_back(TypeList.size());
913 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
914 Type *T = TypeList[i];
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenTarget.cpp 709 for (ListInit *TypeList : {RetTypes, ParamTypes}) {
710 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) {
711 Record *TyEl = TypeList->getElementAsRecord(i);
726 ListInit *TypeList = RetTypes;
727 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) {
728 Record *TyEl = TypeList->getElementAsRecord(i);
757 TypeList = ParamTypes;
758 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) {
759 Record *TyEl = TypeList->getElementAsRecord(i);
769 Twine("ParamTypes is ") + TypeList->getAsString())
    [all...]
CodeGenRegisters.cpp 739 std::vector<Record*> TypeList = R->getValueAsListOfDefs("RegTypes");
740 if (TypeList.empty())
742 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
743 Record *Type = TypeList[i];
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangOpenCLBuiltinEmitter.cpp 116 // Populate the TypeList at the same time.
208 std::vector<const Record *> TypeList;
210 // Same as TypeList, but for generic types only.
292 ExtractEnumTypes(Types, TypesSeen, TypeEnums, TypeList);
378 T->getValueAsDef("TypeList")->getValueAsListOfDefs("List").size();
737 GenType->getValueAsDef("TypeList")->getValueAsListOfDefs("List");
739 // Collect all QualTypes for a single vector size into TypeList.
740 OS << " SmallVector<QualType, " << BaseTypes.size() << "> TypeList;\n";
748 OS << " TypeList.push_back("
754 OS << " GenTypeNumTypes = TypeList.size();\n"
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslmethod.c 625 UINT32 *TypeList)
634 TypeList[ParameterCount] =
642 TypeList[ParameterCount] =
aslcompiler.h 275 UINT32 *TypeList);
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 90 template <typename... Ts> struct TypeList {}; // Empty sentinel type list.
92 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> {
98 /// This type is used to do recursion. TypeList<>/EmptyTypeList indicates the
100 using tail = TypeList<Ts...>;
104 using EmptyTypeList = TypeList<>;
172 TypeList<CXXBaseSpecifier, CXXCtorInitializer,
182 TypeList<CXXFunctionalCastExpr, ExplicitCastExpr>, T>::value> * =
1187 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, QualType,
1214 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, TypeLoc,
1219 TypeList<CallExpr, CXXConstructExpr, CXXNewExpr, DeclRefExpr, EnumType
    [all...]
ASTMatchersMacros.h 216 /// You can't pass something like \c TypeList<Foo, Bar> to a macro, because it
218 /// \c void(TypeList<Foo, Bar>), which works thanks to the parenthesis.
220 /// extract the TypeList object.
222 void(::clang::ast_matchers::internal::TypeList<__VA_ARGS__>)
ASTMatchers.h 3480 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>,
3481 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>>
3497 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>,
3498 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>>
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 1002 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>,
1003 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>>
1007 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>,
1008 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc>>
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 429 template <class PolyMatcher, class TypeList>
431 std::vector<DynTypedMatcher> &Out, TypeList) {
432 Out.push_back(ast_matchers::internal::Matcher<typename TypeList::head>(Poly));
433 mergePolyMatchers(Poly, Out, typename TypeList::tail());
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 495 std::vector<Type*> TypeList;
1199 if (ID >= TypeList.size())
1202 if (Type *Ty = TypeList[ID])
1207 return TypeList[ID] = createIdentifiedStructType(Context);
1704 if (!TypeList.empty())
1724 if (NumRecords != TypeList.size())
1746 TypeList.resize(Record[0]);
1885 if (NumRecords >= TypeList.size())
1889 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
1892 TypeList[NumRecords] = nullptr
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-type-util.h 3301 // The TypeList template makes it possible to use either a single type
3306 struct TypeList {
3320 struct TypeList<Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,

Completed in 52 milliseconds