HomeSort by relevance Sort by last modified time
    Searched refs:StrEnd (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 272 const char *StrEnd = strchr(StrStart, '}');
273 if (StrEnd == 0)
277 std::string Val(StrStart, StrEnd);
279 LastEmitted = StrEnd+1;
  /external/clang/lib/AST/
Stmt.cpp 384 const char *StrEnd = Str.end();
391 for (; CurPtr != StrEnd; ++CurPtr) {
413 if (CurPtr == StrEnd) {
433 if (CurPtr == StrEnd) {
461 if (CurPtr == StrEnd) { // Premature end.
474 while (CurPtr != StrEnd && isdigit(*CurPtr))
493 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
  /external/clang/lib/Basic/
Diagnostic.cpp 676 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
677 OutStr.append(DiagStr, StrEnd);
678 DiagStr = StrEnd;

Completed in 125 milliseconds