OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_at_eof
(Results
1 - 5
of
5
) sorted by null
/external/llvm/unittests/Support/
LineIteratorTest.cpp
26
EXPECT_FALSE(I.
is_at_eof
());
39
EXPECT_TRUE(I.
is_at_eof
());
55
EXPECT_FALSE(I.
is_at_eof
());
68
EXPECT_TRUE(I.
is_at_eof
());
85
EXPECT_FALSE(I.
is_at_eof
());
104
EXPECT_TRUE(I.
is_at_eof
());
118
EXPECT_FALSE(I.
is_at_eof
());
128
EXPECT_TRUE(I.
is_at_eof
());
140
EXPECT_FALSE(I.
is_at_eof
());
165
EXPECT_TRUE(I.
is_at_eof
());
[
all
...]
/external/llvm/include/llvm/Support/
LineIterator.h
50
bool
is_at_eof
() const { return !Buffer; }
function in class:llvm::line_iterator
53
bool is_at_end() const { return
is_at_eof
(); }
/external/clang/lib/StaticAnalyzer/Core/
IssueHash.cpp
123
for (; !LI.
is_at_eof
() && LI.line_number() != Line; ++LI)
/external/llvm/lib/ProfileData/
SampleProfReader.cpp
158
for (; !LineIt.
is_at_eof
(); ++LineIt) {
232
if (!LineIt.
is_at_eof
()) {
/external/llvm/tools/llvm-cov/
SourceCoverageView.cpp
171
for (line_iterator LI(File, /*SkipBlanks=*/false); !LI.
is_at_eof
(); ++LI) {
Completed in 890 milliseconds