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

/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp73 const char* cur_char = pBegin; local
74 while (cur_char != pEnd) {
75 if ('%' != *cur_char) {
76 const char* new_end = std::find(cur_char, pEnd, '%');
77 pOutStr.append(cur_char, new_end);
78 cur_char = new_end;
81 else if (ispunct(cur_char[1])) {
82 pOutStr.push_back(cur_char[1]); // %% -> %.
83 cur_char += 2;
88 ++cur_char;
[all...]

Completed in 32 milliseconds