Searched refs:cur_char (Results 1 - 2 of 2) 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;
80 } else if (ispunct(cur_char[1])) {
81 pOutStr.push_back(cur_char[1]); // %% -> %.
82 cur_char += 2;
87 ++cur_char;
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringHash.h262 int cur_char = pString[idx]; local
264 if ('.' == cur_char) {
269 if (isdigit(cur_char)) {
274 if ('_' == cur_char) {
279 if (isupper(cur_char)) {
280 result |= (1 << (cur_char - 'A'));
284 if (islower(cur_char)) {
285 result |= (1 << (cur_char - 'a'));

Completed in 1876 milliseconds