HomeSort by: relevance | last modified time | path
    Searched defs:getLValueBase (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
APValue.cpp 346 setLValue(RHS.getLValueBase(), RHS.getLValueOffset(), RHS.getLValuePath(),
349 setLValue(RHS.getLValueBase(), RHS.getLValueOffset(), NoLValuePath(),
594 getLValueBase().Profile(ID);
686 LValueBase Base = getLValueBase();
885 if (isLValue() && !getLValueBase()) {
893 const APValue::LValueBase APValue::getLValueBase() const {
1088 if (!V.getLValueBase()) {
1091 V.getLValueBase().dyn_cast<const ValueDecl *>()) {
1094 } else if (const auto TI = V.getLValueBase().dyn_cast<TypeInfoLValue>()) {
1097 } else if (const Expr *E = V.getLValueBase().dyn_cast<const Expr *>())
    [all...]
ExprConstant.cpp 289 if (V.getLValueBase()) {
293 Ctx, V.getLValueBase(), V.getLValuePath(), MostDerivedArraySize,
1556 const APValue::LValueBase getLValueBase() const { return Base; }
1577 Base = V.getLValueBase();
2056 if (!A.getLValueBase())
2057 return !B.getLValueBase();
2058 if (!B.getLValueBase())
2061 if (A.getLValueBase().getOpaqueValue() !=
2062 B.getLValueBase().getOpaqueValue())
2127 APValue::LValueBase Base = LVal.getLValueBase();
    [all...]

Completed in 25 milliseconds