Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DModuleMap.cpp2076 SourceLocation StarLoc = consumeToken(); in parseInferredModuleDecl() local
2081 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); in parseInferredModuleDecl()
2089 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); in parseInferredModuleDecl()
2095 Diags.Report(StarLoc, diag::err_mmap_inferred_redef); in parseInferredModuleDecl()
2104 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); in parseInferredModuleDecl()
2108 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); in parseInferredModuleDecl()
2131 ActiveModule->InferredSubmoduleLoc = StarLoc; in parseInferredModuleDecl()
/external/clang/include/clang/AST/
DTypeLoc.h1018 SourceLocation StarLoc; member
1027 return this->getLocalData()->StarLoc; in getSigilLoc()
1030 this->getLocalData()->StarLoc = Loc; in setSigilLoc()
DStmt.h1244 SourceLocation StarLoc; variable
1249 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt()
1258 void setStarLoc(SourceLocation L) { StarLoc = L; } in setStarLoc()
1259 SourceLocation getStarLoc() const { return StarLoc; } in getStarLoc()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp555 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); in CreatePropertyDecl() local
556 StarLoc = getLocForEndOfToken(StarLoc); in CreatePropertyDecl()
558 << FixItHint::CreateInsertion(StarLoc, "*"); in CreatePropertyDecl()
DSemaStmt.cpp2548 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument
2560 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt()
2571 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
DTreeTransform.h1214 SourceLocation StarLoc, in RebuildIndirectGotoStmt() argument
1216 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
/external/clang/lib/Parse/
DParseStmt.cpp1759 SourceLocation StarLoc = ConsumeToken(); in ParseGotoStatement() local
1765 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
/external/clang/include/clang/Sema/
DSema.h3146 SourceLocation StarLoc,