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

/external/chromium_org/content/public/browser/
H A Dweb_ui.h35 typedef void* TypeID; typedef in class:content::WebUI
39 static const TypeID kNoWebUI;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp140 unsigned TypeID = *I; local
143 if (TypeID != 0)
147 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!");
124 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
681 unsigned TypeID = *I; local
684 if (TypeID != 0)
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/lib/Bitcode/Writer/
H A DValueEnumerator.cpp355 unsigned *TypeID = &TypeMap[Ty]; local
358 if (*TypeID)
366 *TypeID = ~0U;
374 // Refresh the TypeID pointer in case the table rehashed.
375 TypeID = &TypeMap[Ty];
382 if (*TypeID && *TypeID != ~0U)
388 *TypeID = Types.size();
/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); }
374 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp98 typedef Type::TypeID TypeID; typedef
99 const Type::TypeID FloatTyID = Type::FloatTyID;
100 const Type::TypeID DoubleTyID = Type::DoubleTyID;
107 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
118 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
119 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
/external/llvm/include/llvm/Support/
H A DYAMLParser.h146 unsigned int getType() const { return TypeID; }
166 unsigned int TypeID; member in class:llvm::yaml::Node
/external/llvm/lib/AsmParser/
H A DLLParser.cpp362 unsigned TypeID = Lex.getUIntVal(); local
369 if (TypeID >= NumberedTypes.size())
370 NumberedTypes.resize(TypeID+1);
374 NumberedTypes[TypeID], Result)) return true;
377 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
/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.cpp1777 const IdentifierInfo *TypeID = New->getIdentifier(); local
1778 switch (TypeID->getLength()) {
1782 if (!TypeID->isStr("id"))
1798 if (!TypeID->isStr("Class"))
1805 if (!TypeID->isStr("SEL"))

Completed in 2033 milliseconds