HomeSort by relevance Sort by last modified time
    Searched defs:KeywordLoc (Results 1 - 7 of 7) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 235 SourceLocation KeywordLoc;
245 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists,
250 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists),
256 SourceLocation getKeywordLoc() const { return KeywordLoc; }
278 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
Stmt.h 627 SourceLocation KeywordLoc;
631 : Stmt(SC), NextSwitchCase(0), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {}
643 SourceLocation getKeywordLoc() const { return KeywordLoc; }
644 void setKeywordLoc(SourceLocation L) { KeywordLoc = L; }
653 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
680 SourceLocation getCaseLoc() const { return KeywordLoc; }
681 void setCaseLoc(SourceLocation L) { KeywordLoc = L; }
703 SourceLocation getLocStart() const LLVM_READONLY { return KeywordLoc; }
737 SourceLocation getDefaultLoc() const { return KeywordLoc; }
738 void setDefaultLoc(SourceLocation L) { KeywordLoc = L;
    [all...]
  /external/clang/include/clang/Sema/
AttributeList.h 35 SourceLocation KeywordLoc;
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseDecl.cpp 860 SourceLocation KeywordLoc = ConsumeToken();
864 Diag(KeywordLoc, diag::err_availability_redundant)
867 UnavailableLoc = KeywordLoc;
913 if (!Changes[Index].KeywordLoc.isInvalid()) {
914 Diag(KeywordLoc, diag::err_availability_redundant)
916 << SourceRange(Changes[Index].KeywordLoc,
920 Changes[Index].KeywordLoc = KeywordLoc;
924 Diag(KeywordLoc, diag::err_availability_unknown_change)
946 if (Changes[Index].KeywordLoc.isValid())
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 820 milliseconds