HomeSort by relevance Sort by last modified time
    Searched refs:simplejson (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/chrome/test/pyautolib/
history_info.py 21 import simplejson as json
download_info.py 21 import simplejson as json
prefs_info.py 20 import simplejson as json
plugins_info.py 19 import simplejson as json
omnibox_info.py 18 import simplejson as json
bookmark_model.py 11 import simplejson as json
remote_inspector_client.py 45 import simplejson namespace
98 return simplejson.dumps(json_dict, separators=(',', ':'))
339 reply_dict = simplejson.loads(msg)
561 result = simplejson.loads(result)
575 logging.debug(simplejson.dumps(connect_to))
653 heap = simplejson.loads(raw_data)
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
ordered_dict.py 19 from simplejson import OrderedDict # pylint: disable=W0611
  /external/chromium_org/tools/json_schema_compiler/
json_parse.py 31 # support object_pairs_hook. simplejson however does, but it's slow.
35 #logging.warning('Using simplejson to parse, this might be slow! Upgrade to '
51 import simplejson namespace
52 from simplejson import OrderedDict
57 return simplejson.loads(json_comment_eater.Nom(json_str),
  /external/chromium_org/tools/perf_expectations/tests/
perf_expectations_unittest.py 6 """Verify perf_expectations.json can be loaded using simplejson.
9 that simplejson can load it correctly. It should catch most common
19 simplejson = None variable
25 global simplejson
31 # is where to look for simplejson
34 # to look for simplejson
46 raise Exception, "Error locating simplejson load path (%s)" % msg
48 # Try importing simplejson once. If this succeeds, we found it and will
52 import simplejson as Simplejson
57 (load_path, msg) namespace
    [all...]
  /external/chromium_org/third_party/simplejson/
tool.py 5 $ echo '{"json":"obj"}' | python -m simplejson.tool
9 $ echo '{ 1.2:3.4}' | python -m simplejson.tool
14 import simplejson as json
__init__.py 5 :mod:`simplejson` exposes an API familiar to users of the standard library
14 >>> import simplejson as json
33 >>> import simplejson as json
39 >>> import simplejson as json
49 >>> import simplejson as json
62 >>> import simplejson as json
77 >>> import simplejson as json
91 Using simplejson.tool from the shell to validate and pretty-print::
93 $ echo '{"json":"obj"}' | python -m simplejson.tool
97 $ echo '{ 1.2:3.4}' | python -m simplejson.too
472 import simplejson.decoder as dec namespace
473 import simplejson.encoder as enc namespace
474 import simplejson.scanner as scan namespace
    [all...]
scanner.py 6 from simplejson._speedups import make_scanner
decoder.py 7 from simplejson.scanner import make_scanner
10 from simplejson._speedups import scanstring
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 17 from django.utils import simplejson namespace
88 json = simplejson.loads(response_text)
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 17 from django.utils import simplejson namespace
90 json = simplejson.loads(response_text)
  /external/chromium_org/chrome/test/pyautolib/chromeos/
file_browser.py 5 import simplejson as json # found in third_party
  /external/chromium_org/chrome/test/functional/
autofill.py 10 import simplejson namespace
66 test_data = simplejson.loads(open(data_file).read())
  /external/chromium_org/tools/crx_id/
crx_id.py 21 import simplejson as json
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 29 from django.utils import simplejson namespace
226 json_list = simplejson.loads(contacts_buffer)
345 return simplejson.dumps(object)
  /external/chromium_org/chrome/test/functional/perf/
endure_result_parser.py 39 import simplejson namespace
116 line_dict = simplejson.loads(line)
118 existing_lines[i] = simplejson.dumps(new_line)
124 existing_lines.insert(0, simplejson.dumps(new_line))
155 existing_graphs = simplejson.loads(f.read())
172 f.write(simplejson.dumps(existing_graphs, indent=2))
  /external/chromium/chrome/common/extensions/docs/build/
build.py 43 import simplejson as json
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 39 import simplejson as json
  /external/chromium_org/tools/find_runtime_symbols/
find_runtime_symbols.py 25 from simplejson import OrderedDict
  /external/chromium_org/tools/playback_benchmark/
playback_driver.py 7 import simplejson as json

Completed in 362 milliseconds

1 2