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.y1655 token_node_t *next_non_space; in _glcpp_parser_apply_pastes() local
1658 next_non_space = node->next; in _glcpp_parser_apply_pastes()
1659 while (next_non_space && next_non_space->token->type == SPACE) in _glcpp_parser_apply_pastes()
1660 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()
1662 if (next_non_space == NULL) in _glcpp_parser_apply_pastes()
1665 if (next_non_space->token->type != PASTE) { in _glcpp_parser_apply_pastes()
1666 node = next_non_space; in _glcpp_parser_apply_pastes()
1671 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()
1672 while (next_non_space && next_non_space->token->type == SPACE) in _glcpp_parser_apply_pastes()
1673 next_non_space = next_non_space->next; in _glcpp_parser_apply_pastes()
[all …]
/external/valgrind/memcheck/
Dmc_main.c6449 static HChar* next_non_space (HChar *s) in next_non_space() function
6480 if (*endptr == '\0' && *next_non_space(*saveptr) != '.') { in VG_()