OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LineIndex
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/Format/
BreakableToken.h
45
/// at \p
LineIndex
, from byte offset \p Offset with length \p Length.
51
getLineLengthAfterSplit(unsigned
LineIndex
, unsigned Offset,
55
/// \p
LineIndex
, if previously broken at \p TailOffset. If possible, do not
57
virtual Split getSplit(unsigned
LineIndex
, unsigned TailOffset,
61
virtual void insertBreak(unsigned
LineIndex
, unsigned TailOffset, Split Split,
66
virtual void replaceWhitespace(unsigned
LineIndex
, unsigned TailOffset,
70
/// \brief Replaces the whitespace between \p
LineIndex
-1 and \p
LineIndex
.
71
virtual void replaceWhitespaceBefore(unsigned
LineIndex
,
94
unsigned getLineLengthAfterSplit(unsigned
LineIndex
, unsigned TailOffset
[
all
...]
BreakableToken.cpp
137
unsigned
LineIndex
, unsigned Offset, StringRef::size_type Length) const {
163
BreakableStringLiteral::getSplit(unsigned
LineIndex
, unsigned TailOffset,
170
void BreakableStringLiteral::insertBreak(unsigned
LineIndex
,
219
BreakableLineComment::getSplit(unsigned
LineIndex
, unsigned TailOffset,
225
void BreakableLineComment::insertBreak(unsigned
LineIndex
, unsigned TailOffset,
233
void BreakableLineComment::replaceWhitespace(unsigned
LineIndex
,
243
unsigned
LineIndex
, WhitespaceManager &Whitespaces) {
326
void BreakableBlockComment::adjustWhitespace(unsigned
LineIndex
,
333
size_t EndOfPreviousLine = Lines[
LineIndex
- 1].size();
334
if (InPPDirective && Lines[
LineIndex
- 1].endswith("\\")
[
all
...]
ContinuationIndenter.cpp
[
all
...]
/external/llvm/lib/IR/
GCOV.cpp
586
for (uint32_t
LineIndex
= 0;
LineIndex
< Line.LastLine || !AllLines.empty();
587
++
LineIndex
) {
589
FunctionLines::const_iterator FuncsIt = Line.Functions.find(
LineIndex
);
594
BlockLines::const_iterator BlocksIt = Line.Blocks.find(
LineIndex
);
598
AllLines.printNext(CovOS,
LineIndex
+ 1);
658
AllLines.printNext(CovOS,
LineIndex
+ 1);
664
if (Block->getLastLine() !=
LineIndex
+ 1)
667
printBlockInfo(CovOS, *Block,
LineIndex
, BlockNo);
708
uint32_t
LineIndex
, uint32_t &BlockNo) const
[
all
...]
/external/clang/lib/Parse/
ParseStmtAsm.cpp
250
unsigned
LineIndex
= 0;
252
LineIndex
= LineToks.size() - 2;
254
while (LineToks[
LineIndex
].getLocation() != Tok.getLocation()) {
255
LineIndex
++;
256
assert(
LineIndex
< LineToks.size() - 2); // we added two extra tokens
266
NumLineToksConsumed =
LineIndex
;
271
for (unsigned i = 0, e = LineToks.size() -
LineIndex
- 2; i != e; ++i) {
/external/llvm/include/llvm/Support/
GCOV.h
422
uint32_t
LineIndex
, uint32_t &BlockNo) const;
Completed in 49 milliseconds