HomeSort by relevance Sort by last modified time
    Searched defs:TypeID (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/content/public/browser/
web_ui.h 36 typedef void* TypeID;
40 static const TypeID kNoWebUI;
  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 126 unsigned TypeID = *I;
129 if (TypeID != 0)
133 Asm->EmitTTypeReference((TypeID == 0 ? 0 : TypeInfos[TypeID - 1]),
  /external/llvm/lib/MC/
MCSectionMachO.cpp 230 unsigned TypeID;
231 for (TypeID = 0; TypeID !=MCSectionMachO::LAST_KNOWN_SECTION_TYPE+1; ++TypeID)
232 if (SectionTypeDescriptors[TypeID].AssemblerName &&
233 SectionType == SectionTypeDescriptors[TypeID].AssemblerName)
237 if (TypeID > MCSectionMachO::LAST_KNOWN_SECTION_TYPE)
240 // Remember the TypeID.
241 TAA = TypeID;
  /external/llvm/include/llvm/Object/
Binary.h 32 unsigned int TypeID;
80 unsigned int getType() const { return TypeID; }
84 return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
88 return TypeID == ID_Archive;
92 return TypeID == ID_MachOUniversalBinary;
96 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
100 return TypeID >= ID_MachO32L && TypeID <= ID_MachO64B
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 354 unsigned *TypeID = &TypeMap[Ty];
357 if (*TypeID)
365 *TypeID = ~0U;
373 // Refresh the TypeID pointer in case the table rehashed.
374 TypeID = &TypeMap[Ty];
381 if (*TypeID && *TypeID != ~0U)
387 *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 356 unsigned *TypeID = &TypeMap[Ty];
359 if (*TypeID)
367 *TypeID = ~0U;
375 // Refresh the TypeID pointer in case the table rehashed.
376 TypeID = &TypeMap[Ty];
383 if (*TypeID && *TypeID != ~0U)
389 *TypeID = Types.size();
  /external/llvm/include/llvm/IR/
Type.h 53 enum TypeID {
87 // Note: TypeID : low 8 bit; SubclassData : high 24 bit.
92 explicit Type(LLVMContext &C, TypeID tid)
99 void setTypeID(TypeID ID) {
101 assert(getTypeID() == ID && "TypeID data too large for field");
135 /// of the TypeID enum elements defined above.
137 TypeID getTypeID() const { return (TypeID)(IDAndSubclassData & 0xFF); }
376 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
  /external/llvm/include/llvm/Support/
YAMLParser.h 138 unsigned int getType() const { return TypeID; }
159 unsigned int TypeID;
  /external/llvm/lib/AsmParser/
LLParser.cpp 353 unsigned TypeID = Lex.getUIntVal();
360 if (TypeID >= NumberedTypes.size())
361 NumberedTypes.resize(TypeID+1);
365 NumberedTypes[TypeID], Result)) return true;
368 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 95 typedef Type::TypeID TypeID;
96 const Type::TypeID FloatTyID = Type::FloatTyID;
97 const Type::TypeID DoubleTyID = Type::DoubleTyID;
104 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
115 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
116 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 965 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
968 unsigned TypeID = Record[0]
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.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...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]