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

  /external/chromium_org/content/public/browser/
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/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/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/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/llvm/include/llvm/Support/
YAMLParser.h 146 unsigned int getType() const { return TypeID; }
166 unsigned int TypeID;
  /external/llvm/lib/AsmParser/
LLParser.cpp 362 unsigned TypeID = Lex.getUIntVal();
369 if (TypeID >= NumberedTypes.size())
370 NumberedTypes.resize(TypeID+1);
374 NumberedTypes[TypeID], Result)) return true;
377 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /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();
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 959 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
962 unsigned TypeID = Record[0];
963 if (TypeID >= TypeList.size())
967 if (StructType *STy = dyn_cast<StructType>(TypeList[TypeID]))
    [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/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 616 milliseconds