/external/llvm/lib/AsmParser/ |
D | LLParser.h | 429 template <class FieldTy> 430 bool ParseMDField(LocTy Loc, StringRef Name, FieldTy &Result); 431 template <class FieldTy> bool ParseMDField(StringRef Name, FieldTy &Result);
|
D | LLParser.cpp | 3337 template <class FieldTy> struct MDFieldImpl { 3339 FieldTy Val; 3342 void assign(FieldTy Val) { in assign() 3347 explicit MDFieldImpl(FieldTy Default) in MDFieldImpl() 3737 template <class FieldTy> 3738 bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) { in ParseMDField()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | LLParser.h | 518 template <class FieldTy> 519 bool ParseMDField(LocTy Loc, StringRef Name, FieldTy &Result); 520 template <class FieldTy> bool ParseMDField(StringRef Name, FieldTy &Result);
|
D | LLParser.cpp | 3627 template <class FieldTy> struct MDFieldImpl { 3629 FieldTy Val; 3632 void assign(FieldTy Val) { in assign() 3637 explicit MDFieldImpl(FieldTy Default) in MDFieldImpl() 4165 template <class FieldTy> 4166 bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) { in ParseMDField()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 1964 llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit); in CreateTypeDefinition() local 1965 if (!FieldTy) in CreateTypeDefinition() 2035 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine, in CreateTypeDefinition() 2037 FieldTy, PropertyNode); in CreateTypeDefinition() 2038 EltTys.push_back(FieldTy); in CreateTypeDefinition() 2595 llvm::DIType *FieldTy = CGDebugInfo::getOrCreateType(FType, Unit); in CreateMemberType() local 2599 FieldAlign, *Offset, 0, FieldTy); in CreateMemberType() 3101 llvm::DIType *FieldTy = getOrCreateType(FType, Unit); in EmitTypeForVarWithBlocksAttr() local 3106 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit, 0, FieldSize, in EmitTypeForVarWithBlocksAttr() 3107 FieldAlign, FieldOffset, 0, FieldTy); in EmitTypeForVarWithBlocksAttr() [all …]
|
D | CGOpenMPRuntime.cpp | 3066 QualType FieldTy) { in addFieldToRecordDecl() argument 3068 C, DC, SourceLocation(), SourceLocation(), /*Id=*/nullptr, FieldTy, in addFieldToRecordDecl() 3069 C.getTrivialTypeSourceInfo(FieldTy, SourceLocation()), in addFieldToRecordDecl()
|
D | CGObjCMac.cpp | 6394 llvm::Type *FieldTy = in EmitIvarList() local 6396 unsigned Size = CGM.getDataLayout().getTypeAllocSize(FieldTy); in EmitIvarList()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1252 Type *FieldTy = STy->getElementType(FieldNo); in PerformHeapAllocSRoA() local 1253 PointerType *PFieldTy = PointerType::get(FieldTy, AS); in PerformHeapAllocSRoA() 1262 unsigned TypeSize = DL.getTypeAllocSize(FieldTy); in PerformHeapAllocSRoA() 1263 if (StructType *ST = dyn_cast<StructType>(FieldTy)) in PerformHeapAllocSRoA() 1266 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy, in PerformHeapAllocSRoA()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1296 Type *FieldTy = STy->getElementType(FieldNo); in PerformHeapAllocSRoA() local 1297 PointerType *PFieldTy = PointerType::get(FieldTy, AS); in PerformHeapAllocSRoA() 1306 unsigned TypeSize = DL.getTypeAllocSize(FieldTy); in PerformHeapAllocSRoA() 1307 if (StructType *ST = dyn_cast<StructType>(FieldTy)) in PerformHeapAllocSRoA() 1310 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy, in PerformHeapAllocSRoA()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/ |
D | import_model.cc | 2453 using FieldTy = protobuf::MapPair<std::string, StructuredValue>; in RecursivelyFindLeaves() typedef 2454 llvm::SmallVector<const FieldTy*, 4> fields; in RecursivelyFindLeaves() 2458 llvm::sort(fields, [](const FieldTy* a, const FieldTy* b) { in RecursivelyFindLeaves()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 13240 QualType FieldTy, bool IsMsStruct, in VerifyBitField() argument 13248 if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) { in VerifyBitField() 13250 if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete)) in VerifyBitField() 13254 << FieldName << FieldTy << BitWidth->getSourceRange(); in VerifyBitField() 13256 << FieldTy << BitWidth->getSourceRange(); in VerifyBitField() 13287 if (!FieldTy->isDependentType()) { in VerifyBitField() 13288 uint64_t TypeStorageSize = Context.getTypeSize(FieldTy); in VerifyBitField() 13289 uint64_t TypeWidth = Context.getIntWidth(FieldTy); in VerifyBitField() 13315 if (BitfieldIsOverwide && !FieldTy->isBooleanType()) { in VerifyBitField()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Verifier.cpp | 4836 const MDOperand &FieldTy = BaseNode->getOperand(Idx); in verifyTBAABaseNodeImpl() local 4838 if (!isa<MDNode>(FieldTy)) { in verifyTBAABaseNodeImpl()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9089 QualType FieldTy, bool IsMsStruct,
|