HomeSort by relevance Sort by last modified time
    Searched defs:JSON (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/backportPP/
Compat5005.pm 1 package # This is JSON::backportPP
2 JSON::backportPP5005;
9 $JSON::PP5005::VERSION = '1.10';
30 *JSON::PP::JSON_PP_encode_ascii = \&_encode_ascii;
31 *JSON::PP::JSON_PP_encode_latin1 = \&_encode_latin1;
32 *JSON::PP::JSON_PP_decode_surrogates = \&_decode_surrogates;
33 *JSON::PP::JSON_PP_decode_unicode = \&_decode_unicode;
93 sub JSON::PP::incr_text {
94 $_[0]->{_incr_parser} ||= JSON::PP::IncrParser->new;
112 JSON::PP5005 - Helper module in using JSON::PP in Perl 5.00
    [all...]
Compat5006.pm 1 package # This is JSON::backportPP
2 JSON::backportPP56;
9 $JSON::PP56::VERSION = '1.08';
69 *JSON::PP::JSON_PP_encode_ascii = \&_encode_ascii;
70 *JSON::PP::JSON_PP_encode_latin1 = \&_encode_latin1;
71 *JSON::PP::JSON_PP_decode_surrogates = \&JSON::PP::_decode_surrogates;
72 *JSON::PP::JSON_PP_decode_unicode = \&JSON::PP::_decode_unicode;
88 sprintf('\u%04x', $_) : sprintf('\u%x\u%x', JSON::PP::_encode_surrogates($_))
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/backportPP/
Compat5005.pm 1 package # This is JSON::backportPP
2 JSON::backportPP5005;
9 $JSON::PP5005::VERSION = '1.10';
30 *JSON::PP::JSON_PP_encode_ascii = \&_encode_ascii;
31 *JSON::PP::JSON_PP_encode_latin1 = \&_encode_latin1;
32 *JSON::PP::JSON_PP_decode_surrogates = \&_decode_surrogates;
33 *JSON::PP::JSON_PP_decode_unicode = \&_decode_unicode;
93 sub JSON::PP::incr_text {
94 $_[0]->{_incr_parser} ||= JSON::PP::IncrParser->new;
112 JSON::PP5005 - Helper module in using JSON::PP in Perl 5.00
    [all...]
Compat5006.pm 1 package # This is JSON::backportPP
2 JSON::backportPP56;
9 $JSON::PP56::VERSION = '1.08';
69 *JSON::PP::JSON_PP_encode_ascii = \&_encode_ascii;
70 *JSON::PP::JSON_PP_encode_latin1 = \&_encode_latin1;
71 *JSON::PP::JSON_PP_decode_surrogates = \&JSON::PP::_decode_surrogates;
72 *JSON::PP::JSON_PP_decode_unicode = \&JSON::PP::_decode_unicode;
88 sprintf('\u%04x', $_) : sprintf('\u%x\u%x', JSON::PP::_encode_surrogates($_))
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/backportPP/
Compat5005.pm 1 package # This is JSON::backportPP
2 JSON::backportPP5005;
9 $JSON::PP5005::VERSION = '1.10';
30 *JSON::PP::JSON_PP_encode_ascii = \&_encode_ascii;
31 *JSON::PP::JSON_PP_encode_latin1 = \&_encode_latin1;
32 *JSON::PP::JSON_PP_decode_surrogates = \&_decode_surrogates;
33 *JSON::PP::JSON_PP_decode_unicode = \&_decode_unicode;
93 sub JSON::PP::incr_text {
94 $_[0]->{_incr_parser} ||= JSON::PP::IncrParser->new;
112 JSON::PP5005 - Helper module in using JSON::PP in Perl 5.00
    [all...]
Compat5006.pm 1 package # This is JSON::backportPP
2 JSON::backportPP56;
9 $JSON::PP56::VERSION = '1.08';
69 *JSON::PP::JSON_PP_encode_ascii = \&_encode_ascii;
70 *JSON::PP::JSON_PP_encode_latin1 = \&_encode_latin1;
71 *JSON::PP::JSON_PP_decode_surrogates = \&JSON::PP::_decode_surrogates;
72 *JSON::PP::JSON_PP_decode_unicode = \&JSON::PP::_decode_unicode;
88 sprintf('\u%04x', $_) : sprintf('\u%x\u%x', JSON::PP::_encode_surrogates($_))
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
json2.js 2 http://www.JSON.org/json2.js
9 See http://www.JSON.org/js.html
19 This file creates a global JSON object containing two methods: stringify
22 JSON.stringify(value, replacer, space)
36 This method produces a JSON text from a JavaScript value.
73 Values that do not have JSON representations, such as undefined or
76 a replacer function to replace those with JSON values.
77 JSON.stringify(undefined) returns undefined.
89 text = JSON.stringify(['e', {pluribus: 'unum'}]);
93 text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t')
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/
JSON.pm 1 package JSON;
7 @JSON::EXPORT = qw(from_json to_json jsonToObj objToJson encode_json decode_json);
10 $JSON::VERSION = '2.59';
11 $JSON::DEBUG = 0 unless (defined $JSON::DEBUG);
12 $JSON::DEBUG = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG };
15 my $Module_XS = 'JSON::XS';
16 my $Module_PP = 'JSON::PP';
17 my $Module_bp = 'JSON::backportPP'; # included in JSON distributio
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/
JSON.pm 1 package JSON;
7 @JSON::EXPORT = qw(from_json to_json jsonToObj objToJson encode_json decode_json);
10 $JSON::VERSION = '2.59';
11 $JSON::DEBUG = 0 unless (defined $JSON::DEBUG);
12 $JSON::DEBUG = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG };
15 my $Module_XS = 'JSON::XS';
16 my $Module_PP = 'JSON::PP';
17 my $Module_bp = 'JSON::backportPP'; # included in JSON distributio
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/
JSON.pm 1 package JSON;
7 @JSON::EXPORT = qw(from_json to_json jsonToObj objToJson encode_json decode_json);
10 $JSON::VERSION = '2.59';
11 $JSON::DEBUG = 0 unless (defined $JSON::DEBUG);
12 $JSON::DEBUG = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG };
15 my $Module_XS = 'JSON::XS';
16 my $Module_PP = 'JSON::PP';
17 my $Module_bp = 'JSON::backportPP'; # included in JSON distributio
    [all...]
  /external/chromium_org/v8/src/
json.js 33 var $JSON = global.JSON;
222 // Set up non-enumerable properties of the JSON object.
223 InstallFunctions($JSON, DONT_ENUM, $Array(
233 // JSON Builtins
d8.js 103 JSON: 2 };
124 var trace_debug_json = false; // Tracing all debug json packets?
137 // Process a debugger JSON message into a display text and a running status.
144 // Convert the JSON string to an object.
288 // Converts a text command to a JSON request.
299 // If the very first character is a { assume that a JSON request have been
300 // entered as a command. Converting that to a JSON request is trivial.
494 // Return undefined to indicate command handled internally (no JSON).
502 // Return undefined to indicate command handled internally (no JSON).
525 var json = '{'
    [all...]
  /external/v8/src/
json.js 28 var $JSON = global.JSON;
342 InstallFunctions($JSON, DONT_ENUM, $Array(
  /libcore/json/src/main/java/org/json/
JSON.java 17 package org.json;
19 class JSON {
21 * Returns the input if it is a JSON-permissible value; throws otherwise.
JSONArray.java 17 package org.json;
25 // Note: this class was written without inspecting the non-free org.json sourcecode.
96 throw JSON.typeMismatch(object, "JSONArray");
101 * Creates a new {@code JSONArray} with values from the JSON string.
103 * @param json a JSON-encoded string containing an array.
107 public JSONArray(String json) throws JSONException {
108 this(new JSONTokener(json));
150 values.add(JSON.checkDouble(value));
249 JSON.checkDouble(((Number) value).doubleValue())
    [all...]
JSONObject.java 17 package org.json;
25 // Note: this class was written without inspecting the non-free org.json sourcecode.
91 * <li>are included in the encoded JSON string.
159 throw JSON.typeMismatch(object, "JSONObject");
164 * Creates a new {@code JSONObject} with name/value mappings from the JSON
167 * @param json a JSON-encoded string containing an object.
171 public JSONObject(String json) throws JSONException {
172 this(new JSONTokener(json));
217 nameValuePairs.put(checkName(name), JSON.checkDouble(value))
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/
backportPP.pm 1 package # This is JSON::backportPP
2 JSON::PP;
4 # JSON-2.0
18 @JSON::PP::EXPORT = qw(encode_json decode_json from_json to_json);
58 # Helper module sets @JSON::PP::_properties.
60 my $helper = $] >= 5.006 ? 'JSON::backportPP::Compat5006' : 'JSON::backportPP::Compat5005';
104 my $JSON; # cache
107 ($JSON ||= __PACKAGE__->new->utf8)->encode(@_);
112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_)
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/
backportPP.pm 1 package # This is JSON::backportPP
2 JSON::PP;
4 # JSON-2.0
18 @JSON::PP::EXPORT = qw(encode_json decode_json from_json to_json);
58 # Helper module sets @JSON::PP::_properties.
60 my $helper = $] >= 5.006 ? 'JSON::backportPP::Compat5006' : 'JSON::backportPP::Compat5005';
104 my $JSON; # cache
107 ($JSON ||= __PACKAGE__->new->utf8)->encode(@_);
112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_)
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/
backportPP.pm 1 package # This is JSON::backportPP
2 JSON::PP;
4 # JSON-2.0
18 @JSON::PP::EXPORT = qw(encode_json decode_json from_json to_json);
58 # Helper module sets @JSON::PP::_properties.
60 my $helper = $] >= 5.006 ? 'JSON::backportPP::Compat5006' : 'JSON::backportPP::Compat5005';
104 my $JSON; # cache
107 ($JSON ||= __PACKAGE__->new->utf8)->encode(@_);
112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
checker.py 281 _JSON_FILE_EXTENSION = 'json'
511 JSON = 3
580 return FileType.JSON
606 elif file_type == FileType.JSON:
    [all...]
  /prebuilts/misc/common/json/
json-prebuilt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 93 "JSON": "['parse', 'stringify']"
131 "JSON"
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
StringUtil.java     [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java     [all...]

Completed in 1074 milliseconds

1 2