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

  /external/clang/include/clang/AST/
StmtObjC.h 349 SourceLocation AtLoc;
351 ObjCAutoreleasePoolStmt(SourceLocation atLoc,
354 SubStmt(subStmt), AtLoc(atLoc) {}
364 return SourceRange(AtLoc, SubStmt->getLocEnd());
367 SourceLocation getAtLoc() const { return AtLoc; }
368 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; }
ExprObjC.h 30 SourceLocation AtLoc;
35 String(SL), AtLoc(L) {}
43 SourceLocation getAtLoc() const { return AtLoc; }
44 void setAtLoc(SourceLocation L) { AtLoc = L; }
47 return SourceRange(AtLoc, String->getLocEnd());
64 SourceLocation AtLoc, RParenLoc;
73 EncodedType(EncodedType), AtLoc(at), RParenLoc(rp) {}
78 SourceLocation getAtLoc() const { return AtLoc; }
79 void setAtLoc(SourceLocation L) { AtLoc = L; }
91 return SourceRange(AtLoc, RParenLoc)
    [all...]
DeclObjC.h 584 ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id,
590 SourceLocation atLoc,
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 188 Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
189 ExprResult LHS(ParseObjCAtExpression(AtLoc));
    [all...]
Parser.cpp 751 SourceLocation AtLoc = ConsumeToken(); // the "@"
763 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
764 Diag(AtLoc, DiagID) << PrevSpec;
768 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
770 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
    [all...]
ParseObjc.cpp 33 SourceLocation AtLoc = ConsumeToken(); // the "@"
44 return ParseObjCAtClassDeclaration(AtLoc);
48 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
53 SingleDecl = ParseObjCAtProtocolDeclaration(AtLoc, attrs);
57 SingleDecl = ParseObjCAtImplementationDeclaration(AtLoc);
60 return ParseObjCAtEndDeclaration(AtLoc);
63 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
66 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
69 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
72 Diag(AtLoc, diag::err_unexpected_at)
    [all...]
ParseStmt.cpp 93 SourceLocation AtLoc;
97 AtLoc = ConsumeToken(); // consume @
98 return ParseObjCAtStatement(AtLoc);
    [all...]

Completed in 164 milliseconds