OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TabStop
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnostic.cpp
94
/// \param
TabStop
used to expand tabs
99
unsigned
TabStop
) {
104
assert(0 <
TabStop
&&
TabStop
<= DiagnosticOptions::MaxTabStop &&
107
unsigned NumSpaces =
TabStop
- col%
TabStop
;
108
assert(0 < NumSpaces && NumSpaces <=
TabStop
162
static void expandTabs(std::string &SourceLine, unsigned
TabStop
) {
170
= printableTextForNextCharacter(SourceLine, &tmp_i,
TabStop
);
191
/// example: (given a
tabstop
of 8
[
all
...]
CompilerInvocation.cpp
2312
if (Opts.
TabStop
== 0 || Opts.
TabStop
> DiagnosticOptions::MaxTabStop) {
2313
Opts.
TabStop
= DiagnosticOptions::DefaultTabStop;
2315
<< Opts.
TabStop
<< DiagnosticOptions::DefaultTabStop;
/src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp
38
static const size_t
TabStop
= 8;
466
} while ((OutCol %
TabStop
) != 0);
575
} while ((OutCol %
TabStop
) != 0);
602
} while (((OutCol %
TabStop
) != 0) && i != e);
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp
1260
/// Compute the column number will aligning tabs on
TabStop
(-ftabstop), this
1263
unsigned
TabStop
= SM.getDiagnostics().getDiagnosticOptions().
TabStop
;
1266
if (ColNo == 0 ||
TabStop
== 1)
1287
// Advance visual column to next
tabstop
.
1288
VisualColumn += (
TabStop
- VisualColumn %
TabStop
);
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.cpp
483
unsigned
TabStop
= getInstStartColumn(STI);
485
OS.indent(Column <
TabStop
- 1 ?
TabStop
- 1 - Column : 7 - Column % 8);
Completed in 43 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026