/external/swiftshader/third_party/LLVM/include/llvm/Object/ |
H A D | Binary.h | 32 unsigned int TypeID; member in class:llvm::object::Binary 57 unsigned int getType() const { return TypeID; }
|
/external/libcxx/test/support/ |
H A D | type_id.h | 25 // TypeID - Represent a unique identifier for a type. TypeID allows equality 27 struct TypeID { struct 28 friend bool operator==(TypeID const& LHS, TypeID const& RHS) 30 friend bool operator!=(TypeID const& LHS, TypeID const& RHS) 39 std::printf("TypeID: %s\n", s.c_str()); 43 explicit constexpr TypeID(const char* xid) : m_id(xid) {} function in struct:TypeID 45 TypeID(cons [all...] |
H A D | container_test_types.h | 98 // TypeID - Represent a unique identifier for a type. TypeID allows equality 100 struct TypeID { struct in namespace:detail 101 friend bool operator==(TypeID const& LHS, TypeID const& RHS) 103 friend bool operator!=(TypeID const& LHS, TypeID const& RHS) 106 explicit constexpr TypeID(const int* xid) : m_id(xid) {} function in struct:detail::TypeID 112 // unique TypeID. 117 typedef TypeID I [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | ARMException.cpp | 129 unsigned TypeID = *I; local 132 if (TypeID != 0) 136 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
|
H A D | EHStreamer.cpp | 122 int TypeID = TypeIds[J]; local 123 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!"); 125 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID; 680 unsigned TypeID = *I; local 683 if (isFilterEHSelector(TypeID)) 687 Asm->EmitULEB128(TypeID);
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
H A D | MCSectionMachO.cpp | 229 unsigned TypeID; local 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/llvm/include/llvm/Object/ |
H A D | Binary.h | 34 unsigned int TypeID; member in class:llvm::object::Binary 87 unsigned int getType() const { return TypeID; } 91 return TypeID > ID_StartObjects && TypeID < ID_EndObjects; 99 return TypeID == ID_Archive; 103 return TypeID == ID_MachOUniversalBinary; 107 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B; 111 return TypeID >= ID_MachO32L && TypeID < [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/ |
H A D | Type.h | 47 enum TypeID { enum in class:llvm::Type 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);
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 319 unsigned *TypeID = &TypeMap[Ty]; local 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/include/llvm/IR/ |
H A D | Type.h | 54 enum TypeID { enum in class:llvm::Type 82 TypeID ID : 8; // The current base type of this type. 87 explicit Type(LLVMContext &C, TypeID tid) 110 static bool isSequentialType(TypeID TyID) { 132 /// Return the type id for the type. This will return one of the TypeID enum 134 TypeID getTypeID() const { return ID; } 361 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
|
/external/llvm/lib/IR/ |
H A D | LLVMContext.cpp | 137 unsigned TypeID = getMDKindID("type"); local 138 assert(TypeID == MD_type && "type kind id drifted"); 139 (void)TypeID;
|
/external/llvm/lib/Target/Mips/ |
H A D | Mips16HardFloat.cpp | 102 typedef Type::TypeID TypeID; typedef 103 const Type::TypeID FloatTyID = Type::FloatTyID; 104 const Type::TypeID DoubleTyID = Type::DoubleTyID; 111 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID(); 122 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID(); 123 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
H A D | LLParser.cpp | 300 unsigned TypeID = Lex.getUIntVal(); local 307 if (TypeID >= NumberedTypes.size()) 308 NumberedTypes.resize(TypeID+1); 312 NumberedTypes[TypeID], Result)) return true; 315 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
H A D | JITDwarfEmitter.cpp | 270 int TypeID = TypeIds[I]; local 271 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!"); 272 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID; 472 unsigned TypeID = FilterIds[j]; local 473 JCE->emitULEB128Bytes(TypeID);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
H A D | Type.h | 54 enum TypeID { enum in class:llvm::Type 82 TypeID ID : 8; // The current base type of this type. 89 explicit Type(LLVMContext &C, TypeID tid) 112 static bool isSequentialType(TypeID TyID) { 134 /// Return the type id for the type. This will return one of the TypeID enum 136 TypeID getTypeID() const { return ID; } 372 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
|
/external/llvm/include/llvm/Support/ |
H A D | YAMLParser.h | 144 unsigned int getType() const { return TypeID; } 165 unsigned int TypeID; member in class:llvm::yaml::Node
|
/external/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 357 unsigned TypeID = Lex.getUIntVal(); local 366 NumberedTypes[TypeID], Result)) return true; 369 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
|
/external/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 824 unsigned *TypeID = &TypeMap[Ty]; local 827 if (*TypeID) 835 *TypeID = ~0U; 842 // Refresh the TypeID pointer in case the table rehashed. 843 TypeID = &TypeMap[Ty]; 850 if (*TypeID && *TypeID != ~0U) 856 *TypeID = Types.size();
|
/external/llvm/lib/Transforms/IPO/ |
H A D | WholeProgramDevirt.cpp | 173 // A slot in a set of virtual tables. The TypeID identifies the set of virtual 177 Metadata *TypeID; member in struct:__anon13424::VTableSlot 195 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^ 200 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; 344 auto TypeID = Type->getOperand(1).get(); local 351 TypeIdMap[TypeID].insert({BitsPtr, Offset}); 814 if (!tryFindVirtualCallTargets(TargetsForSlot, TypeIdMap[S.first.TypeID],
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | YAMLParser.h | 147 unsigned int getType() const { return TypeID; } 168 unsigned int TypeID; member in class:llvm::yaml::Node
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 958 unsigned TypeID = Record[0]; local 959 if (TypeID >= TypeList.size()) 963 if (StructType *STy = dyn_cast<StructType>(TypeList[TypeID]))
|
/external/clang/include/clang/Serialization/ |
H A D | ASTBitCodes.h | 80 typedef uint32_t TypeID; typedef in namespace:clang::serialization 90 TypeID asTypeID(unsigned FastQuals) const { 92 return TypeID(-1); 96 static TypeIdx fromTypeID(TypeID ID) { 97 if (ID == TypeID(-1))
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 4711 unsigned TypeID = DAG.getMachineFunction().getMMI().getTypeIDFor(GV); local 4712 Res = DAG.getConstant(TypeID, MVT::i32);
|
/external/clang/lib/Sema/ |
H A D | SemaDecl.cpp | 1946 const IdentifierInfo *TypeID = New->getIdentifier(); local 1947 switch (TypeID->getLength()) { 1951 if (!TypeID->isStr("id")) 1967 if (!TypeID->isStr("Class")) 1974 if (!TypeID->isStr("SEL"))
|