HomeSort by relevance Sort by last modified time
    Searched refs: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/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/clang/lib/Frontend/
TextDiagnostic.cpp     [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/clang/lib/Basic/
SourceManager.cpp     [all...]

Completed in 107 milliseconds