Home
last modified time | relevance | path

Searched refs:next_non_space (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y1792 token_node_t *next_non_space; in _glcpp_parser_apply_pastes() local
1795 next_non_space = node->next; in _glcpp_parser_apply_pastes()
1796 while (next_non_space && next_non_space->token->type == SPACE) in _glcpp_parser_apply_pastes()
1797 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()
1799 if (next_non_space == NULL) in _glcpp_parser_apply_pastes()
1802 if (next_non_space->token->type != PASTE) { in _glcpp_parser_apply_pastes()
1803 node = next_non_space; in _glcpp_parser_apply_pastes()
1808 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()
1809 while (next_non_space && next_non_space->token->type == SPACE) in _glcpp_parser_apply_pastes()
1810 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()
[all …]
/external/icu/icu4c/source/i18n/
Ddouble-conversion-string-to-double.cpp477 Iterator next_non_space = current; in StringToIeee() local
479 if (!AdvanceToNonspace(&next_non_space, end)) return junk_string_value_; in StringToIeee()
480 if (!allow_spaces_after_sign && (current != next_non_space)) { in StringToIeee()
483 current = next_non_space; in StringToIeee()