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

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp313 const char *StrEnd = strchr(StrStart, '}'); local
314 if (StrEnd == 0)
318 std::string Val(StrStart, StrEnd);
320 LastEmitted = StrEnd+1;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp447 const char *StrEnd = Str.end(); local
454 for (; CurPtr != StrEnd; ++CurPtr) {
476 if (CurPtr == StrEnd) {
496 if (CurPtr == StrEnd) {
524 if (CurPtr == StrEnd) { // Premature end.
537 while (CurPtr != StrEnd && isDigit(*CurPtr))
556 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnostic.cpp681 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); local
682 OutStr.append(DiagStr, StrEnd);
683 DiagStr = StrEnd;

Completed in 65 milliseconds