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 313 const char *StrEnd = strchr(StrStart, '}');
314 if (StrEnd == 0)
318 std::string Val(StrStart, StrEnd);
320 LastEmitted = StrEnd+1;
  /external/clang/lib/AST/
Stmt.cpp 467 const char *StrEnd = Str.end();
474 for (; CurPtr != StrEnd; ++CurPtr) {
496 if (CurPtr == StrEnd) {
516 if (CurPtr == StrEnd) {
544 if (CurPtr == StrEnd) { // Premature end.
557 while (CurPtr != StrEnd && isDigit(*CurPtr))
576 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 681 const char *StrEnd = std::find(DiagStr, DiagEnd, '%');
682 OutStr.append(DiagStr, StrEnd);
683 DiagStr = StrEnd;
    [all...]

Completed in 441 milliseconds