HomeSort by relevance Sort by last modified time
    Searched refs:isLValue (Results 1 - 23 of 23) sorted by null

  /external/clang/lib/AST/
APValue.cpp 513 assert(isLValue() && "Invalid accessor");
518 assert(isLValue() && "Invalid accessor");
523 assert(isLValue() && "Invalid accessor");
528 assert(isLValue() && "Invalid accessor");
533 assert(isLValue() && hasLValuePath() && "Invalid accessor");
539 assert(isLValue() && "Invalid accessor");
545 assert(isLValue() && "Invalid accessor");
557 assert(isLValue() && "Invalid accessor");
ExprConstant.cpp 164 : Invalid(!V.isLValue() || !V.hasLValuePath()), IsOnePastTheEnd(false),
715 assert(V.isLValue());
    [all...]
ExprClassification.cpp 392 bool islvalue;
395 islvalue = NTTParm->getType()->isReferenceType();
397 islvalue = isa<VarDecl>(D) || isa<FieldDecl>(D) ||
402 return islvalue ? Cl::CL_LValue : Cl::CL_PRValue;
547 if (CE->getSubExpr()->IgnoreParenImpCasts()->isLValue()) {
  /external/clang/lib/StaticAnalyzer/Core/
ObjCMessage.cpp 33 isLVal = FunctionCall->isLValue();
ExprEngineC.cpp 53 SVal ExprVal = B->isLValue() ? LeftV : RightV;
148 if (B->isLValue())
294 if (CastE->isLValue())
343 if (CastE->isLValue())
370 if (CL->isLValue())
421 if (InitEx->isLValue()) {
651 assert(!U->isLValue());
674 assert (!U->isLValue());
799 if (U->isLValue())
ExprEngineCallAndReturn.cpp 438 if (CE->isLValue())
ExprEngine.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 56 if (castE->getCastKind() == CK_NoOp && castE->isLValue() &&
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 132 if (!Expr->isLValue() || Expr->getObjectKind() != OK_Ordinary)
SemaCast.cpp 588 if (!SrcExpr.get()->isLValue()) {
    [all...]
SemaStmt.cpp 109 CanAssign = Op->getLHS()->IgnoreParenImpCasts()->isLValue();
117 CanAssign = Op->getArg(0)->IgnoreParenImpCasts()->isLValue();
    [all...]
SemaInit.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp 335 if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue())
    [all...]
SemaChecking.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/include/clang/AST/
APValue.h 180 bool isLValue() const { return Kind == LValue; }
Expr.h 82 // type. Additionally, inspect Expr::isLvalue to determine whether
188 /// isLValue - True if this expression is an "l-value" according to
201 bool isLValue() const { return getValueKind() == VK_LValue; }
298 bool isLValue() const { return Kind == CL_LValue; }
    [all...]
  /external/clang/lib/Analysis/
LiveVariables.cpp 414 assert(subEx->isLValue());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 675 if (Ex->isLValue() || Loc::isLocType(T) || T->isIntegerType())

Completed in 266 milliseconds