HomeSort by relevance Sort by last modified time
    Searched full:stringify (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 22 return jsonObject.stringify(1);
25 return jsonObject.stringify(1.5);
28 return jsonObject.stringify(-1);
31 return jsonObject.stringify(-1.5);
34 return jsonObject.stringify(null);
37 return jsonObject.stringify("string");
40 return jsonObject.stringify(new Number(0));
43 return jsonObject.stringify(new Number(1));
46 return jsonObject.stringify(new Number(1.5));
49 return jsonObject.stringify(new Number(-1))
    [all...]
JSON-parse.js 313 return jsonObject.parse(JSON.stringify(simpleObject));
315 result[result.length - 1].expected = JSON.stringify(simpleObject);
317 return jsonObject.parse(JSON.stringify(complexObject));
320 return jsonObject.parse(JSON.stringify(complexObject));
322 result[result.length - 1].expected = JSON.stringify(complexObject);
324 return jsonObject.parse(JSON.stringify(simpleObject,null,100));
326 result[result.length - 1].expected = JSON.stringify(simpleObject);
328 return jsonObject.parse(JSON.stringify(complexObject,null,100));
331 return jsonObject.parse(JSON.stringify(complexObject,null,100));
333 result[result.length - 1].expected = JSON.stringify(complexObject)
    [all...]
json2-es5-compat.js 11 This file creates a global JSON object containing two methods: stringify
14 JSON.stringify(value, replacer, space)
69 JSON.stringify(undefined) returns undefined.
81 text = JSON.stringify(['e', {pluribus: 'unum'}]);
85 text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
88 text = JSON.stringify([new Date()], function (key, value) {
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
291 // The value is an array. Stringify every element. Use null as a placeholder
349 // If the JSON object does not yet have a stringify method, give it one.
351 if (typeof JSON.stringify !== 'function')
    [all...]
standalone-pre.js 58 function stringify(v) function
83 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
js-test-pre.js 68 function stringify(v) function
109 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
155 shouldBe(actual, stringify(expected));
  /external/v8/test/mjsunit/
json.js 233 // Stringify
235 assertEquals("true", JSON.stringify(true));
236 assertEquals("false", JSON.stringify(false));
237 assertEquals("null", JSON.stringify(null));
238 assertEquals("false", JSON.stringify({toJSON: function () { return false; }}));
239 assertEquals("4", JSON.stringify(4));
240 assertEquals('"foo"', JSON.stringify("foo"));
241 assertEquals("null", JSON.stringify(Infinity));
242 assertEquals("null", JSON.stringify(-Infinity));
243 assertEquals("null", JSON.stringify(NaN))
    [all...]
mirror-error.js 47 var json = JSON.stringify(serializer.serializeValue(mirror));
49 JSON.stringify(serializer.serializeReferencedObjects()));
mirror-function.js 47 var json = JSON.stringify(serializer.serializeValue(mirror));
49 JSON.stringify(serializer.serializeReferencedObjects()));
mirror-regexp.js 58 var json = JSON.stringify(serializer.serializeValue(mirror));
60 JSON.stringify(serializer.serializeReferencedObjects()));
mirror-unresolved-function.js 45 var json = JSON.stringify(serializer.serializeValue(mirror));
47 JSON.stringify(serializer.serializeReferencedObjects()));
debug-evaluate-bool-constructor.js 50 request = JSON.stringify(request);
debug-stepout-to-builtin.js 75 JSON.stringify(obj, replacer);
  /external/qemu/android/config/
check-esd.c 23 #define STRINGIFY(x) _STRINGIFY(x)
57 (func_ ##name) = dlsym( esd_lib, STRINGIFY(name) ); \
59 D("could not find %s in libesd\n", STRINGIFY(name)); \
check-alsa.c 21 #define STRINGIFY(x) _STRINGIFY(x)
89 (func_ ##name) = dlsym( alsa_lib, STRINGIFY(name) ); \
91 D("could not find %s in libasound\n", STRINGIFY(name)); \
  /external/webkit/WebKit/win/
ProgIDMacros.h 29 #define STRINGIFIED_VERSION(version) STRINGIFY(version)
30 #define STRINGIFY(s) L###s
  /external/qemu/android/
hw-events.c 22 #define EV_TYPE(n,v) { "EV_" STRINGIFY(n), (v) },
24 #define BTN_CODE(n,v) { "BTN_" STRINGIFY(n), (v) },
25 #define KEY_CODE(n,v) { "KEY_" STRINGIFY(n), (v) },
26 #define REL_CODE(n,v) { "REL_" STRINGIFY(n), (v) },
27 #define ABS_CODE(n,v) { "ABS_" STRINGIFY(n), (v) },
  /external/webkit/SunSpider/hosted/
json2.js 19 This file creates a global JSON object containing two methods: stringify
22 JSON.stringify(value, replacer, space)
77 JSON.stringify(undefined) returns undefined.
89 text = JSON.stringify(['e', {pluribus: 'unum'}]);
93 text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
96 text = JSON.stringify([new Date()], function (key, value) {
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
295 // The value is an array. Stringify every element. Use null as a placeholder
353 // If the JSON object does not yet have a stringify method, give it one.
355 if (typeof JSON.stringify !== 'function')
    [all...]
  /bootable/recovery/
common.h 87 #define STRINGIFY(x) #x
88 #define EXPAND(x) STRINGIFY(x)
  /external/qemu/android/utils/
system.h 73 #ifndef STRINGIFY
75 #define STRINGIFY(x) _STRINGIFY(x)
  /external/webkit/WebKit/chromium/src/js/
InjectDispatch.js 68 DevToolsAgentHost.dispatchToApu(JSON.stringify(args));
104 var call = JSON.stringify(args);
  /external/qemu/
osdep.h 18 #define stringify(s) tostring(s) macro
  /bionic/libc/kernel/common/linux/
module.h 23 #include <linux/stringify.h>
moduleparam.h 16 #include <linux/stringify.h>
  /development/ndk/platforms/android-3/include/linux/
module.h 23 #include <linux/stringify.h>
moduleparam.h 16 #include <linux/stringify.h>

Completed in 2149 milliseconds

1 2 3 4 5