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

  /external/llvm/include/llvm/Object/
Binary.h 32 unsigned int TypeID;
66 unsigned int getType() const { return TypeID; }
71 return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
75 return TypeID == ID_Archive;
79 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
83 return TypeID == ID_MachO;
87 return TypeID == ID_COFF;
  /external/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/llvm/include/llvm/
Type.h 49 enum TypeID {
83 // Note: TypeID : low 8 bit; SubclassData : high 24 bit.
88 explicit Type(LLVMContext &C, TypeID tid)
95 void setTypeID(TypeID ID) {
97 assert(getTypeID() == ID && "TypeID data too large for field");
131 /// of the TypeID enum elements defined above.
133 TypeID getTypeID() const { return (TypeID)(IDAndSubclassData & 0xFF); }
352 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
  /external/llvm/lib/AsmParser/
LLParser.cpp 295 unsigned TypeID = Lex.getUIntVal();
302 if (TypeID >= NumberedTypes.size())
303 NumberedTypes.resize(TypeID+1);
307 NumberedTypes[TypeID], Result)) return true;
310 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 353 unsigned *TypeID = &TypeMap[Ty];
356 if (*TypeID)
364 *TypeID = ~0U;
372 // Refresh the TypeID pointer in case the table rehashed.
373 TypeID = &TypeMap[Ty];
380 if (*TypeID && *TypeID != ~0U)
386 *TypeID = Types.size();
  /external/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);
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 365 unsigned *TypeID = &TypeMap[Ty];
368 if (*TypeID)
376 *TypeID = ~0U;
384 // Refresh the TypeID pointer in case the table rehashed.
385 TypeID = &TypeMap[Ty];
392 if (*TypeID && *TypeID != ~0U)
398 *TypeID = Types.size();
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 365 unsigned *TypeID = &TypeMap[Ty];
368 if (*TypeID)
376 *TypeID = ~0U;
384 // Refresh the TypeID pointer in case the table rehashed.
385 TypeID = &TypeMap[Ty];
392 if (*TypeID && *TypeID != ~0U)
398 *TypeID = Types.size();
  /external/llvm/include/llvm/Support/
YAMLParser.h 135 unsigned int getType() const { return TypeID; }
157 unsigned int TypeID;
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 82 typedef uint32_t TypeID;
92 TypeID asTypeID(unsigned FastQuals) const {
94 return TypeID(-1);
98 static TypeIdx fromTypeID(TypeID ID) {
99 if (ID == TypeID(-1))
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 486 milliseconds