Home
last modified time | relevance | path

Searched refs:StartLoc (Results 1 – 25 of 68) sorted by relevance

123

/external/clang/include/clang/AST/
DStmtOpenMP.h38 SourceLocation StartLoc; variable
68 SourceLocation StartLoc, SourceLocation EndLoc, in OMPExecutableDirective() argument
70 : Stmt(SC), Kind(K), StartLoc(std::move(StartLoc)), in OMPExecutableDirective()
169 SourceLocation getLocStart() const { return StartLoc; } in getLocStart()
177 void setLocStart(SourceLocation Loc) { StartLoc = Loc; } in setLocStart()
242 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() argument
245 StartLoc, EndLoc, NumClauses, 1), in OMPParallelDirective()
272 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc,
384 SourceLocation StartLoc, SourceLocation EndLoc,
387 : OMPExecutableDirective(That, SC, Kind, StartLoc, EndLoc, NumClauses,
[all …]
DOpenMPClause.h34 SourceLocation StartLoc; variable
41 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) in OMPClause() argument
42 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {} in OMPClause()
46 SourceLocation getLocStart() const { return StartLoc; } in getLocStart()
51 void setLocStart(SourceLocation Loc) { StartLoc = Loc; } in setLocStart()
58 bool isImplicit() const { return StartLoc.isInvalid(); } in isImplicit()
112 OMPVarListClause(OpenMPClauseKind K, SourceLocation StartLoc, in OMPVarListClause() argument
114 : OMPClause(K, StartLoc, EndLoc), LParenLoc(LParenLoc), NumVars(N) {} in OMPVarListClause()
198 SourceLocation StartLoc, SourceLocation LParenLoc, in OMPIfClause() argument
201 : OMPClause(OMPC_if, StartLoc, EndLoc), LParenLoc(LParenLoc), in OMPIfClause()
[all …]
DDecl.h417 SourceLocation StartLoc, SourceLocation IdLoc,
427 bool Inline, SourceLocation StartLoc,
838 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
864 SourceLocation StartLoc, SourceLocation IdLoc,
1352 ParmVarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in ParmVarDecl() argument
1355 : VarDecl(DK, C, DC, StartLoc, IdLoc, Id, T, TInfo, S) { in ParmVarDecl()
1364 SourceLocation StartLoc,
1653 FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in FunctionDecl() argument
1659 StartLoc), in FunctionDecl()
1696 SourceLocation StartLoc, SourceLocation NLoc,
[all …]
DDeclCXX.h641 SourceLocation StartLoc, SourceLocation IdLoc,
683 SourceLocation StartLoc, SourceLocation IdLoc,
1711 SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, in CXXMethodDecl() argument
1715 : FunctionDecl(DK, C, RD, StartLoc, NameInfo, T, TInfo, in CXXMethodDecl()
1723 SourceLocation StartLoc,
2150 CXXConstructorDecl(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, in CXXConstructorDecl() argument
2155 : CXXMethodDecl(CXXConstructor, C, RD, StartLoc, NameInfo, T, TInfo, in CXXConstructorDecl()
2165 SourceLocation StartLoc,
2353 CXXDestructorDecl(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, in CXXDestructorDecl() argument
2357 : CXXMethodDecl(CXXDestructor, C, RD, StartLoc, NameInfo, T, TInfo, in CXXDestructorDecl()
[all …]
DDeclTemplate.h1164 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc,
1168 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc),
1173 NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation StartLoc,
1186 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1191 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1576 DeclContext *DC, SourceLocation StartLoc,
1588 SourceLocation StartLoc, SourceLocation IdLoc,
1803 SourceLocation StartLoc,
1820 SourceLocation StartLoc, SourceLocation IdLoc,
2431 SourceLocation StartLoc, SourceLocation IdLoc,
[all …]
/external/llvm/lib/Target/SystemZ/AsmParser/
DSystemZAsmParser.cpp69 SMLoc StartLoc, EndLoc; member in __anon268cb60c0111::SystemZOperand
132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand()
135 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc, in createInvalid() argument
137 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc); in createInvalid()
146 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) { in createReg() argument
147 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc); in createReg()
153 createAccessReg(unsigned Num, SMLoc StartLoc, SMLoc EndLoc) { in createAccessReg() argument
154 auto Op = make_unique<SystemZOperand>(KindAccessReg, StartLoc, EndLoc); in createAccessReg()
159 createImm(const MCExpr *Expr, SMLoc StartLoc, SMLoc EndLoc) { in createImm() argument
160 auto Op = make_unique<SystemZOperand>(KindImm, StartLoc, EndLoc); in createImm()
[all …]
/external/clang/lib/AST/
DStmtOpenMP.cpp58 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create() argument
65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size()); in Create()
83 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument
93 OMPSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
124 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument
134 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
173 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument
183 OMPForSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
221 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create() argument
228 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create()
[all …]
DOpenMPClause.cpp39 OMPPrivateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument
47 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
74 OMPFirstprivateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument
82 new (Mem) OMPFirstprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
126 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, in Create() argument
133 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
150 SourceLocation StartLoc, in Create() argument
158 new (Mem) OMPSharedClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
195 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, in Create() argument
205 StartLoc, LParenLoc, Modifier, ModifierLoc, ColonLoc, EndLoc, VL.size()); in Create()
[all …]
DDeclTemplate.cpp540 SourceLocation StartLoc, in NonTypeTemplateParmDecl() argument
549 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc), in NonTypeTemplateParmDecl()
564 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument
568 return new (C, DC) NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id, in Create()
574 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument
584 NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id, T, TInfo, in Create()
733 DeclContext *DC, SourceLocation StartLoc, in ClassTemplateSpecializationDecl() argument
739 : CXXRecordDecl(DK, TK, Context, DC, StartLoc, IdLoc, in ClassTemplateSpecializationDecl()
757 SourceLocation StartLoc, in Create() argument
765 Context, ClassTemplateSpecialization, TK, DC, StartLoc, IdLoc, in Create()
[all …]
DDeclCXX.cpp87 DeclContext *DC, SourceLocation StartLoc, in CXXRecordDecl() argument
90 : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl), in CXXRecordDecl()
96 DeclContext *DC, SourceLocation StartLoc, in Create() argument
100 CXXRecordDecl *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc, in Create()
1462 SourceLocation StartLoc, in Create() argument
1467 return new (C, RD) CXXMethodDecl(CXXMethod, C, RD, StartLoc, NameInfo, in Create()
1745 SourceLocation StartLoc, in Create() argument
1753 return new (C, RD) CXXConstructorDecl(C, RD, StartLoc, NameInfo, T, TInfo, in Create()
1898 SourceLocation StartLoc, in Create() argument
1905 return new (C, RD) CXXDestructorDecl(C, RD, StartLoc, NameInfo, T, TInfo, in Create()
[all …]
DDecl.cpp1781 SourceLocation StartLoc, SourceLocation IdLoc, in VarDecl() argument
1784 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), in VarDecl()
2287 SourceLocation StartLoc, in Create() argument
2291 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo, in Create()
3333 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument
3337 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo, in Create()
3516 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument
3520 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl, in Create()
3590 DeclContext *DC, SourceLocation StartLoc, in RecordDecl() argument
3593 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) { in RecordDecl()
[all …]
/external/clang/lib/Sema/
DSemaOpenMP.cpp1631 SourceLocation StartLoc) { in CheckNestingOfRegions() argument
2231 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_simd); in CheckNestingOfRegions()
2237 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_atomic); in CheckNestingOfRegions()
2247 SemaRef.Diag(StartLoc, diag::err_omp_orphaned_section_directive) in CheckNestingOfRegions()
2307 SemaRef.Diag(StartLoc, in CheckNestingOfRegions()
2375 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region) in CheckNestingOfRegions()
2469 Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) { in ActOnOpenMPExecutableDirective() argument
2472 StartLoc)) in ActOnOpenMPExecutableDirective()
2505 Res = ActOnOpenMPParallelDirective(ClausesWithImplicit, AStmt, StartLoc, in ActOnOpenMPExecutableDirective()
2510 Res = ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc, in ActOnOpenMPExecutableDirective()
[all …]
DSemaExprCXX.cpp1166 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument
1233 return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal, in ActOnCXXNew()
1278 SourceLocation StartLoc = Range.getBegin(); in BuildCXXNew() local
1304 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg) in BuildCXXNew()
1320 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure) in BuildCXXNew()
1383 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion) in BuildCXXNew()
1440 ConvertedSize = PerformContextualImplicitConversion(StartLoc, ArraySize, in BuildCXXNew()
1514 FindAllocationFunctions(StartLoc, in BuildCXXNew()
1525 = doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType); in BuildCXXNew()
1558 Diag(StartLoc, diag::warn_overaligned_type) in BuildCXXNew()
[all …]
DTreeTransform.h1253 SourceLocation StartLoc, SourceLocation EndLoc) { in RebuildDeclStmt() argument
1255 return getSema().ActOnDeclStmt(DG, StartLoc, EndLoc); in RebuildDeclStmt()
1376 Stmt *AStmt, SourceLocation StartLoc, in RebuildOMPExecutableDirective() argument
1379 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc); in RebuildOMPExecutableDirective()
1387 Expr *Condition, SourceLocation StartLoc, in RebuildOMPIfClause() argument
1392 return getSema().ActOnOpenMPIfClause(NameModifier, Condition, StartLoc, in RebuildOMPIfClause()
1401 OMPClause *RebuildOMPFinalClause(Expr *Condition, SourceLocation StartLoc, in RebuildOMPFinalClause() argument
1404 return getSema().ActOnOpenMPFinalClause(Condition, StartLoc, LParenLoc, in RebuildOMPFinalClause()
1413 SourceLocation StartLoc, in RebuildOMPNumThreadsClause() argument
1416 return getSema().ActOnOpenMPNumThreadsClause(NumThreads, StartLoc, in RebuildOMPNumThreadsClause()
[all …]
/external/clang/lib/Parse/
DParseInit.cpp205 SourceLocation StartLoc = T.getOpenLocation(); in ParseInitializerWithPotentialDesignator() local
218 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator()
219 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator()
236 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator()
237 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator()
259 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator()
260 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator()
266 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator()
288 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator()
323 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator()
[all …]
DParseDeclCXX.cpp768 SourceLocation StartLoc = Tok.getLocation(); in ParseDecltypeSpecifier() local
790 StartLoc : T.getOpenLocation(); in ParseDecltypeSpecifier()
858 ? DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec, in ParseDecltypeSpecifier()
860 : DS.SetTypeSpecType(DeclSpec::TST_decltype_auto, StartLoc, PrevSpec, in ParseDecltypeSpecifier()
862 Diag(StartLoc, DiagID) << PrevSpec; in ParseDecltypeSpecifier()
869 SourceLocation StartLoc, in AnnotateExistingDecltypeSpecifier() argument
883 Tok.setLocation(StartLoc); in AnnotateExistingDecltypeSpecifier()
891 SourceLocation StartLoc = ConsumeToken(); in ParseUnderlyingTypeSpecifier() local
911 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec, in ParseUnderlyingTypeSpecifier()
914 Diag(StartLoc, DiagID) << PrevSpec; in ParseUnderlyingTypeSpecifier()
[all …]
DParseDecl.cpp628 SourceLocation StartLoc = Tok.getLocation(); in DiagnoseAndSkipExtendedMicrosoftTypeAttributes() local
632 SourceRange Range(StartLoc, EndLoc); in DiagnoseAndSkipExtendedMicrosoftTypeAttributes()
633 Diag(StartLoc, diag::warn_microsoft_qualifiers_ignored) << Range; in DiagnoseAndSkipExtendedMicrosoftTypeAttributes()
3441 SourceLocation StartLoc = Tok.getLocation(); in ParseDeclarationSpecifiers() local
3445 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc, StartLoc, in ParseDeclarationSpecifiers()
3448 Diag(StartLoc, DiagID) << PrevSpec; in ParseDeclarationSpecifiers()
3721 void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS, in ParseEnumSpecifier() argument
3895 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type); in ParseEnumSpecifier()
3898 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range; in ParseEnumSpecifier()
3900 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range; in ParseEnumSpecifier()
[all …]
DParser.cpp203 SourceLocation StartLoc = Tok.getLocation(); in ConsumeExtraSemi() local
217 Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi) in ConsumeExtraSemi()
218 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); in ConsumeExtraSemi()
220 Diag(StartLoc, diag::ext_extra_semi_cxx11) in ConsumeExtraSemi()
221 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); in ConsumeExtraSemi()
226 Diag(StartLoc, diag::ext_extra_semi) in ConsumeExtraSemi()
229 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); in ConsumeExtraSemi()
232 Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def) in ConsumeExtraSemi()
233 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); in ConsumeExtraSemi()
694 SourceLocation StartLoc = Tok.getLocation(); in ParseExternalDeclaration() local
[all …]
/external/llvm/lib/Target/X86/AsmParser/
DX86Operand.h33 SMLoc StartLoc, EndLoc; member
70 : Kind(K), StartLoc(Start), EndLoc(End) {} in X86Operand()
76 SMLoc getStartLoc() const override { return StartLoc; } in getStartLoc()
81 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } in getLocRange()
475 CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc,
478 auto Res = llvm::make_unique<X86Operand>(Register, StartLoc, EndLoc);
488 SMLoc StartLoc, SMLoc EndLoc) { in CreateImm()
489 auto Res = llvm::make_unique<X86Operand>(Immediate, StartLoc, EndLoc); in CreateImm()
496 CreateMem(unsigned ModeSize, const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc,
499 auto Res = llvm::make_unique<X86Operand>(Memory, StartLoc, EndLoc);
[all …]
/external/clang/include/clang/Sema/
DSema.h1698 ParmVarDecl *CheckParameter(DeclContext *DC, SourceLocation StartLoc,
3297 SourceLocation StartLoc,
3435 SourceLocation StartLoc,
3461 SourceLocation StartLoc,
4651 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
4671 bool FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
4676 bool FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
4687 bool FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
4690 FunctionDecl *FindUsualDeallocationFunction(SourceLocation StartLoc,
4695 ExprResult ActOnCXXDelete(SourceLocation StartLoc,
[all …]
/external/clang/lib/Lex/
DTokenLexer.cpp533 SourceLocation StartLoc = Tok.getLocation(); in PasteTokens() local
677 if (StartLoc.isFileID()) in PasteTokens()
678 StartLoc = getExpansionLocForMacroDefLoc(StartLoc); in PasteTokens()
682 while (SM.getFileID(StartLoc) != MacroFID) in PasteTokens()
683 StartLoc = SM.getImmediateExpansionRange(StartLoc).first; in PasteTokens()
687 Tok.setLocation(SM.createExpansionLoc(Tok.getLocation(), StartLoc, EndLoc, in PasteTokens()
/external/llvm/tools/llvm-mcmarkup/
Dllvm-mcmarkup.cpp59 SMLoc StartLoc; member in MarkupTag
62 : Name(n), Modifiers(m), StartLoc(Loc) {} in MarkupTag()
65 SMLoc getLoc() const { return StartLoc; } in getLoc()
/external/clang/lib/CodeGen/
DCoverageMappingGen.cpp374 size_t pushRegion(Counter Count, Optional<SourceLocation> StartLoc = None, in pushRegion()
376 if (StartLoc) in pushRegion()
377 MostRecentLocation = *StartLoc; in pushRegion()
378 RegionStack.emplace_back(Count, StartLoc, EndLoc); in pushRegion()
392 SourceLocation StartLoc = Region.getStartLoc(); in popRegions() local
396 while (!SM.isWrittenInSameFile(StartLoc, EndLoc)) { in popRegions()
413 if (StartLoc == getStartOfFileOrMacro(StartLoc) && in popRegions()
529 SourceLocation StartLoc = getStart(S); in extendRegion() local
531 handleFileExit(StartLoc); in extendRegion()
533 Region.setStartLoc(StartLoc); in extendRegion()
/external/llvm/lib/Target/Sparc/AsmParser/
DSparcAsmParser.cpp53 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
176 SMLoc StartLoc, EndLoc; member in __anon8582bd000111::SparcOperand
260 return StartLoc; in getStartLoc()
324 Op->StartLoc = S; in CreateToken()
334 Op->StartLoc = S; in CreateReg()
343 Op->StartLoc = S; in CreateImm()
417 Op->StartLoc = S; in CreateMEMr()
559 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) in ParseRegister() argument
562 StartLoc = Tok.getLoc(); in ParseRegister()
574 return Error(StartLoc, "invalid register name"); in ParseRegister()
/external/clang/lib/Rewrite/
DHTMLRewrite.cpp277 SourceLocation StartLoc = R.getSourceMgr().getLocForStartOfFile(FID); in AddHeaderFooterInternalBuiltinCSS() local
278 SourceLocation EndLoc = StartLoc.getLocWithOffset(FileEnd-FileStart); in AddHeaderFooterInternalBuiltinCSS()
347 R.InsertTextBefore(StartLoc, os.str()); in AddHeaderFooterInternalBuiltinCSS()

123