Searched refs:next_non_space (Results 1 – 2 of 2) sorted by relevance
1672 token_node_t *next_non_space; in _glcpp_parser_apply_pastes() local1675 next_non_space = node->next; in _glcpp_parser_apply_pastes()1676 while (next_non_space && next_non_space->token->type == SPACE) in _glcpp_parser_apply_pastes()1677 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()1679 if (next_non_space == NULL) in _glcpp_parser_apply_pastes()1682 if (next_non_space->token->type != PASTE) { in _glcpp_parser_apply_pastes()1683 node = next_non_space; in _glcpp_parser_apply_pastes()1688 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()1689 while (next_non_space && next_non_space->token->type == SPACE) in _glcpp_parser_apply_pastes()1690 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()[all …]
705 Iterator next_non_space = current; in StringToIeee() local707 if (!AdvanceToNonspace(&next_non_space, end)) return junk_string_value_; in StringToIeee()708 if (!allow_spaces_after_sign && (current != next_non_space)) { in StringToIeee()711 current = next_non_space; in StringToIeee()