HomeSort by relevance Sort by last modified time
    Searched defs:TypeID (Results 1 - 25 of 36) sorted by null

1 2

  /external/libcxx/test/support/
type_id.h 25 // TypeID - Represent a unique identifier for a type. TypeID allows equality
27 struct TypeID {
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) {}
45 TypeID(const TypeID&) = delete
    [all...]
container_test_types.h 98 // TypeID - Represent a unique identifier for a type. TypeID allows equality
100 struct TypeID {
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) {}
112 // unique TypeID.
117 typedef TypeID ID
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
Binary.h 32 unsigned int TypeID;
57 unsigned int getType() const { return TypeID; }
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
CFBundle.cpp 153 auto PrintError = [&](CFTypeID TypeID) {
154 CFString TypeIDCFStr(::CFCopyTypeIDDescription(TypeID));
166 CFTypeID TypeID = ::CFGetTypeID(TypeRef);
167 if (TypeID == ::CFStringGetTypeID())
170 PrintError(TypeID);
174 CFTypeID TypeID = ::CFGetTypeID(TypeRef);
175 if (TypeID == ::CFStringGetTypeID())
178 PrintError(TypeID);
  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 129 unsigned TypeID = *I;
132 if (TypeID != 0)
136 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
EHStreamer.cpp 122 int TypeID = TypeIds[J];
123 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
125 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID;
680 unsigned TypeID = *I;
683 if (isFilterEHSelector(TypeID))
687 Asm->EmitULEB128(TypeID);
  /external/swiftshader/third_party/LLVM/lib/MC/
MCSectionMachO.cpp 229 unsigned TypeID;
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-7.0/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 126 unsigned TypeID = *I;
129 if (TypeID != 0)
133 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.cpp 319 unsigned *TypeID = &TypeMap[Ty];
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/llvm/include/llvm/Object/
Binary.h 34 unsigned int TypeID;
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 <= ID_MachO64B
    [all...]
  /external/llvm/lib/IR/
LLVMContext.cpp 137 unsigned TypeID = getMDKindID("type");
138 assert(TypeID == MD_type && "type kind id drifted");
139 (void)TypeID;
  /external/swiftshader/third_party/LLVM/include/llvm/
Type.h 47 enum TypeID {
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/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp 300 unsigned TypeID = Lex.getUIntVal();
307 if (TypeID >= NumberedTypes.size())
308 NumberedTypes.resize(TypeID+1);
312 NumberedTypes[TypeID], Result)) return true;
315 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 270 int TypeID = TypeIds[I];
271 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
272 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
472 unsigned TypeID = FilterIds[j];
473 JCE->emitULEB128Bytes(TypeID);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
InstructionSelectorImpl.h 214 const int64_t TypeID = TyI->second;
215 if (TypeID < LowerBound || UpperBound <= TypeID) {
219 CurrentIdx = MatchTable[CurrentIdx + (TypeID - LowerBound)];
458 int64_t TypeID = MatchTable[CurrentIdx++];
462 << "), TypeID=" << TypeID << ")\n");
466 MRI.getType(MO.getReg()) != ISelInfo.TypeObjects[TypeID]) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
Binary.h 34 unsigned int TypeID;
92 unsigned int getType() const { return TypeID; }
96 return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
102 return TypeID == ID_Archive;
106 return TypeID == ID_MachOUniversalBinary;
110 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
114 return TypeID >= ID_MachO32L && TypeID <= ID_MachO64B
    [all...]
WindowsResource.h 65 support::ulittle16_t TypeID;
71 TypeID = ID;
99 uint16_t getTypeID() const { return TypeID; }
123 uint16_t TypeID;
  /external/llvm/include/llvm/IR/
Type.h 54 enum TypeID {
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);
  /external/llvm/include/llvm/Support/
YAMLParser.h 144 unsigned int getType() const { return TypeID; }
165 unsigned int TypeID;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 824 unsigned *TypeID = &TypeMap[Ty];
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();
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 102 typedef Type::TypeID TypeID;
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/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 173 // A slot in a set of virtual tables. The TypeID identifies the set of virtual
177 Metadata *TypeID;
195 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^
200 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
344 auto TypeID = Type->getOperand(1).get();
351 TypeIdMap[TypeID].insert({BitsPtr, Offset});
682 Metadata *TypeId =
687 CallSlots[{TypeId, Call.Offset}].push_back(
717 Metadata *TypeId = cast<MetadataAsValue>(TypeIdValue)->getMetadata()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Type.h 55 enum TypeID {
83 TypeID ID : 8; // The current base type of this type.
91 explicit Type(LLVMContext &C, TypeID tid)
113 static bool isSequentialType(TypeID TyID) {
136 /// Return the type id for the type. This will return one of the TypeID enum
138 TypeID getTypeID() const { return ID; }
390 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
YAMLParser.h 173 unsigned int getType() const { return TypeID; }
182 unsigned int TypeID;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 857 unsigned *TypeID = &TypeMap[Ty];
860 if (*TypeID)
868 *TypeID = ~0U;
875 // Refresh the TypeID pointer in case the table rehashed.
876 TypeID = &TypeMap[Ty];
883 if (*TypeID && *TypeID != ~0U)
889 *TypeID = Types.size();
    [all...]

Completed in 672 milliseconds

1 2