Home
last modified time | relevance | path

Searched refs:fromTy (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/flang/lib/Lower/
DFIRBuilder.cpp141 auto fromTy = val.getType(); in convertWithSemantics() local
142 if (fromTy == toTy) in convertWithSemantics()
146 if ((fir::isa_real(fromTy) || fromTy.isSignlessInteger()) && in convertWithSemantics()
157 if (fir::isa_complex(fromTy) && in convertWithSemantics()
/external/clang/lib/StaticAnalyzer/Core/
DSValBuilder.cpp70 QualType fromTy, QualType toTy) { in makeNonLoc() argument
73 return nonloc::SymbolVal(SymMgr.getCastSymbol(operand, fromTy, toTy)); in makeNonLoc()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DSValBuilder.cpp93 QualType fromTy, QualType toTy) { in makeNonLoc() argument
96 return nonloc::SymbolVal(SymMgr.getCastSymbol(operand, fromTy, toTy)); in makeNonLoc()
/external/llvm-project/flang/lib/Optimizer/Dialect/
DFIROps.cpp324 if (auto fromTy = inner.value().getType().dyn_cast<fir::LogicalType>()) in fold() local
325 if (inner.getType().isa<mlir::IntegerType>() && (toTy == fromTy)) in fold()
329 if (auto fromTy = inner.value().getType().dyn_cast<mlir::IntegerType>()) in fold() local
330 if (inner.getType().isa<fir::LogicalType>() && (toTy == fromTy) && in fold()
331 (fromTy.getWidth() == 1)) in fold()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSValBuilder.h291 NonLoc makeNonLoc(const SymExpr *operand, QualType fromTy, QualType toTy);
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSValBuilder.h332 NonLoc makeNonLoc(const SymExpr *operand, QualType fromTy, QualType toTy);
/external/clang/lib/AST/
DASTImporter.cpp6052 const Type *fromTy = FromT.getTypePtr(); in Import() local
6056 = ImportedTypes.find(fromTy); in Import()
6062 QualType ToT = Importer.Visit(fromTy); in Import()
6067 ImportedTypes[fromTy] = ToT.getTypePtr(); in Import()