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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Availability.h 53 SourceLocation getBeginLoc() const { return BeginLoc; }
NestedNameSpecifier.h 299 SourceLocation getBeginLoc() const {
DeclarationName.h 859 /// getBeginLoc - Retrieve the location of the first token.
860 SourceLocation getBeginLoc() const { return NameLoc; }
864 return SourceRange(getBeginLoc(), getEndLoc());
869 return EndLoc.isValid() ? EndLoc : getBeginLoc();
ExprObjC.h 72 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
104 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
159 SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); }
216 SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); }
380 SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); }
436 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
476 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
530 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
592 SourceLocation getBeginLoc() const LLVM_READONLY {
593 return isFreeIvar() ? Loc : getBase()->getBeginLoc();
    [all...]
StmtOpenMP.h 184 SourceLocation getBeginLoc() const { return getLoopStmt()->getBeginLoc(); }
483 SourceLocation getBeginLoc() const { return StartLoc; }
ExprCXX.h 156 ? getBeginLoc()
160 SourceLocation getBeginLoc() const { return Range.getBegin(); }
223 return getBeginLoc();
345 SourceLocation getBeginLoc() const LLVM_READONLY {
346 return getDecomposedForm().LHS->getBeginLoc();
353 return SourceRange(DF.LHS->getBeginLoc(), DF.RHS->getEndLoc());
409 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
698 SourceLocation getBeginLoc() const {
701 return getArg(0)->getBeginLoc();
736 SourceLocation getBeginLoc() const { return getLocation();
    [all...]
OpenMPClause.h 70 SourceLocation getBeginLoc() const { return StartLoc; }
Expr.h 1078 SourceLocation getBeginLoc() const LLVM_READONLY {
1079 return SubExpr->getBeginLoc();
1149 SourceLocation getBeginLoc() const LLVM_READONLY {
1150 return SourceExpr ? SourceExpr->getBeginLoc() : getLocation();
1295 SourceLocation getBeginLoc() const LLVM_READONLY;
1506 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
1548 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
1605 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
1687 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
1724 SourceLocation getBeginLoc() const LLVM_READONLY
    [all...]
Stmt.h 1172 SourceLocation getBeginLoc() const LLVM_READONLY;
1317 SourceLocation getBeginLoc() const LLVM_READONLY { return StartLoc; }
1381 SourceLocation getBeginLoc() const { return getSemiLoc(); }
1502 SourceLocation getBeginLoc() const { return CompoundStmtBits.LBraceLoc; }
1555 SourceLocation getBeginLoc() const { return getKeywordLoc(); }
1694 SourceLocation getBeginLoc() const { return getKeywordLoc(); }
1740 SourceLocation getBeginLoc() const { return getKeywordLoc(); }
1825 SourceLocation getBeginLoc() const { return getIdentLoc(); }
1888 SourceLocation getBeginLoc() const { return getAttrLoc(); }
2090 SourceLocation getBeginLoc() const { return getIfLoc();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypeLoc.cpp 191 SourceLocation TypeLoc::getBeginLoc() const {
ExprCXX.cpp 176 SourceLocation CXXScalarValueInitExpr::getBeginLoc() const {
177 return TypeInfo ? TypeInfo->getTypeLoc().getBeginLoc() : getRParenLoc();
508 SourceLocation CXXConstructExpr::getBeginLoc() const {
510 return cast<CXXTemporaryObjectExpr>(this)->getBeginLoc();
592 return SourceRange(getArg(0)->getBeginLoc(), getOperatorLoc());
594 return SourceRange(getArg(0)->getBeginLoc(), getOperatorLoc());
596 return SourceRange(getArg(0)->getBeginLoc(), getRParenLoc());
598 return SourceRange(getArg(0)->getBeginLoc(), getRParenLoc());
602 return SourceRange(getArg(0)->getBeginLoc(), getArg(1)->getEndLoc());
866 SourceLocation CXXFunctionalCastExpr::getBeginLoc() const
    [all...]
Stmt.cpp 267 (void)is_good(implements_getBeginLoc(&type::getBeginLoc))
318 return SourceRange(static_cast<const S *>(stmt)->getBeginLoc(),
336 SourceLocation Stmt::getBeginLoc() const {
342 return static_cast<const type *>(this)->getBeginLoc();
Expr.cpp 208 // See also Stmt.cpp:{getBeginLoc(),getEndLoc()}.
225 return static_cast<const E *>(expr)->getBeginLoc();
496 SourceLocation DeclRefExpr::getBeginLoc() const {
498 return getQualifierLoc().getBeginLoc();
499 return getNameInfo().getBeginLoc();
1495 SourceLocation CallExpr::getBeginLoc() const {
1497 return cast<CXXOperatorCallExpr>(this)->getBeginLoc();
1499 SourceLocation begin = getCallee()->getBeginLoc();
1501 begin = getArg(0)->getBeginLoc();
1666 SourceLocation MemberExpr::getBeginLoc() const
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CloneDetection.cpp 48 SM.isBeforeInTranslationUnit(getBeginLoc(), Other.getBeginLoc()) ||
49 getBeginLoc() == Other.getBeginLoc();
80 SourceLocation StmtSequence::getBeginLoc() const {
81 return front()->getBeginLoc();
87 return SourceRange(getBeginLoc(), getEndLoc());
431 data_collection::getMacroStack(Seq.getBeginLoc(), Context);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.cpp 136 SourceLocation getBeginLoc() const {
183 : SpellingRegion(SM, R.getBeginLoc(), R.getEndLoc()) {}
271 SourceLocation Loc = S->getBeginLoc();
296 SourceLocation Loc = Region.getBeginLoc();
406 SourceLocation LocStart = Region.getBeginLoc();
608 SourceLocation StartLoc = Region.getBeginLoc();
671 assert(SM.isWrittenInSameFile(Region.getBeginLoc(), EndLoc));
699 if (SM.isBeforeInTranslationUnit(StartLoc, S->getBeginLoc()))
757 return Region.getBeginLoc() == StartLoc &&
810 SourceLocation Loc = I.getBeginLoc();
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 73 SourceLocation getBeginLoc() const { return Range.getBegin(); }
507 SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); }
1162 SourceLocation getBeginLoc() const LLVM_READONLY { return StartLocation; }
1676 I.Loc = SS.getBeginLoc();
1946 SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); }

Completed in 35 milliseconds