Searched defs:TypeID (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp126 unsigned TypeID = *I; local
129 if (TypeID != 0)
133 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;
681 unsigned TypeID = *I; local
684 if (isFilterEHSelector(TypeID))
688 Asm->EmitULEB128(TypeID);
/external/llvm/include/llvm/Object/
H A DBinary.h34 unsigned int TypeID; member in class:llvm::object::Binary
85 unsigned int getType() const { return TypeID; }
89 return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
97 return TypeID == ID_Archive;
101 return TypeID == ID_MachOUniversalBinary;
105 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
109 return TypeID >= ID_MachO32L && TypeID <
[all...]
/external/llvm/include/llvm/IR/
H A DType.h54 enum TypeID { enum in class:llvm::Type
84 // Note: TypeID : low 8 bit; SubclassData : high 24 bit.
89 explicit Type(LLVMContext &C, TypeID tid)
96 void setTypeID(TypeID ID) {
98 assert(getTypeID() == ID && "TypeID data too large for field");
132 /// of the TypeID enum elements defined above.
134 TypeID getTypeID() const { return (TypeID)(IDAndSubclassData & 0xFF); }
377 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp302 unsigned TypeID = Lex.getUIntVal(); local
311 NumberedTypes[TypeID], Result)) return true;
314 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp624 unsigned *TypeID = &TypeMap[Ty]; local
627 if (*TypeID)
635 *TypeID = ~0U;
642 // Refresh the TypeID pointer in case the table rehashed.
643 TypeID = &TypeMap[Ty];
650 if (*TypeID && *TypeID != ~0U)
656 *TypeID = Types.size();
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp111 typedef Type::TypeID TypeID; typedef
112 const Type::TypeID FloatTyID = Type::FloatTyID;
113 const Type::TypeID DoubleTyID = Type::DoubleTyID;
120 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
131 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
132 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
/external/llvm/include/llvm/Support/
H A DYAMLParser.h144 unsigned int getType() const { return TypeID; }
164 unsigned int TypeID; member in class:llvm::yaml::Node
/external/clang/include/clang/Serialization/
H A DASTBitCodes.h82 typedef uint32_t TypeID; typedef in namespace:clang::serialization
92 TypeID asTypeID(unsigned FastQuals) const {
94 return TypeID(-1);
98 static TypeIdx fromTypeID(TypeID ID) {
99 if (ID == TypeID(-1))
/external/clang/lib/Sema/
H A DSemaDecl.cpp1905 const IdentifierInfo *TypeID = New->getIdentifier(); local
1906 switch (TypeID->getLength()) {
1910 if (!TypeID->isStr("id"))
1926 if (!TypeID->isStr("Class"))
1933 if (!TypeID->isStr("SEL"))

Completed in 274 milliseconds