Searched defs: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.h288 int cur_char = pString[idx]; local
290 if ('.' == cur_char) {
295 if (isdigit(cur_char)) {
300 if ('_' == cur_char) {
305 if (isupper(cur_char)) {
306 result |= (1 << (cur_char - 'A'));
310 if (islower(cur_char)) {
311 result |= (1 << (cur_char - 'a'));

Completed in 68 milliseconds