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

1 2

  /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/chromium/chrome/browser/ui/webui/
chrome_web_ui_factory.h 23 virtual WebUI::TypeID GetWebUIType(Profile* profile, const GURL& url) const;
chrome_web_ui_factory.cc 234 WebUI::TypeID ChromeWebUIFactory::GetWebUIType(Profile* profile,
237 return function ? reinterpret_cast<WebUI::TypeID>(function) : WebUI::kNoWebUI;
  /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/clang/lib/Serialization/
ASTCommon.h 34 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
  /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);
DerivedTypes.h 147 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) { }
315 SequentialType(TypeID TID, Type *ElType)
  /external/chromium/chrome/browser/tab_contents/
render_view_host_delegate_helper.h 44 WebUI::TypeID webui_type,
render_view_host_delegate_helper.cc 90 WebUI::TypeID webui_type,
  /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...]
Module.h 331 serialization::TypeID BaseTypeIndex;
ASTWriter.h 184 serialization::TypeID FirstTypeID;
187 serialization::TypeID NextTypeID;
535 serialization::TypeID GetOrCreateTypeID(QualType T);
538 serialization::TypeID getTypeID(QualType T) const;
ASTReader.h 270 typedef ContinuousRangeMap<serialization::TypeID, ModuleFile *, 4>
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 151 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/
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/lib/Object/
Binary.cpp 32 : TypeID(Type)
  /external/llvm/include/llvm/Support/
YAMLParser.h 135 unsigned int getType() const { return TypeID; }
157 unsigned int TypeID;
  /external/llvm/lib/AsmParser/
LLParser.cpp 296 unsigned TypeID = Lex.getUIntVal();
303 if (TypeID >= NumberedTypes.size())
304 NumberedTypes.resize(TypeID+1);
308 NumberedTypes[TypeID], Result)) return true;
311 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /external/llvm/lib/VMCore/
Type.cpp 25 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
  /external/llvm/lib/Support/
YAMLParser.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 769 milliseconds

1 2