OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FixItInsertionLine
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Frontend/
TextDiagnostic.cpp
329
std::string &
FixItInsertionLine
,
334
FixItInsertionLine
.size()));
360
if (!
FixItInsertionLine
.empty()) {
361
unsigned FixItStart = 0, FixItEnd =
FixItInsertionLine
.size();
363
if (!isWhitespace(
FixItInsertionLine
[FixItStart]))
367
if (!isWhitespace(
FixItInsertionLine
[FixItEnd - 1]))
375
= llvm::sys::locale::columnWidth(
FixItInsertionLine
.substr(0, FixItEnd));
509
if (!
FixItInsertionLine
.empty())
510
FixItInsertionLine
.replace(0, CaretStart, front_space);
[
all
...]
/external/llvm/lib/Support/
SourceMgr.cpp
424
std::string
FixItInsertionLine
;
425
buildFixItLine(CaretLine,
FixItInsertionLine
, FixIts,
465
if (
FixItInsertionLine
.empty())
468
for (size_t i = 0, e =
FixItInsertionLine
.size(), OutCol = 0; i != e; ++i) {
470
S <<
FixItInsertionLine
[i];
477
S <<
FixItInsertionLine
[i];
483
if (
FixItInsertionLine
[i] != ' ')
Completed in 499 milliseconds