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

  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 223 SourceLocation AtLoc,
269 MigrateCtx.AtPropsWeak.insert(AtLoc.getRawEncoding());
281 MigrateCtx.rewritePropertyAttribute("assign", toAttr, AtLoc);
283 MigrateCtx.addPropertyAttribute(toAttr, AtLoc);
292 TA.clearDiagnostic(diag::err_objc_property_attr_mutually_exclusive, AtLoc);
309 SourceLocation AtLoc = PD->getAtLoc();
310 if (AtLoc.isInvalid())
312 unsigned RawAt = AtLoc.getRawEncoding();
319 SourceLocation AtLoc = SourceLocation::getFromRawEncoding(I->first);
321 checkAllAtProps(MigrateCtx, AtLoc, IndProps)
    [all...]
  /external/clang/include/clang/AST/
StmtObjC.h 346 SourceLocation AtLoc;
350 ObjCAutoreleasePoolStmt(SourceLocation atLoc, Stmt *subStmt)
351 : Stmt(ObjCAutoreleasePoolStmtClass), AtLoc(atLoc), SubStmt(subStmt) {}
360 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
363 SourceLocation getAtLoc() const { return AtLoc; }
364 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; }
ExprObjC.h 31 SourceLocation AtLoc;
36 String(SL), AtLoc(L) {}
44 SourceLocation getAtLoc() const { return AtLoc; }
45 void setAtLoc(SourceLocation L) { AtLoc = L; }
47 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
362 SourceLocation AtLoc, RParenLoc;
371 EncodedType(EncodedType), AtLoc(at), RParenLoc(rp) {}
376 SourceLocation getAtLoc() const { return AtLoc; }
377 void setAtLoc(SourceLocation L) { AtLoc = L; }
388 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
    [all...]
DeclObjC.h     [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 131 Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
132 ExprResult LHS(ParseObjCAtExpression(AtLoc));
    [all...]
ParseStmt.cpp 159 SourceLocation AtLoc;
164 AtLoc = ConsumeToken(); // consume @
165 return ParseObjCAtStatement(AtLoc);
    [all...]
Parser.cpp 894 SourceLocation AtLoc = ConsumeToken(); // the "@"
906 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID,
908 Diag(AtLoc, DiagID) << PrevSpec;
911 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
914 ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
    [all...]
ParseObjc.cpp 48 SourceLocation AtLoc = ConsumeToken(); // the "@"
59 return ParseObjCAtClassDeclaration(AtLoc);
62 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, attrs);
67 return ParseObjCAtProtocolDeclaration(AtLoc, attrs);
70 return ParseObjCAtImplementationDeclaration(AtLoc);
72 return ParseObjCAtEndDeclaration(AtLoc);
74 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
77 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
80 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
84 return ParseModuleImport(AtLoc);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 824 SMLoc AtLoc = getLexer().getLoc();
827 return Error(AtLoc, "expected symbol variant after '@'");
    [all...]

Completed in 110 milliseconds