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

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprMember.cpp 478 bool IsArrow, SourceLocation OpLoc,
493 if (!IsArrow) {
511 Context, BaseExpr, BaseType, IsArrow, OpLoc,
641 SourceLocation OpLoc, bool IsArrow,
726 BaseExpr, BaseExpr->getType(), OpLoc, IsArrow, SS, SourceLocation(),
735 ExprResult &BaseExpr, bool &IsArrow,
742 SourceLocation OpLoc, bool IsArrow,
753 IsArrow, OpLoc,
763 if (IsArrow) RecordTy = RecordTy->castAs<PointerType>()->getPointeeType();
765 *this, R, nullptr, RecordTy->getAs<RecordType>(), OpLoc, IsArrow,
    [all...]
SemaCodeComplete.cpp 5038 bool IsArrow = E->isArrow();
5039 if (Base->isPointerType() && IsArrow) {
5040 IsArrow = false;
5044 addValue(E, E->getMember(), IsArrow ? Member::Arrow : Member::Dot);
5255 if (CDSME->isArrow() && !Base.isNull())
5284 SourceLocation OpLoc, bool IsArrow,
5292 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
5299 if (IsArrow) {
5304 if (IsArrow) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 132 if (E->isArrow()) {
201 bool IsArrow = ME->isArrow();
205 CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base);
210 bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow,
272 if (IsArrow) {
382 IsArrow ? Base->getType()->getPointeeType() : Base->getType();
488 /*IsArrow=*/false, E->getArg(0));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 927 bool IsArrow;
933 MSPropertyRefExpr(Expr *baseExpr, MSPropertyDecl *decl, bool isArrow,
937 TheDecl(decl), MemberLoc(nameLoc), IsArrow(isArrow),
978 bool isArrow() const { return IsArrow; }
2525 bool IsArrow : 1;
2550 Expr *Base, bool isArrow, SourceLocation OperatorLoc,
2558 : Expr(CXXPseudoDestructorExprClass, Shell), IsArrow(false) {}
2580 bool isArrow() const { return IsArrow;
    [all...]

Completed in 48 milliseconds