HomeSort by relevance Sort by last modified time
    Searched refs:IdentLoc (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 790 SourceLocation IdentLoc;
796 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
805 SourceLocation getIdentLoc() const { return IdentLoc; }
811 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
814 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclCXX.h     [all...]
Stmt.h 814 SourceLocation IdentLoc;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
829 SourceLocation getIdentLoc() const { return IdentLoc; }
835 void setIdentLoc(SourceLocation L) { IdentLoc = L; }
838 SourceLocation getLocStart() const LLVM_READONLY { return IdentLoc; }
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 71 SourceLocation IdentLoc;
89 IdentLoc = ConsumeToken(); // eat the identifier.
119 Decl *NSAlias = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
187 IdentLoc, Ident, T.getOpenLocation(),
209 void Parser::ParseInnerNamespace(std::vector<SourceLocation> &IdentLoc,
238 NamespaceLoc[index], IdentLoc[index],
244 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
281 SourceLocation IdentLoc = ConsumeToken();
289 Alias, SS, IdentLoc, Ident);
448 SourceLocation IdentLoc = SourceLocation()
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
SemaStmt.cpp 461 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
465 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
471 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
474 TheDecl->setLocStart(IdentLoc);
478 TheDecl->setLocation(IdentLoc);
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]

Completed in 805 milliseconds

1 2 3