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

1 2

  /external/llvm/include/llvm/Object/
Binary.h 34 unsigned int TypeID;
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 <= ID_MachO64B
    [all...]
  /external/chromium_org/content/browser/webui/
content_web_ui_controller_factory.h 17 virtual WebUI::TypeID GetWebUIType(BrowserContext* browser_context,
web_ui_controller_factory_registry.h 24 virtual WebUI::TypeID GetWebUIType(BrowserContext* browser_context,
web_ui_controller_factory_registry.cc 49 WebUI::TypeID WebUIControllerFactoryRegistry::GetWebUIType(
53 WebUI::TypeID type = (*factories)[i]->GetWebUIType(browser_context, url);
content_web_ui_controller_factory.cc 24 WebUI::TypeID ContentWebUIControllerFactory::GetWebUIType(
web_ui_mojo_browsertest.cc 154 virtual WebUI::TypeID GetWebUIType(BrowserContext* browser_context,
156 return reinterpret_cast<WebUI::TypeID>(1);
  /external/chromium_org/content/public/browser/
web_ui_controller_factory.h 38 virtual WebUI::TypeID GetWebUIType(BrowserContext* browser_context,
web_ui.h 35 typedef void* TypeID;
39 static const TypeID kNoWebUI;
  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 140 unsigned TypeID = *I;
143 if (TypeID != 0)
147 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
EHStreamer.cpp 122 int TypeID = TypeIds[J];
123 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
124 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
681 unsigned TypeID = *I;
684 if (TypeID != 0)
688 Asm->EmitULEB128(TypeID);
  /external/chromium_org/chrome/test/base/
test_chrome_web_ui_controller_factory.cc 35 WebUI::TypeID TestChromeWebUIControllerFactory::GetWebUIType(
39 return provider ? reinterpret_cast<WebUI::TypeID>(provider) :
test_chrome_web_ui_controller_factory.h 44 virtual content::WebUI::TypeID GetWebUIType(
  /external/chromium_org/athena/virtual_keyboard/
vk_webui_controller.h 27 virtual content::WebUI::TypeID GetWebUIType(
vk_webui_controller.cc 60 content::WebUI::TypeID VKWebUIControllerFactory::GetWebUIType(
  /external/chromium_org/chrome/browser/ui/webui/
chrome_web_ui_controller_factory.h 23 virtual content::WebUI::TypeID GetWebUIType(
  /external/llvm/include/llvm/IR/
Type.h 54 enum TypeID {
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/clang/lib/Serialization/
ASTCommon.h 41 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 98 typedef Type::TypeID TypeID;
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/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 193 serialization::TypeID FirstTypeID;
196 serialization::TypeID NextTypeID;
586 serialization::TypeID GetOrCreateTypeID(QualType T);
589 serialization::TypeID getTypeID(QualType T) const;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 355 unsigned *TypeID = &TypeMap[Ty];
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();
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 366 unsigned *TypeID = &TypeMap[Ty];
369 if (*TypeID)
377 *TypeID = ~0U;
385 // Refresh the TypeID pointer in case the table rehashed.
386 TypeID = &TypeMap[Ty];
393 if (*TypeID && *TypeID != ~0U)
399 *TypeID = Types.size();
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 366 unsigned *TypeID = &TypeMap[Ty];
369 if (*TypeID)
377 *TypeID = ~0U;
385 // Refresh the TypeID pointer in case the table rehashed.
386 TypeID = &TypeMap[Ty];
393 if (*TypeID && *TypeID != ~0U)
399 *TypeID = Types.size();
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 366 unsigned *TypeID = &TypeMap[Ty];
369 if (*TypeID)
377 *TypeID = ~0U;
385 // Refresh the TypeID pointer in case the table rehashed.
386 TypeID = &TypeMap[Ty];
393 if (*TypeID && *TypeID != ~0U)
399 *TypeID = Types.size();
  /external/llvm/lib/Object/
Binary.cpp 31 : TypeID(Type), Data(std::move(Source)) {}

Completed in 657 milliseconds

1 2