Searched refs:TypeID (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/include/llvm/Object/
H A DBinary.h32 unsigned int TypeID; member in class:llvm::object::Binary
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/
H A DMCSectionMachO.cpp229 unsigned TypeID; local
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/chromium/chrome/browser/ui/webui/
H A Dchrome_web_ui_factory.h23 virtual WebUI::TypeID GetWebUIType(Profile* profile, const GURL& url) const;
H A Dchrome_web_ui_factory.cc234 WebUI::TypeID ChromeWebUIFactory::GetWebUIType(Profile* profile,
237 return function ? reinterpret_cast<WebUI::TypeID>(function) : WebUI::kNoWebUI;
/external/clang/lib/Serialization/
H A DASTCommon.h34 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
H A DASTWriter.cpp3820 TypeID ASTWriter::GetOrCreateTypeID( QualType T) {
3825 TypeID ASTWriter::getTypeID(QualType T) const {
H A DASTReader.cpp4411 QualType ASTReader::GetType(TypeID ID) {
4499 serialization::TypeID
H A DASTReaderDecl.cpp46 TypeID TypeIDForTypeDecl;
/external/llvm/include/llvm/
H A DType.h49 enum TypeID { enum in class:llvm::Type
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);
H A DDerivedTypes.h147 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) { }
315 SequentialType(TypeID TID, Type *ElType)
/external/chromium/chrome/browser/tab_contents/
H A Drender_view_host_delegate_helper.h44 WebUI::TypeID webui_type,
H A Drender_view_host_delegate_helper.cc90 WebUI::TypeID webui_type,
/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))
H A DModule.h331 serialization::TypeID BaseTypeIndex;
H A DASTWriter.h184 serialization::TypeID FirstTypeID;
187 serialization::TypeID NextTypeID;
535 serialization::TypeID GetOrCreateTypeID(QualType T);
538 serialization::TypeID getTypeID(QualType T) const;
H A DASTReader.h270 typedef ContinuousRangeMap<serialization::TypeID, ModuleFile *, 4>
1049 QualType GetType(serialization::TypeID ID);
1055 serialization::TypeID getGlobalTypeID(ModuleFile &F, unsigned LocalID) const;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfException.cpp151 int TypeID = TypeIds[J];
152 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
153 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
702 unsigned TypeID = *I;
705 if (TypeID != 0)
709 Asm->EmitULEB128(TypeID);
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp353 unsigned *TypeID = &TypeMap[Ty]; local
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/
H A DJITDwarfEmitter.cpp270 int TypeID = TypeIds[I]; local
271 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
272 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
472 unsigned TypeID = FilterIds[j]; local
473 JCE->emitULEB128Bytes(TypeID);
/external/llvm/lib/Object/
H A DBinary.cpp32 : TypeID(Type)
/external/llvm/include/llvm/Support/
H A DYAMLParser.h135 unsigned int getType() const { return TypeID; }
157 unsigned int TypeID; member in class:llvm::yaml::Node
/external/llvm/lib/AsmParser/
H A DLLParser.cpp296 unsigned TypeID = Lex.getUIntVal(); local
303 if (TypeID >= NumberedTypes.size())
304 NumberedTypes.resize(TypeID+1);
308 NumberedTypes[TypeID], Result)) return true;
311 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
/external/llvm/lib/VMCore/
H A DType.cpp25 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
/external/llvm/lib/Support/
H A DYAMLParser.cpp1567 , TypeID(Type)
/external/clang/lib/Sema/
H A DSemaDecl.cpp1589 const IdentifierInfo *TypeID = New->getIdentifier(); local
1590 switch (TypeID->getLength()) {
1594 if (!TypeID->isStr("id"))
1610 if (!TypeID->isStr("Class"))
1617 if (!TypeID->isStr("SEL"))

Completed in 389 milliseconds

12