Searched defs:ValueDependent (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/AST/
H A DExpr.cpp215 bool &ValueDependent,
218 ValueDependent = false;
233 ValueDependent = true;
246 ValueDependent = true;
257 ValueDependent = true;
277 ValueDependent = true;
287 ValueDependent = true;
301 ValueDependent = true;
308 bool ValueDependent = false; local
311 ValueDependent, InstantiationDependen
213 computeDeclRefDependence(const ASTContext &Ctx, NamedDecl *D, QualType T, bool &TypeDependent, bool &ValueDependent, bool &InstantiationDependent) argument
[all...]
/external/clang/include/clang/AST/
H A DExpr.h113 ExprBits.ValueDependent = VD;
146 bool isValueDependent() const { return ExprBits.ValueDependent; }
150 ExprBits.ValueDependent = VD;
3622 bool TypeDependent, bool ValueDependent)
3623 : Expr(ChooseExprClass, t, VK, OK, TypeDependent, ValueDependent,
3867 ExprBits.ValueDependent |= expr->isValueDependent();
3619 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, QualType t, ExprValueKind VK, ExprObjectKind OK, SourceLocation RP, bool condIsTrue, bool TypeDependent, bool ValueDependent) argument
/external/clang/lib/Sema/
H A DSemaExpr.cpp11365 bool ValueDependent = false; local
11369 ValueDependent = true;
11385 ValueDependent = ActiveExpr->isValueDependent();
11392 CondIsTrue, resType->isDependentType(), ValueDependent);

Completed in 64 milliseconds