/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 896 unsigned MIType; 901 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 902 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 904 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 908 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 912 return hash_combine(MIType, Line, Name, Value); 917 unsigned MIType; 922 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 924 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 926 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), [all …]
|
D | DebugInfoMetadata.cpp | 627 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 631 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 633 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 636 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 641 (MIType, Line, File, Elements)); in getImpl() 643 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 1093 unsigned MIType; 1098 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 1099 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1101 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1105 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1110 return hash_combine(MIType, Line, Name, Value); 1115 unsigned MIType; 1120 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1122 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1124 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), [all …]
|
D | DebugInfoMetadata.cpp | 1247 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1251 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 1253 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 1256 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1261 (MIType, Line, File, Elements)); in getImpl() 1263 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
/external/python/pybind11/tests/ |
D | test_multiple_inheritance.cpp | 73 struct MIType : Base12 { in TEST_SUBMODULE() struct 74 MIType(int i, int j) : Base12(i, j) { } in TEST_SUBMODULE() function 77 py::class_<MIType, Base12>(m, "MIType") in TEST_SUBMODULE()
|
D | test_multiple_inheritance.py | 11 mt = m.MIType(3, 4)
|
/external/llvm-project/llvm/lib/IR/ |
D | LLVMContextImpl.h | 1176 unsigned MIType; 1181 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value) 1182 : MIType(MIType), Line(Line), Name(Name), Value(Value) {} 1184 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()), 1188 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() && 1193 return hash_combine(MIType, Line, Name, Value); 1198 unsigned MIType; 1203 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File, 1205 : MIType(MIType), Line(Line), File(File), Elements(Elements) {} 1207 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()), [all …]
|
D | DebugInfoMetadata.cpp | 1473 DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1477 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value)); in getImpl() 1479 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops); in getImpl() 1482 DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType, in getImpl() argument 1487 (MIType, Line, File, Elements)); in getImpl() 1489 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops); in getImpl()
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 2308 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 2311 assert(MIType < 1u << 16); 2312 SubclassData16 = MIType; 2352 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 2354 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 2357 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 2360 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 2363 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 2373 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name, 2375 (MIType, Line, Name, Value)) [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 3113 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 3116 assert(MIType < 1u << 16); 3117 SubclassData16 = MIType; 3157 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 3159 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 3162 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3165 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 3168 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3178 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name, 3180 (MIType, Line, Name, Value)) [all …]
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 3359 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType, 3362 assert(MIType < 1u << 16); 3363 SubclassData16 = MIType; 3403 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, 3405 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {} 3408 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3411 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name), 3414 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, 3424 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name, 3426 (MIType, Line, Name, Value)) [all …]
|