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

/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-typed-test.h192 typedef ::testing::internal::TypeList<Types>::type GTEST_TYPE_PARAMS_( \
310 ::testing::internal::TypeList<Types>::type>:: \
318 ::testing::internal::TypeList<Types>::type>())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h45 using TypeList = std::vector<Type *>;
59 TypeList Types;
212 const TypeList &getTypes() const { return Types; }
H A DBitcodeWriter.cpp849 const ValueEnumerator::TypeList &TypeList = VE.getTypes(); local
908 TypeVals.push_back(TypeList.size());
913 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
914 Type *T = TypeList[i];
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenTarget.cpp709 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; local
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
[all...]
H A DCodeGenRegisters.cpp739 std::vector<Record*> TypeList = R->getValueAsListOfDefs("RegTypes"); local
740 if (TypeList.empty())
742 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
743 Record *Type = TypeList[i];
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp116 // Populate the TypeList at the same time.
208 std::vector<const Record *> TypeList; member in class:__anon1212::BuiltinNameEmitter
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
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Daslmethod.c625 UINT32 *TypeList)
634 TypeList[ParameterCount] =
642 TypeList[ParameterCount] =
623 MtProcessParameterTypeList( ACPI_PARSE_OBJECT *ParamTypeOp, UINT32 *TypeList) argument
H A Daslcompiler.h275 UINT32 *TypeList);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h90 template <typename... Ts> struct TypeList {}; // Empty sentinel type list. struct in namespace:clang::ast_matchers::internal
92 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> { struct in namespace:clang::ast_matchers::internal
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<CallExp
[all...]
H A DASTMatchersMacros.h216 /// 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__>)
H A DASTMatchers.h3480 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>>
/netbsd-current/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1002 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>>
/netbsd-current/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h429 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());
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp495 std::vector<Type*> TypeList; member in class:__anon1712::BitcodeReader
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[NumRecord
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-type-util.h3301 // The TypeList template makes it possible to use either a single type
3306 struct TypeList { struct in namespace:testing::internal
3320 struct TypeList<Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, struct in namespace:testing::internal

Completed in 376 milliseconds