/external/llvm-project/clang/include/clang/AST/ |
D | Availability.h | 48 AvailabilitySpec(SourceLocation StarLoc) in AvailabilitySpec() argument 49 : BeginLoc(StarLoc), EndLoc(StarLoc) {} in AvailabilitySpec()
|
D | TypeLoc.h | 1192 SourceLocation StarLoc; member 1201 return this->getLocalData()->StarLoc; in getSigilLoc() 1205 this->getLocalData()->StarLoc = Loc; in setSigilLoc()
|
D | Stmt.h | 2612 SourceLocation StarLoc; variable 2617 : Stmt(IndirectGotoStmtClass), StarLoc(starLoc) { in IndirectGotoStmt() 2628 void setStarLoc(SourceLocation L) { StarLoc = L; } in setStarLoc() 2629 SourceLocation getStarLoc() const { return StarLoc; } in getStarLoc()
|
/external/clang/lib/Lex/ |
D | ModuleMap.cpp | 2181 SourceLocation StarLoc = consumeToken(); in parseInferredModuleDecl() local 2186 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); in parseInferredModuleDecl() 2194 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); in parseInferredModuleDecl() 2200 Diags.Report(StarLoc, diag::err_mmap_inferred_redef); in parseInferredModuleDecl() 2209 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); in parseInferredModuleDecl() 2213 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); in parseInferredModuleDecl() 2237 ActiveModule->InferredSubmoduleLoc = StarLoc; in parseInferredModuleDecl()
|
/external/llvm-project/clang/lib/Lex/ |
D | ModuleMap.cpp | 2722 SourceLocation StarLoc = consumeToken(); in parseInferredModuleDecl() local 2727 Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); in parseInferredModuleDecl() 2735 Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); in parseInferredModuleDecl() 2741 Diags.Report(StarLoc, diag::err_mmap_inferred_redef); in parseInferredModuleDecl() 2750 Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); in parseInferredModuleDecl() 2754 Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); in parseInferredModuleDecl() 2778 ActiveModule->InferredSubmoduleLoc = StarLoc; in parseInferredModuleDecl()
|
/external/llvm-project/clang/include/clang/Sema/ |
D | DeclSpec.h | 1525 unsigned StarLoc; member 1670 SourceLocation StarLoc, in getMemberPointer() 1676 I.Mem.StarLoc = StarLoc.getRawEncoding(); in getMemberPointer()
|
D | Sema.h | 4589 SourceLocation StarLoc,
|
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 1100 SourceLocation StarLoc; member 1109 return this->getLocalData()->StarLoc; in getSigilLoc() 1112 this->getLocalData()->StarLoc = Loc; in setSigilLoc()
|
D | Stmt.h | 1260 SourceLocation StarLoc; variable 1265 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt() 1274 void setStarLoc(SourceLocation L) { StarLoc = L; } in setStarLoc() 1275 SourceLocation getStarLoc() const { return StarLoc; } in getStarLoc()
|
/external/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 604 SourceLocation StarLoc = TInfo->getTypeLoc().getLocEnd(); in CreatePropertyDecl() local 605 StarLoc = getLocForEndOfToken(StarLoc); in CreatePropertyDecl() 607 << FixItHint::CreateInsertion(StarLoc, "*"); in CreatePropertyDecl()
|
D | SemaStmt.cpp | 2625 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument 2637 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt() 2648 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 1247 SourceLocation StarLoc, in RebuildIndirectGotoStmt() argument 1249 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 612 SourceLocation StarLoc = TInfo->getTypeLoc().getEndLoc(); in CreatePropertyDecl() local 613 StarLoc = getLocForEndOfToken(StarLoc); in CreatePropertyDecl() 615 << FixItHint::CreateInsertion(StarLoc, "*"); in CreatePropertyDecl()
|
D | SemaStmt.cpp | 2951 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument 2963 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt() 2974 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 1398 SourceLocation StarLoc, in RebuildIndirectGotoStmt() argument 1400 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
|
D | SemaType.cpp | 6087 TL.setStarLoc(SourceLocation::getFromRawEncoding(Chunk.Mem.StarLoc)); in VisitMemberPointerTypeLoc()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1828 SourceLocation StarLoc = ConsumeToken(); in ParseGotoStatement() local 1834 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 2125 SourceLocation StarLoc = ConsumeToken(); in ParseGotoStatement() local 2131 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
|
D | ParseDecl.cpp | 5684 SourceLocation StarLoc = ConsumeToken(); in ParseDeclaratorInternal() local 5685 D.SetRangeEnd(StarLoc); in ParseDeclaratorInternal() 5696 SS, DS.getTypeQualifiers(), StarLoc, DS.getEndLoc()), in ParseDeclaratorInternal()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3463 SourceLocation StarLoc,
|