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;
81 else if (ispunct(cur_char[1])) {
82 pOutStr.push_back(cur_char[1]); // %% -> %.
83 cur_char += 2;
88 ++cur_char;
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringHash.h284 int cur_char = pString[idx]; local
286 if ('.' == cur_char) {
291 if (isdigit(cur_char)) {
296 if ('_' == cur_char) {
301 if (isupper(cur_char)) {
302 result |= (1 << (cur_char - 'A'));
306 if (islower(cur_char)) {
307 result |= (1 << (cur_char - 'a'));

Completed in 70 milliseconds