OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkippedRanges
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Lex/
PreprocessingRecord.cpp
328
unsigned Result =
SkippedRanges
.size();
329
SkippedRanges
.resize(
SkippedRanges
.size() + NumRanges);
337
for (unsigned Index = 0; Index !=
SkippedRanges
.size(); ++Index) {
338
if (
SkippedRanges
[Index].isInvalid())
339
SkippedRanges
[Index] = ExternalSource->ReadSkippedRange(Index);
434
SkippedRanges
.emplace_back(Range.getBegin(), EndifLoc);
515
+ llvm::capacity_in_bytes(
SkippedRanges
);
PPDirectives.cpp
411
const PreprocessorSkippedRangeMapping &
SkippedRanges
= *It->getSecond();
413
auto MappingIt =
SkippedRanges
.find(HashFileOffset.second);
414
if (MappingIt ==
SkippedRanges
.end())
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.h
52
std::vector<SkippedRange>
SkippedRanges
;
63
std::vector<SkippedRange> &getSkippedRanges() { return
SkippedRanges
; }
CoverageMappingGen.cpp
64
if (EmptyLineCommentCoverage && !
SkippedRanges
.empty() &&
65
PrevTokLoc ==
SkippedRanges
.back().PrevTokLoc &&
66
SourceMgr.isWrittenInSameFile(
SkippedRanges
.back().Range.getEnd(),
68
SkippedRanges
.back().Range.setEnd(Range.getEnd());
70
SkippedRanges
.push_back({Range, PrevTokLoc});
87
if (!
SkippedRanges
.empty() &&
SkippedRanges
.back().NextTokLoc.isInvalid())
88
SkippedRanges
.back().NextTokLoc = Loc;
374
auto
SkippedRanges
= CVM.getSourceInfo().getSkippedRanges();
375
for (auto &I :
SkippedRanges
) {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
DependencyScanningFilesystem.cpp
76
SkippedRanges
;
78
SkippedRanges
);
80
for (const auto &Range :
SkippedRanges
) {
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
InlineInfo.cpp
74
/// \param
SkippedRanges
If true, address ranges have already been skipped.
76
static bool skip(DataExtractor &Data, uint64_t &Offset, bool
SkippedRanges
) {
77
if (!
SkippedRanges
) {
86
while (skip(Data, Offset, false /*
SkippedRanges
*/))
118
skip(Data, Offset, true /*
SkippedRanges
*/);
/src/external/apache2/llvm/dist/clang/include/clang/Lex/
PreprocessingRecord.h
326
std::vector<SourceRange>
SkippedRanges
;
519
return
SkippedRanges
;
/src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp
8844
const std::vector<SourceRange> &
SkippedRanges
= ppRec->getSkippedRanges();
8846
for (std::vector<SourceRange>::const_iterator i =
SkippedRanges
.begin(),
8847
ei =
SkippedRanges
.end();
8883
const std::vector<SourceRange> &
SkippedRanges
= ppRec->getSkippedRanges();
8885
skipped->count =
SkippedRanges
.size();
8888
skipped->ranges[i] = cxloc::translateSourceRange(Ctx,
SkippedRanges
[i]);
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp
2459
ArrayRef<SourceRange>
SkippedRanges
= PPRec.getSkippedRanges();
2460
if (
SkippedRanges
.size() > 0) {
2462
SerializedSkippedRanges.reserve(
SkippedRanges
.size());
2463
for (auto const& Range :
SkippedRanges
)
Completed in 158 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026