Searched refs:curr_token (Results 1 – 4 of 4) sorted by relevance
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | json.c | 222 struct json_token *root = NULL, *curr_token = NULL, *token = NULL; in json_parse() local 236 if (!curr_token) { in json_parse() 242 } else if (curr_token->state == JSON_WAITING_VALUE) { in json_parse() 243 token = curr_token; in json_parse() 244 } else if (curr_token->parent && in json_parse() 245 curr_token->parent->type == JSON_ARRAY && in json_parse() 246 curr_token->parent->state == JSON_STARTED && in json_parse() 247 curr_token->state == JSON_EMPTY) { in json_parse() 248 token = curr_token; in json_parse() 265 curr_token = token->child; in json_parse() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | json.c | 222 struct json_token *root = NULL, *curr_token = NULL, *token = NULL; in json_parse() local 236 if (!curr_token) { in json_parse() 242 } else if (curr_token->state == JSON_WAITING_VALUE) { in json_parse() 243 token = curr_token; in json_parse() 244 } else if (curr_token->parent && in json_parse() 245 curr_token->parent->type == JSON_ARRAY && in json_parse() 246 curr_token->parent->state == JSON_STARTED && in json_parse() 247 curr_token->state == JSON_EMPTY) { in json_parse() 248 token = curr_token; in json_parse() 265 curr_token = token->child; in json_parse() [all …]
|
/third_party/boost/boost/wave/util/ |
D | cpp_macromap.hpp | 184 token_type const curr_token, std::vector<ContainerT> &arguments, 190 token_type const curr_token, std::vector<ContainerT> &arguments, 206 bool expand_predefined_macro(token_type const &curr_token, 229 void rescan_replacement_list(token_type const &curr_token, 769 token_type curr_token = *first; in expand_tokensequence_worker() local 783 curr_token.get_position()); in expand_tokensequence_worker() 861 macromap<ContextT>::collect_arguments (token_type const curr_token, in collect_arguments() argument 868 macromap<ContextT>::collect_arguments (token_type const curr_token, in collect_arguments() 893 too_many_macroarguments, curr_token.get_value().c_str(), in collect_arguments() 1372 macromap<ContextT>::rescan_replacement_list(token_type const &curr_token, in rescan_replacement_list() argument [all …]
|
/third_party/boost/boost/test/utils/runtime/cla/ |
D | parser.hpp | 172 cstring curr_token = tr.current_token(); in parse() local 181 … if( !validate_token_format( curr_token, prefix, name, value_separator, negative_form ) ) { in parse() 192 rt_cla_detail::report_foreing_token( m_program_name, curr_token ); in parse() 197 curr_token.trim_left( prefix.size() ); in parse() 200 locate_result locate_res = locate_parameter( curr_trie, name, curr_token ); in parse() 209 curr_token.trim_left( m_negation_prefix.size() ); in parse() 212 curr_token.trim_left( name.size() ); in parse() 230 curr_token.trim_left( value_separator.size() ); in parse() 233 value = curr_token; in parse() 247 value = curr_token; in parse()
|