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

1 2

  /external/llvm/include/llvm/Object/
Binary.h 32 unsigned int TypeID;
57 unsigned int getType() const { return TypeID; }
  /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 35 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
ASTReaderDecl.cpp 41 TypeID TypeIDForTypeDecl;
    [all...]
ASTReader.cpp     [all...]
  /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...]
ASTWriter.h 146 serialization::TypeID FirstTypeID;
149 serialization::TypeID NextTypeID;
458 serialization::TypeID GetOrCreateTypeID(QualType T);
461 serialization::TypeID getTypeID(QualType T) const;
Module.h 286 serialization::TypeID BaseTypeIndex;
ASTReader.h 263 typedef ContinuousRangeMap<serialization::TypeID, Module *, 4>
868 QualType GetType(serialization::TypeID ID);
874 serialization::TypeID getGlobalTypeID(Module &F, unsigned LocalID) const;
    [all...]
  /external/llvm/include/llvm/
Type.h 47 enum TypeID {
77 TypeID ID : 8; // The current base type of this type.
82 explicit Type(LLVMContext &C, TypeID tid)
117 /// of the TypeID enum elements defined above.
119 TypeID getTypeID() const { return ID; }
302 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
DerivedTypes.h 147 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) { }
311 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/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 150 int TypeID = TypeIds[J];
151 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
152 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
701 unsigned TypeID = *I;
704 if (TypeID != 0)
708 Asm->EmitULEB128(TypeID);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 319 unsigned *TypeID = &TypeMap[Ty];
322 if (*TypeID)
330 *TypeID = ~0U;
338 // Refresh the TypeID pointer in case the table rehashed.
339 TypeID = &TypeMap[Ty];
346 if (*TypeID && *TypeID != ~0U)
352 *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 319 unsigned *TypeID = &TypeMap[Ty];
322 if (*TypeID)
330 *TypeID = ~0U;
338 // Refresh the TypeID pointer in case the table rehashed.
339 TypeID = &TypeMap[Ty];
346 if (*TypeID && *TypeID != ~0U)
352 *TypeID = Types.size();
  /external/llvm/lib/Object/
Binary.cpp 32 : TypeID(Type)
  /external/llvm/lib/AsmParser/
LLParser.cpp 300 unsigned TypeID = Lex.getUIntVal();
307 if (TypeID >= NumberedTypes.size())
308 NumberedTypes.resize(TypeID+1);
312 NumberedTypes[TypeID], Result)) return true;
315 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/Bitcode/Reader/
BitcodeReader.cpp 955 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
958 unsigned TypeID = Record[0];
959 if (TypeID >= TypeList.size())
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 930 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
933 unsigned TypeID = Record[0];
934 if (TypeID >= TypeList.size())
938 if (StructType *STy = dyn_cast<StructType>(TypeList[TypeID]))
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 288 milliseconds

1 2