Home
last modified time | relevance | path

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

/third_party/boost/libs/spirit/example/qi/
Dexpect.cpp25 std::vector<result_type> parsed_result; in parse() local
32 bool result = qi::phrase_parse(iter, end, parser, qi::space, parsed_result); in parse()
36 std::cout << "Parsed " << parsed_result.size() << " elements:"; in parse()
37 BOOST_FOREACH(result_type const& str, parsed_result) in parse()
/third_party/python/Lib/urllib/
Dparse.py702 parsed_result = {}
707 if name in parsed_result:
708 parsed_result[name].append(value)
710 parsed_result[name] = [value]
711 return parsed_result