Searched refs:TypeID (Results 1 - 25 of 49) sorted by relevance

12

/external/libcxx/test/support/
H A Dtype_id.h25 // TypeID - Represent a unique identifier for a type. TypeID allows equality
27 struct TypeID { struct
28 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
30 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
39 std::printf("TypeID: %s\n", s.c_str());
43 explicit constexpr TypeID(const char* xid) : m_id(xid) {} function in struct:TypeID
45 TypeID(cons
[all...]
H A Dcontainer_test_types.h98 // TypeID - Represent a unique identifier for a type. TypeID allows equality
100 struct TypeID { struct in namespace:detail
101 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
103 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
106 explicit constexpr TypeID(const int* xid) : m_id(xid) {} function in struct:detail::TypeID
112 // unique TypeID.
117 typedef TypeID I
[all...]
H A Dcontrolled_allocators.hpp88 TypeID const* last_construct_alloc = nullptr;
89 TypeID const* last_construct_type = nullptr;
90 TypeID const* last_construct_args = nullptr;
94 TypeID const* last_destroy_alloc = nullptr;
95 TypeID const* last_destroy_type = nullptr;
/external/llvm/include/llvm/Object/
H A DBinary.h34 unsigned int TypeID; member in class:llvm::object::Binary
87 unsigned int getType() const { return TypeID; }
91 return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
99 return TypeID == ID_Archive;
103 return TypeID == ID_MachOUniversalBinary;
107 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
111 return TypeID >= ID_MachO32L && TypeID <
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DBinary.h32 unsigned int TypeID; member in class:llvm::object::Binary
57 unsigned int getType() const { return TypeID; }
/external/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp129 unsigned TypeID = *I; local
132 if (TypeID != 0)
136 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
H A DEHStreamer.cpp122 int TypeID = TypeIds[J]; local
123 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
125 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID;
680 unsigned TypeID = *I; local
683 if (isFilterEHSelector(TypeID))
687 Asm->EmitULEB128(TypeID);
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSectionMachO.cpp229 unsigned TypeID; local
230 for (TypeID = 0; TypeID !=MCSectionMachO::LAST_KNOWN_SECTION_TYPE+1; ++TypeID)
231 if (SectionTypeDescriptors[TypeID].AssemblerName &&
232 SectionType == SectionTypeDescriptors[TypeID].AssemblerName)
236 if (TypeID > MCSectionMachO::LAST_KNOWN_SECTION_TYPE)
239 // Remember the TypeID.
240 TAA = TypeID;
/external/swiftshader/third_party/LLVM/include/llvm/
H A DType.h47 enum TypeID { enum in class:llvm::Type
77 TypeID ID : 8; // The current base type of this type.
82 explicit Type(LLVMContext &C, TypeID tid)
117 /// of the TypeID enum elements defined above.
119 TypeID getTypeID() const { return ID; }
302 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
/external/llvm/include/llvm/IR/
H A DType.h54 enum TypeID { enum in class:llvm::Type
82 TypeID ID : 8; // The current base type of this type.
87 explicit Type(LLVMContext &C, TypeID tid)
110 static bool isSequentialType(TypeID TyID) {
132 /// Return the type id for the type. This will return one of the TypeID enum
134 TypeID getTypeID() const { return ID; }
361 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
H A DGlobalObject.h121 void addTypeMetadata(unsigned Offset, Metadata *TypeID);
/external/clang/lib/Serialization/
H A DASTCommon.h48 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp102 typedef Type::TypeID TypeID; typedef
103 const Type::TypeID FloatTyID = Type::FloatTyID;
104 const Type::TypeID DoubleTyID = Type::DoubleTyID;
111 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
122 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
123 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfException.cpp150 int TypeID = TypeIds[J];
151 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
152 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
706 unsigned TypeID = *I;
709 if (TypeID != 0)
713 Asm->EmitULEB128(TypeID);
/external/llvm/lib/IR/
H A DLLVMContext.cpp137 unsigned TypeID = getMDKindID("type"); local
138 assert(TypeID == MD_type && "type kind id drifted");
139 (void)TypeID;
/external/clang/include/clang/Serialization/
H A DASTBitCodes.h80 typedef uint32_t TypeID; typedef in namespace:clang::serialization
90 TypeID asTypeID(unsigned FastQuals) const {
92 return TypeID(-1);
96 static TypeIdx fromTypeID(TypeID ID) {
97 if (ID == TypeID(-1))
H A DModule.h428 serialization::TypeID BaseTypeIndex;
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
H A DValueEnumerator.cpp319 unsigned *TypeID = &TypeMap[Ty]; local
322 if (*TypeID)
330 *TypeID = ~0U;
338 // Refresh the TypeID pointer in case the table rehashed.
339 TypeID = &TypeMap[Ty];
346 if (*TypeID && *TypeID != ~0U)
352 *TypeID = Types.size();
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.cpp270 int TypeID = TypeIds[I]; local
271 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
272 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
472 unsigned TypeID = FilterIds[j]; local
473 JCE->emitULEB128Bytes(TypeID);
/external/llvm/lib/Object/
H A DBinary.cpp31 : TypeID(Type), Data(Source) {}
/external/swiftshader/third_party/LLVM/lib/Object/
H A DBinary.cpp32 : TypeID(Type)
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dapply.pass.cpp104 TypeID const* arg_types;
138 TypeID const* const expect_args = &makeArgumentID<ExpectArgs...>();
H A Dmake_from_tuple.pass.cpp48 TypeID const* arg_types;
59 TypeID const* arg_types;
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp824 unsigned *TypeID = &TypeMap[Ty]; local
827 if (*TypeID)
835 *TypeID = ~0U;
842 // Refresh the TypeID pointer in case the table rehashed.
843 TypeID = &TypeMap[Ty];
850 if (*TypeID && *TypeID != ~0U)
856 *TypeID = Types.size();
/external/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp173 // A slot in a set of virtual tables. The TypeID identifies the set of virtual
177 Metadata *TypeID; member in struct:__anon13302::VTableSlot
195 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^
200 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
344 auto TypeID = Type->getOperand(1).get(); local
351 TypeIdMap[TypeID].insert({BitsPtr, Offset});
814 if (!tryFindVirtualCallTargets(TargetsForSlot, TypeIdMap[S.first.TypeID],

Completed in 3363 milliseconds

12