Home
last modified time | relevance | path

Searched refs:TypeList (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenTarget.cpp709 for (ListInit *TypeList : {RetTypes, ParamTypes}) { in CodeGenIntrinsic()
710 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic()
711 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic()
726 ListInit *TypeList = RetTypes; in CodeGenIntrinsic() local
727 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic()
728 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic()
757 TypeList = ParamTypes; in CodeGenIntrinsic()
758 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) { in CodeGenIntrinsic()
759 Record *TyEl = TypeList->getElementAsRecord(i); in CodeGenIntrinsic()
769 Twine("ParamTypes is ") + TypeList->getAsString()); in CodeGenIntrinsic()
H A DCodeGenRegisters.cpp739 std::vector<Record*> TypeList = R->getValueAsListOfDefs("RegTypes"); in CodeGenRegisterClass() local
740 if (TypeList.empty()) in CodeGenRegisterClass()
742 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) { in CodeGenRegisterClass()
743 Record *Type = TypeList[i]; in CodeGenRegisterClass()
/netbsd-src/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-src/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; } in getTypes()
H A DBitcodeWriter.cpp849 const ValueEnumerator::TypeList &TypeList = VE.getTypes(); in writeTypeTable() local
908 TypeVals.push_back(TypeList.size()); in writeTypeTable()
913 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) { in writeTypeTable()
914 Type *T = TypeList[i]; in writeTypeTable()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h90 template <typename... Ts> struct TypeList {}; // Empty sentinel type list. struct
92 template <typename T1, typename... Ts> struct TypeList<T1, Ts...> {
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,
2280 TypeList<BinaryOperator, CXXOperatorCallExpr,
[all …]
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>>
H A DASTMatchersMacros.h222 void(::clang::ast_matchers::internal::TypeList<__VA_ARGS__>)
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp208 std::vector<const Record *> TypeList; member in __anonabd815670111::BuiltinNameEmitter
292 ExtractEnumTypes(Types, TypesSeen, TypeEnums, TypeList); in EmitDeclarations()
816 OS << " if (Ty.ID >= " << TypeList.size() << ") {"; in EmitQualTypeFinder()
/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Daslmethod.c625 UINT32 *TypeList) in MtProcessParameterTypeList() argument
634 TypeList[ParameterCount] = in MtProcessParameterTypeList()
642 TypeList[ParameterCount] = in MtProcessParameterTypeList()
H A Daslcompiler.h275 UINT32 *TypeList);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DOpenCLBuiltins.td214 class TypeList<list<Type> _Type> {
221 // For example, if TypeList = <int, float> and VectorList = <1, 2, 4>, then it
242 class GenericType<string _Ty, TypeList _TypeList, IntList _VectorList> :
245 TypeList TypeList = _TypeList;
246 // Possible vector sizes of the types in the TypeList.
375 def TLAll : TypeList<[Char, UChar, Short, UShort, Int, UInt, Long, ULong, Float, Doub…
376 def TLFloat : TypeList<[Float, Double, Half]>;
377 def TLSignedInts : TypeList<[Char, Short, Int, Long]>;
378 def TLUnsignedInts : TypeList<[UChar, UShort, UInt, ULong]>;
380 def TLIntLongFloats : TypeList<[Int, UInt, Long, ULong, Float, Double, Half]>;
[all …]
/netbsd-src/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-src/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-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp495 std::vector<Type*> TypeList; member in __anon8c0d27130411::BitcodeReader
1199 if (ID >= TypeList.size()) in getFullyStructuredTypeByID()
1202 if (Type *Ty = TypeList[ID]) in getFullyStructuredTypeByID()
1207 return TypeList[ID] = createIdentifiedStructType(Context); in getFullyStructuredTypeByID()
1704 if (!TypeList.empty()) in parseTypeTableBody()
1724 if (NumRecords != TypeList.size()) in parseTypeTableBody()
1746 TypeList.resize(Record[0]); in parseTypeTableBody()
1885 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1889 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
1892 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A Driscv_vector.td543 defvar TypeList = ["c","s","i","l","f","d"];
669 foreach type = TypeList in {
756 foreach type = TypeList in {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXIntrinsics.td7769 string TypeList = !cond(
7783 # TypeList # "\n\t\t"
7795 # TypeList
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-type-util.h3306 struct TypeList {
3320 struct TypeList<Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,