Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching defs:LineStart

703   const char *LineStart = MemBuf->getBufferStart();
706 while (LineStart != MemBuf->getBufferEnd() && std::isspace(*LineStart))
707 ++LineStart;
709 while (LineStart != MemBuf->getBufferEnd() && *LineStart != '\0') {
710 const char *LineEnd = LineStart;
715 StringRef Line(LineStart, LineEnd - LineStart);
722 LineStart = LineEnd;
723 while (LineStart != MemBuf->getBufferEnd() && std::isspace(*LineStart))
724 ++LineStart;