/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ProgramState.h | 280 Loc getLValue(const VarDecl *D, const LocationContext *LC) const; 282 Loc getLValue(const CompoundLiteralExpr *literal, 286 SVal getLValue(const ObjCIvarDecl *decl, SVal base) const; 289 SVal getLValue(const FieldDecl *decl, SVal Base) const; 292 SVal getLValue(const IndirectFieldDecl *decl, SVal Base) const; 295 SVal getLValue(QualType ElementType, SVal Idx, SVal Base) const; 694 inline Loc ProgramState::getLValue(const VarDecl *VD, in getLValue() function 699 inline Loc ProgramState::getLValue(const CompoundLiteralExpr *literal, in getLValue() function 704 inline SVal ProgramState::getLValue(const ObjCIvarDecl *D, SVal Base) const { in getLValue() function 708 inline SVal ProgramState::getLValue(const FieldDecl *D, SVal Base) const { in getLValue() function [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngineCXX.cpp | 99 LValue = State->getLValue(Ty, SVB.makeZeroArrayIndex(), LValue); in makeZeroElementRegion() 120 SVal LValue = State->getLValue(Var, LCtx); in getRegionForConstructedObject() 138 FieldVal = State->getLValue(Init->getIndirectMember(), ThisVal); in getRegionForConstructedObject() 141 FieldVal = State->getLValue(Init->getMember(), ThisVal); in getRegionForConstructedObject() 551 state = state->bindLoc(state->getLValue(VD, LCtx), V); in VisitCXXCatchStmt() 591 SVal FieldLoc = State->getLValue(FieldForCapture, V); in VisitLambdaExpr()
|
D | ExprEngineObjC.cpp | 28 SVal location = state->getLValue(Ex->getDecl(), baseVal); in VisitLvalObjCIvarRefExpr() 81 elementV = state->getLValue(elemD, Pred->getLocationContext()); in VisitObjCForCollectionStmt()
|
D | ExprEngine.cpp | 489 FieldLoc = State->getLValue(BMI->getIndirectMember(), thisVal); in ProcessInitializer() 492 FieldLoc = State->getLValue(BMI->getMember(), thisVal); in ProcessInitializer() 597 SVal dest = state->getLValue(varDecl, Pred->getLocationContext()); in ProcessAutomaticObjDtor() 667 State->getLValue(Member, State->getSVal(ThisVal).castAs<Loc>()); in ProcessMemberDtor() 1915 V = state->getLValue(VD, LocCtxt); in VisitCommonDeclRefExpr() 1921 V = state->getLValue(FD, CXXThisVal); in VisitCommonDeclRefExpr() 1925 V = state->getLValue(VD, LocCtxt); in VisitCommonDeclRefExpr() 1989 SVal V = state->getLValue(A->getType(), in VisitLvalArraySubscriptExpr() 2043 SVal L = state->getLValue(field, baseExprVal); in VisitMemberExpr()
|
D | BugReporterVisitors.cpp | 1338 if (const MemRegion *R = state->getLValue(cast<VarDecl>(DR->getDecl()), in patternMatch() 1499 if (const MemRegion *R = state->getLValue(VD, LCtx).getAsRegion()) { in VisitConditionVariable() 1543 if (const MemRegion *R = state->getLValue(VD, LCtx).getAsRegion()) { in VisitTrueTest()
|
D | ExprEngineC.cpp | 458 Loc CLLoc = State->getLValue(CL, LCtx); in VisitCompoundLiteralExpr() 540 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true); in VisitDeclStmt()
|
D | CallEvent.cpp | 689 SVal IvarLVal = getState()->getLValue(PropIvar, getReceiverSVal()); in getExtraInvalidatedValues()
|
D | BugReporter.cpp | 1284 Loc LV = State->getLValue(PD, CalleeCtx); in reversePropagateInterestingSymbols()
|
/external/deqp/framework/randomshaders/ |
D | rsgExpression.hpp | 62 …virtual ExecValueAccess getLValue (void) const { DE_ASSERT(DE_FALSE); throw Exception("Express… in getLValue() function in rsg::Expression 78 ExecValueAccess getLValue (void) const { return m_valueAccess; } in getLValue() function in rsg::VariableAccess
|
D | rsgExpression.cpp | 947 …assignMasked(m_lvalueExpr->getLValue(), m_value.getValue(m_valueRange.getType()), evalCtx.getExecu… in evaluate()
|
/external/skia/src/sksl/ |
D | SkSLSPIRVCodeGenerator.cpp | 1420 std::unique_ptr<LValue> lv = this->getLValue(*c.fArguments[i], out); in writeFunctionCall() 1728 chain.push_back(this->getLValue(expr, out)->getPointer()); in getAccessChain() 1835 std::unique_ptr<SPIRVCodeGenerator::LValue> SPIRVCodeGenerator::getLValue(const Expression& expr, in getLValue() function in SkSL::SPIRVCodeGenerator 1866 SpvId base = this->getLValue(*swizzle.fBase, out)->getPointer(); in getLValue() 1981 return getLValue(expr, out)->load(out); in writeIndexExpression() 1985 return getLValue(f, out)->load(out); in writeFieldAccess() 2097 this->getLValue(*b.fLeft, out)->store(rhs, out); in writeBinaryExpression() 2113 lvalue = this->getLValue(*b.fLeft, out); in writeBinaryExpression() 2470 std::unique_ptr<LValue> lv = this->getLValue(*p.fOperand, out); in writePrefixExpression() 2479 std::unique_ptr<LValue> lv = this->getLValue(*p.fOperand, out); in writePrefixExpression() [all …]
|
D | SkSLSPIRVCodeGenerator.h | 140 std::unique_ptr<LValue> getLValue(const Expression& value, OutputStream& out);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckObjCDealloc.cpp | 291 SVal LVal = State->getLValue(PropImpl->getPropertyIvarDecl(), SelfVal); in checkBeginFunction() 956 SVal LVal = State->getLValue(PropIvarDecl, ReceiverVal); in getValueReleasedByNillingOut()
|
D | NullabilityChecker.cpp | 389 SVal LV = State->getLValue(ParamDecl, LocCtxt); in checkParamsForPreconditionViolation() 421 SVal LV = State->getLValue(IvarDecl, SelfVal); in checkSelfIvarsForInvariantViolation()
|
D | BasicObjCFoundationChecks.cpp | 926 ElementLoc = State->getLValue(ElemDecl, LCtx); in checkElementNonNil()
|
D | CStringChecker.cpp | 2099 Loc VarLoc = state->getLValue(D, C.getLocationContext()); in checkPreStmt()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_inlines.h | 416 LValue *Function::getLValue(int id) in getLValue() function
|
D | nv50_ir.h | 1170 inline LValue *getLValue(int id);
|
D | nv50_ir_ra.cpp | 547 func->clobbers.push_back(func->getLValue(i)); in visit() 672 addLiveRange(func->getLValue(j), bb, bb->getExit()->serial + 1); in visit()
|
D | nv50_ir_from_tgsi.cpp | 4014 Value *v = func->getLValue(i); in updatePrototype()
|