Home | History | Annotate | Download | only in LD

Lines Matching full:pbegin

39                                   const char* pBegin, const char* pEnd ) const
42 for (; pBegin != pEnd; ++pBegin) {
43 if (0 == depth && *pBegin == pVal)
44 return pBegin;
45 if (0 != depth && *pBegin == '}')
48 if ('%' == *pBegin) {
49 ++pBegin;
50 if (pBegin == pEnd)
53 if (!isdigit(*pBegin) && !ispunct(*pBegin)) {
54 ++pBegin;
55 while (pBegin != pEnd && !isdigit(*pBegin) && *pBegin != '{')
56 ++pBegin;
58 if (pBegin == pEnd)
60 if ('{' == *pBegin)
70 void Diagnostic::format(const char* pBegin, const char* pEnd,
73 const char* cur_char = pBegin;
117 llvm::Twine(pBegin) +
130 llvm::Twine(": ") + llvm::Twine(pBegin) +
141 llvm::Twine(": ") + llvm::Twine(pBegin) +