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

1 2

  /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/CodeGen/AsmPrinter/
ARMException.cpp 131 unsigned TypeID = *I;
134 if (TypeID != 0)
138 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/clang/lib/Serialization/
ASTCommon.h 46 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
ASTReader.cpp     [all...]
ASTWriter.cpp     [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/include/llvm/IR/
Type.h 53 enum TypeID {
81 TypeID ID : 8; // The current base type of this type.
86 explicit Type(LLVMContext &C, TypeID tid)
122 /// of the TypeID enum elements defined above.
124 TypeID getTypeID() const { return ID; }
369 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
DerivedTypes.h 150 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) {}
311 SequentialType(TypeID TID, Type *ElType)
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 80 typedef uint32_t TypeID;
90 TypeID asTypeID(unsigned FastQuals) const {
92 return TypeID(-1);
96 static TypeIdx fromTypeID(TypeID ID) {
97 if (ID == TypeID(-1))
    [all...]
ASTWriter.h 209 serialization::TypeID FirstTypeID;
212 serialization::TypeID NextTypeID;
665 serialization::TypeID GetOrCreateTypeID(QualType T);
668 serialization::TypeID getTypeID(QualType T) const;
    [all...]
Module.h 442 serialization::TypeID BaseTypeIndex;
ASTReader.h 425 typedef ContinuousRangeMap<serialization::TypeID, ModuleFile *, 4>
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 363 unsigned *TypeID = &TypeMap[Ty];
366 if (*TypeID)
374 *TypeID = ~0U;
381 // Refresh the TypeID pointer in case the table rehashed.
382 TypeID = &TypeMap[Ty];
389 if (*TypeID && *TypeID != ~0U)
395 *TypeID = Types.size();
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 363 unsigned *TypeID = &TypeMap[Ty];
366 if (*TypeID)
374 *TypeID = ~0U;
381 // Refresh the TypeID pointer in case the table rehashed.
382 TypeID = &TypeMap[Ty];
389 if (*TypeID && *TypeID != ~0U)
395 *TypeID = Types.size();
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 363 unsigned *TypeID = &TypeMap[Ty];
366 if (*TypeID)
374 *TypeID = ~0U;
381 // Refresh the TypeID pointer in case the table rehashed.
382 TypeID = &TypeMap[Ty];
389 if (*TypeID && *TypeID != ~0U)
395 *TypeID = Types.size();
  /external/llvm/lib/Object/
Binary.cpp 31 : TypeID(Type), Data(Source) {}
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 613 unsigned *TypeID = &TypeMap[Ty];
616 if (*TypeID)
624 *TypeID = ~0U;
631 // Refresh the TypeID pointer in case the table rehashed.
632 TypeID = &TypeMap[Ty];
639 if (*TypeID && *TypeID != ~0U)
645 *TypeID = Types.size();
  /external/llvm/include/llvm/Support/
YAMLParser.h 145 unsigned int getType() const { return TypeID; }
166 unsigned int TypeID;
  /external/llvm/lib/IR/
Type.cpp 26 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 342 unsigned TypeID = Lex.getUIntVal();
351 NumberedTypes[TypeID], Result)) return true;
354 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 1526 milliseconds

1 2