Home
last modified time | relevance | path

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

/external/v8/build/
Dgn_helpers_unittest.py27 parser = gn_helpers.GNValueParser('123 456')
31 parser = gn_helpers.GNValueParser('true')
34 parser = gn_helpers.GNValueParser('false')
38 parser = gn_helpers.GNValueParser('123')
42 parser = gn_helpers.GNValueParser('')
45 parser = gn_helpers.GNValueParser('a123')
49 parser = gn_helpers.GNValueParser('"asdf"')
53 parser = gn_helpers.GNValueParser('') # Empty.
56 parser = gn_helpers.GNValueParser('asdf') # Unquoted.
59 parser = gn_helpers.GNValueParser('"trailing') # Unterminated.
[all …]
Dgn_helpers.py102 parser = GNValueParser(input)
123 parser = GNValueParser(input)
156 class GNValueParser(object): class