Searched refs:StrEnd (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp331 const char *StrEnd = strchr(StrStart, '}'); local
332 if (!StrEnd)
336 std::string Val(StrStart, StrEnd);
338 LastEmitted = StrEnd+1;
/external/clang/lib/AST/
H A DStmt.cpp446 const char *StrEnd = Str.end(); local
453 for (; CurPtr != StrEnd; ++CurPtr) {
475 if (CurPtr == StrEnd) {
495 if (CurPtr == StrEnd) {
523 if (CurPtr == StrEnd) { // Premature end.
536 while (CurPtr != StrEnd && isDigit(*CurPtr))
555 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
/external/clang/lib/Basic/
H A DDiagnostic.cpp649 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); local
650 OutStr.append(DiagStr, StrEnd);
651 DiagStr = StrEnd;

Completed in 2304 milliseconds