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

/external/chromium_org/base/third_party/symbolize/
H A Ddemangle.cc146 char *out_cur; // Cursor of output string. member in struct:__anon2530
190 state->out_cur = out;
262 // Append "str" at "out_cur". If there is an overflow, "overflowed"
268 if (state->out_cur + 1 < state->out_end) { // +1 for '\0'
269 *state->out_cur = str[i];
270 ++state->out_cur;
277 *state->out_cur = '\0'; // Terminate it with '\0'
327 if (str[0] == '<' && state->out_begin < state->out_cur &&
328 state->out_cur[-1] == '<') {
333 state->prev_name = state->out_cur;
[all...]

Completed in 212 milliseconds