Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Lex/
HDModuleMap.cpp2063 SourceLocation StarLoc = consumeToken(); in parseInferredModuleDecl() local
2068 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); in parseInferredModuleDecl()
2076 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); in parseInferredModuleDecl()
2082 Diags.Report(StarLoc, diag::err_mmap_inferred_redef); in parseInferredModuleDecl()
2091 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); in parseInferredModuleDecl()
2095 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); in parseInferredModuleDecl()
2118 ActiveModule->InferredSubmoduleLoc = StarLoc; in parseInferredModuleDecl()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDTypeLoc.h1088 SourceLocation StarLoc; member
1097 return this->getLocalData()->StarLoc; in getSigilLoc()
1100 this->getLocalData()->StarLoc = Loc; in setSigilLoc()
HDStmt.h1249 SourceLocation StarLoc; variable
1254 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt()
1263 void setStarLoc(SourceLocation L) { StarLoc = L; } in setStarLoc()
1264 SourceLocation getStarLoc() const { return StarLoc; } in getStarLoc()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaObjCProperty.cpp553 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); in CreatePropertyDecl() local
554 StarLoc = getLocForEndOfToken(StarLoc); in CreatePropertyDecl()
556 << FixItHint::CreateInsertion(StarLoc, "*"); in CreatePropertyDecl()
HDSemaStmt.cpp2559 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument
2571 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt()
2582 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
HDTreeTransform.h1230 SourceLocation StarLoc, in RebuildIndirectGotoStmt() argument
1232 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseStmt.cpp1762 SourceLocation StarLoc = ConsumeToken(); in ParseGotoStatement() local
1768 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h3327 SourceLocation StarLoc,