Home
last modified time | relevance | path

Searched refs:resultTy (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DSimpleSValBuilder.cpp37 NonLoc lhs, NonLoc rhs, QualType resultTy) override;
39 Loc lhs, Loc rhs, QualType resultTy) override;
41 Loc lhs, NonLoc rhs, QualType resultTy) override;
48 const llvm::APSInt &RHS, QualType resultTy);
212 QualType resultTy) { in MakeSymIntVal() argument
223 return makeIntVal(0, resultTy); in MakeSymIntVal()
241 return makeIntVal(0, resultTy); in MakeSymIntVal()
255 return makeIntVal(0, resultTy); in MakeSymIntVal()
264 const llvm::APSInt &Result = BasicVals.Convert(resultTy, RHS); in MakeSymIntVal()
274 return evalCastFromNonLoc(nonloc::SymbolVal(LHS), resultTy); in MakeSymIntVal()
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSValBuilder.h99 NonLoc lhs, NonLoc rhs, QualType resultTy) = 0;
104 Loc lhs, Loc rhs, QualType resultTy) = 0;
110 Loc lhs, NonLoc rhs, QualType resultTy) = 0;
118 NonLoc lhs, NonLoc rhs, QualType resultTy);
/external/swiftshader/src/Pipeline/
DSpirvShaderImage.cpp316 auto &resultTy = getType(Type::ID(insn.word(1))); in EmitImageQuerySizeLod() local
321 auto &dst = state->createIntermediate(resultId, resultTy.sizeInComponents); in EmitImageQuerySizeLod()
322 GetImageDimensions(state, resultTy, imageId, lodId, dst); in EmitImageQuerySizeLod()
329 auto &resultTy = getType(Type::ID(insn.word(1))); in EmitImageQuerySize() local
334 auto &dst = state->createIntermediate(resultId, resultTy.sizeInComponents); in EmitImageQuerySize()
335 GetImageDimensions(state, resultTy, imageId, lodId, dst); in EmitImageQuerySize()
345 void SpirvShader::GetImageDimensions(EmitState const *state, Type const &resultTy, Object::ID image… in GetImageDimensions() argument
385 auto dimensions = resultTy.sizeInComponents - (isArrayed ? 1 : 0); in GetImageDimensions()
415 auto &resultTy = getType(Type::ID(insn.word(1))); in EmitImageQueryLevels() local
416 ASSERT(resultTy.sizeInComponents == 1); in EmitImageQueryLevels()
[all …]
DSpirvShaderMemory.cpp31 auto &resultTy = getType(result.type); in EmitLoad() local
57 auto &dst = state->createIntermediate(resultId, resultTy.sizeInComponents); in EmitLoad()
DSpirvShader.hpp1137 …void GetImageDimensions(EmitState const *state, Type const &resultTy, Object::ID imageId, Object::…
/external/clang/lib/Sema/
DSemaObjCProperty.cpp2211 QualType resultTy = property->getType().getAtomicUnqualifiedType(); in ProcessPropertyDecl() local
2216 QualType modifiedTy = resultTy; in ProcessPropertyDecl()
2219 resultTy = Context.getAttributedType(AttributedType::attr_nonnull, in ProcessPropertyDecl()
2226 resultTy, nullptr, CD, in ProcessPropertyDecl()
DSemaOverload.cpp1528 QualType resultTy; in IsStandardConversion() local
1531 S.ExtractUnqualifiedFunctionType(ToType), resultTy)) in IsStandardConversion()
/external/clang/lib/AST/
DType.cpp1106 QualType resultTy = ctx.getObjCObjectType(obj->getBaseType(), in substObjCTypeArgs() local
1112 resultTy = ctx.getObjCObjectPointerType(resultTy); in substObjCTypeArgs()
1113 return ctx.getQualifiedType(resultTy, splitType.Quals); in substObjCTypeArgs()