Home
last modified time | relevance | path

Searched refs:StarLoc (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/Lex/
DModuleMap.cpp2175 SourceLocation StarLoc = consumeToken(); in parseInferredModuleDecl() local
2180 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); in parseInferredModuleDecl()
2188 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); in parseInferredModuleDecl()
2194 Diags.Report(StarLoc, diag::err_mmap_inferred_redef); in parseInferredModuleDecl()
2203 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); in parseInferredModuleDecl()
2207 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); in parseInferredModuleDecl()
2230 ActiveModule->InferredSubmoduleLoc = StarLoc; in parseInferredModuleDecl()
/external/clang/include/clang/AST/
DTypeLoc.h1100 SourceLocation StarLoc; member
1109 return this->getLocalData()->StarLoc; in getSigilLoc()
1112 this->getLocalData()->StarLoc = Loc; in setSigilLoc()
DStmt.h1238 SourceLocation StarLoc; variable
1243 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt()
1252 void setStarLoc(SourceLocation L) { StarLoc = L; } in setStarLoc()
1253 SourceLocation getStarLoc() const { return StarLoc; } in getStarLoc()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp600 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); in CreatePropertyDecl() local
601 StarLoc = getLocForEndOfToken(StarLoc); in CreatePropertyDecl()
603 << FixItHint::CreateInsertion(StarLoc, "*"); in CreatePropertyDecl()
DSemaStmt.cpp2594 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument
2606 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt()
2617 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
DTreeTransform.h1235 SourceLocation StarLoc, in RebuildIndirectGotoStmt() argument
1237 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
/external/clang/lib/Parse/
DParseStmt.cpp1787 SourceLocation StarLoc = ConsumeToken(); in ParseGotoStatement() local
1793 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
/external/clang/include/clang/Sema/
DSema.h3378 SourceLocation StarLoc,