OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Lines
(Results
1 - 25
of
82
) sorted by relevancy
1
2
3
4
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LineTable.h
53
/// push "Row" onto the end of the "LineTable.
Lines
" vector. The end result
75
/// LineEntry.
Lines
array. They do this by using some of the bits to
104
///
Lines
.push_back(Row);
115
/// Opcodes that will push "Row" onto the LineEntry.
Lines
include the
120
Collection
Lines
; ///< All line entries in the line table.
167
bool empty() const { return
Lines
.empty(); }
168
void clear() {
Lines
.clear(); }
174
if (
Lines
.empty())
176
return
Lines
.front();
183
if (
Lines
.empty()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeEnumLineNumbers.cpp
25
:
Lines
(std::move(LineNums)), Index(0) {}
28
return static_cast<uint32_t>(
Lines
.size());
35
return std::make_unique<NativeLineNumber>(
Lines
[N]);
/src/external/apache2/llvm/dist/clang/lib/Format/
BreakableToken.cpp
153
// adaptStartOfLine will break after
lines
starting with /** if the comment
302
unsigned BreakableComment::getLineCount() const { return
Lines
.size(); }
308
// Don't break
lines
matching the comment pragmas regex.
338
//
Lines
starting with '@' commonly have special meaning.
339
//
Lines
starting with '-', '-#', '+' or '*' are bulleted/numbered lists.
379
.split(
Lines
, UseCRLF ? "\r\n" : "\n");
382
Content.resize(
Lines
.size());
383
Content[0] =
Lines
[0];
384
ContentColumn.resize(
Lines
.size());
387
Tokens.resize(
Lines
.size())
[
all
...]
AffectedRangeManager.h
31
// Determines which
lines
are affected by the SourceRanges given as input.
32
// Returns \c true if at least one line in \p
Lines
or one of their
34
bool computeAffectedLines(SmallVectorImpl<AnnotatedLine *> &
Lines
);
45
// Returns true if one of the input ranges intersect the leading empty
lines
49
// Marks all
lines
between I and E as well as all their children as affected.
56
SmallVectorImpl<AnnotatedLine *> &
Lines
);
AffectedRangeManager.cpp
23
SmallVectorImpl<AnnotatedLine *> &
Lines
) {
24
SmallVectorImpl<AnnotatedLine *>::iterator I =
Lines
.begin();
25
SmallVectorImpl<AnnotatedLine *>::iterator E =
Lines
.end();
51
if (nonPPLineAffected(Line, PreviousLine,
Lines
))
103
SmallVectorImpl<AnnotatedLine *> &
Lines
) {
144
Lines
[Line->MatchingOpeningBlockLineIndex]->Affected;
UnwrappedLineFormatter.h
11
/// linebreaks unwrapped
lines
can be formatted in.
40
unsigned format(const SmallVectorImpl<AnnotatedLine *> &
Lines
,
50
const SmallVectorImpl<AnnotatedLine *> &
Lines
,
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugLinesSubsection.cpp
54
: DebugSubsectionRef(DebugSubsectionKind::
Lines
) {}
73
: DebugSubsection(DebugSubsectionKind::
Lines
), Checksums(Checksums) {}
86
B.
Lines
.push_back(LNE);
94
assert(B.
Lines
.size() == B.Columns.size());
115
assert(B.
Lines
.size() == B.Columns.size() || B.Columns.empty());
117
BlockHeader.NumLines = B.
Lines
.size();
126
if (auto EC = Writer.writeArray(makeArrayRef(B.
Lines
)))
141
Size += B.
Lines
.size() * sizeof(LineNumberEntry);
DebugInlineeLinesSubsection.cpp
49
Lines
.getExtractor().HasExtraFiles = hasExtraFiles();
50
if (auto EC = Reader.readArray(
Lines
, Reader.bytesRemaining()))
/src/games/phantasia/
fight.c
60
Lines
= 9;
97
Lines
= 8;
123
if (
Lines
>
LINES
- 2)
126
more(
Lines
);
127
move(
Lines
= 8, 0);
133
more(
Lines
);
150
more(
Lines
);
161
more(
Lines
);
165
getyx(stdscr,
Lines
, flockcnt)
[
all
...]
phantglobs.c
31
int
Lines
; /* line on screen counter for fight routines */
interplayer.c
73
Lines
= 8;
200
mvprintw(
Lines
++, 0, "%s ran away!", Enemyname);
205
mvprintw(
Lines
++, 0, "%s tried to run away.", Enemyname);
210
mvprintw(
Lines
++, 0, "%s tried to luckout!", Enemyname);
215
mvprintw(
Lines
++, 0, "%s hit you %.0f times!", Enemyname, dtemp);
235
if (
Lines
>
LINES
- 2) {
236
more(
Lines
);
237
move(
Lines
= 8, 0);
249
mvprintw(
Lines
++, 0, "You killed %s!", Enemyname)
[
all
...]
phantglobs.h
23
extern int
Lines
; /* line on screen counter for fight routines */
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumLineNumbers.h
33
std::vector<NativeLineNumber>
Lines
;
/src/external/apache2/llvm/dist/clang/lib/Driver/
Distro.cpp
31
SmallVector<StringRef, 16>
Lines
;
32
File.get()->getBuffer().split(
Lines
, "\n");
36
for (StringRef Line :
Lines
)
57
SmallVector<StringRef, 16>
Lines
;
58
File.get()->getBuffer().split(
Lines
, "\n");
61
for (StringRef Line :
Lines
)
171
SmallVector<StringRef, 8>
Lines
;
172
Data.split(
Lines
, "\n");
173
for (const StringRef &Line :
Lines
) {
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h
77
bool valid() const { return
Lines
.valid(); }
80
Iterator begin() const { return
Lines
.begin(); }
81
Iterator end() const { return
Lines
.end(); }
85
LinesArray
Lines
;
DebugLinesSubsection.h
44
support::ulittle32_t NumLines; // Number of
lines
48
// LineNumberEntry
Lines
[NumLines];
88
return S->kind() == DebugSubsectionKind::
Lines
;
111
std::vector<LineNumberEntry>
Lines
;
120
return S->kind() == DebugSubsectionKind::
Lines
;
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbolData.cpp
35
if (auto
Lines
= getLineNumbers()) {
36
if (auto FirstLine =
Lines
->getNext())
PDBSymbolFunc.cpp
105
if (auto
Lines
= getLineNumbers()) {
106
if (auto FirstLine =
Lines
->getNext()) {
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp
121
YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::
Lines
) {}
130
const DebugLinesSubsectionRef &
Lines
);
132
SourceLineInfo
Lines
;
146
const DebugInlineeLinesSubsectionRef &
Lines
);
279
IO.mapRequired("
Lines
", Obj.
Lines
);
325
IO.mapTag("!
Lines
", true);
326
IO.mapRequired("CodeSize",
Lines
.CodeSize);
328
IO.mapRequired("Flags",
Lines
.Flags);
329
IO.mapRequired("RelocOffset",
Lines
.RelocOffset)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp
115
DILineInfoTable
Lines
= Context->getLineInfoForAddressRange(Addr, Size);
117
size_t num_entries =
Lines
.size();
122
for (auto& It :
Lines
) {
126
const_cast<char *>(
Lines
.front().second.FileName.c_str());
/src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyCompilandDumper.h
22
enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2,
Lines
= 0x4 };
/src/lib/libc/net/
nsparser.y
73
|
Lines
76
Lines
78
|
Lines
Entry
/src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp
189
SmallVector<StringRef, 32>
Lines
;
190
Output.split(
Lines
, "\n");
191
auto CurLine =
Lines
.begin();
204
// Read pairs of
lines
(function name and file/line info) until we
207
if (CurLine ==
Lines
.end())
215
if (CurLine ==
Lines
.end())
Host.cpp
159
// Read 32
lines
from /proc/cpuinfo, which should contain the CPU part line
161
SmallVector<StringRef, 32>
Lines
;
162
ProcCpuinfoContent.split(
Lines
, "\n");
168
for (unsigned I = 0, E =
Lines
.size(); I != E; ++I) {
169
if (
Lines
[I].startswith("CPU implementer"))
170
Implementer =
Lines
[I].substr(15).ltrim("\t :");
171
if (
Lines
[I].startswith("Hardware"))
172
Hardware =
Lines
[I].substr(8).ltrim("\t :");
173
if (
Lines
[I].startswith("CPU part"))
174
Part =
Lines
[I].substr(8).ltrim("\t :")
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
Delta.cpp
54
/// Counts the amount of
lines
for a given file
56
int
Lines
= 0;
61
++
Lines
;
63
return
Lines
;
173
errs() << " **** SUCCESS |
lines
: " << getLines(CurrentFilepath) << "\n";
Completed in 38 milliseconds
1
2
3
4
Indexes created Mon Mar 02 05:31:46 UTC 2026