HomeSort by: relevance | last modified time | path
    Searched refs:PExp (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 2076 Expr *PExp;
2080 PExp = LHS;
2084 PExp = RHS;
2090 if (!PExp->IgnoreParenCasts()
2095 const PointerType *PTy = PExp->getType()->getAs<PointerType>();
ExprConstant.cpp 8688 const Expr *PExp = E->getLHS();
8691 std::swap(PExp, IExp);
8693 bool EvalPtrOK = evaluatePointer(PExp, Result);
8704 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 10640 // Type-checking. Ultimately the pointer's going to be in PExp;
10642 Expr *PExp = LHS.get(), *IExp = RHS.get();
10645 if (PExp->getType()->isPointerType()) {
10647 } else if (PExp->getType()->isObjCObjectPointerType()) {
10650 std::swap(PExp, IExp);
10651 if (PExp->getType()->isPointerType()) {
10653 } else if (PExp->getType()->isObjCObjectPointerType()) {
10659 assert(PExp->getType()->isAnyPointerType());
10665 if (PExp->IgnoreParenCasts()->isNullPointerConstant(
10675 Context, BO_Add, PExp, IExp)
    [all...]

Completed in 48 milliseconds