OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LineEnd
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Support/
SourceMgr.cpp
169
const char *
LineEnd
= Loc.getPointer();
171
while (
LineEnd
!= BufEnd &&
LineEnd
[0] != '\n' &&
LineEnd
[0] != '\r')
172
++
LineEnd
;
173
LineStr = std::string(LineStart,
LineEnd
);
182
if (R.Start.getPointer() >
LineEnd
|| R.End.getPointer() < LineStart)
188
if (R.End.getPointer() >
LineEnd
)
189
R.End = SMLoc::getFromPointer(
LineEnd
);
256
const char *
LineEnd
= SourceLine.end()
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp
356
// Compute
LineEnd
.
357
const char *
LineEnd
= TokInstantiationPtr;
359
while (*
LineEnd
!= '\n' &&
LineEnd
!= FileEnd)
360
++
LineEnd
;
528
unsigned DisplayPos =
LineEnd
- FileStart;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp
595
const char *
LineEnd
= LineStart;
596
while (
LineEnd
!= MemBuf->getBufferEnd() &&
597
*
LineEnd
!= '\r' && *
LineEnd
!= '\n')
598
++
LineEnd
;
600
StringRef Line(LineStart,
LineEnd
- LineStart);
607
LineStart =
LineEnd
;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
WikiParser.js
76
LineEnd
: "
LineEnd
",
178
var
lineEnd
= WebInspector.WikiParser.newLineWithoutSpace.exec(this._text);
179
if (
lineEnd
)
180
end =
lineEnd
.index;
255
WebInspector.WikiParser.
lineEnd
= /^\n/;
295
new WebInspector.WikiParser.TokenDescriptor(WebInspector.WikiParser.
lineEnd
, WebInspector.WikiParser.TokenType.
LineEnd
),
386
case WebInspector.WikiParser.TokenType.
LineEnd
:
580
case WebInspector.WikiParser.TokenType.
LineEnd
[
all
...]
/external/clang/lib/Basic/
SourceManager.cpp
[
all
...]
Completed in 140 milliseconds