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

1 2 3 4 5 6 7 8 910

  /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...]
script-line-number.js 23 shouldBe(stringify(getLineFromError(error)), stringify(expectedLine));
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...]
  /external/valgrind/main/VEX/test/
test-amd64-muldiv.h 11 stringify(OP)"b %b2\n\t"
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
29 stringify(OP) "w %w3\n\t"
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
47 stringify(OP) "l %3\n\t"
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
65 stringify(OP) "q %3\n\t"
71 stringify(OP) "q", op0h, op0, s1, resh, res, flags & CC_MASK);
test-i386-muldiv.h 11 stringify(OP)"b %b2\n\t"
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
29 stringify(OP) "w %w3\n\t"
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
47 stringify(OP) "l %3\n\t"
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
test-i386-shift.h 13 stringify(OP) size " %" size "2, %" size "0\n\t" \
22 stringify(OP) size " %%cl, %" size "0\n\t" \
39 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
52 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
59 stringify(OP) size " %%cl, %" size "5, %" size "0\n\t" \
75 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK);
88 stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK);
104 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK);
test-amd64-shift.h 14 stringify(OP) size " %" size "2, %" size "0\n\t" \
23 stringify(OP) size " %%cl, %" size "0\n\t" \
40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
53 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
66 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
73 stringify(OP) size " %%cl, %" size "5, %" size "0\n\t" \
89 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK);
102 stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK);
118 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK);
test-i386.h 12 stringify(OP) size " %" size "2, %" size "0\n\t" \
21 stringify(OP) size " %" size "0\n\t" \
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
64 stringify(OP) "b", s0, res, iflags, flags & CC_MASK);
79 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
93 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
107 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK);
test-amd64.h 11 stringify(OP) size " %" size "2, %" size "0\n\t" \
20 stringify(OP) size " %" size "0\n\t" \
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK);
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
61 stringify(OP) "b", s0, res, iflags, flags & CC_MASK);
71 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
81 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
91 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
101 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK)
    [all...]
  /external/v8/test/mjsunit/
json.js 226 // Stringify
228 assertEquals("true", JSON.stringify(true));
229 assertEquals("false", JSON.stringify(false));
230 assertEquals("null", JSON.stringify(null));
231 assertEquals("false", JSON.stringify({toJSON: function () { return false; }}));
232 assertEquals("4", JSON.stringify(4));
233 assertEquals('"foo"', JSON.stringify("foo"));
234 assertEquals("null", JSON.stringify(Infinity));
235 assertEquals("null", JSON.stringify(-Infinity));
236 assertEquals("null", JSON.stringify(NaN))
    [all...]
mul-exhaustive.js 31 function stringify(n) { function
43 assertEquals(expected, testEval(stringify(x) + " * y", x, y));
44 assertEquals(expected, testEval("x * " + stringify(y), x, y));
45 assertEquals(expected, testEval(stringify(x) + " * " + stringify(y), x, y));
    [all...]
  /external/webkit/LayoutTests/fast/url/script-tests/
trivial-segments.js 13 "'" + JSON.stringify(cases[i][1]) + "'");
  /external/quake/quake/src/QW/client/
gl_vidlinux.c 41 #define stringify(m) { #m, m } macro
55 stringify(MOUSE_MICROSOFT),
56 stringify(MOUSE_MOUSESYSTEMS),
57 stringify(MOUSE_MMSERIES),
58 stringify(MOUSE_LOGITECH),
59 stringify(MOUSE_BUSMOUSE),
60 stringify(MOUSE_PS2),
gl_vidlinux_svga.c 41 #define stringify(m) { #m, m } macro
55 stringify(MOUSE_MICROSOFT),
56 stringify(MOUSE_MOUSESYSTEMS),
57 stringify(MOUSE_MMSERIES),
58 stringify(MOUSE_LOGITECH),
59 stringify(MOUSE_BUSMOUSE),
60 stringify(MOUSE_PS2),
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestUtil.java 17 org.junit.Assert.assertEquals(stringify(expected), stringify(actual)); method
20 public static String stringify(Collection<?> collection) { method in class:TestUtil
  /external/qemu/
dyngen-exec.h 69 #define stringify(s) tostring(s) macro
  /external/webkit/Source/WebCore/inspector/front-end/
TestController.js 38 var message = typeof result === "undefined" ? "\"<undefined>\"" : JSON.stringify(result);
AuditFormatters.js 55 throw "Invalid value or formatter: " + type + JSON.stringify(value);
Settings.js 104 window.localStorage[key] = JSON.stringify(value);
  /external/quake/quake/src/WinQuake/
gl_vidlinux.cpp 42 #define stringify(m) { #m, m } macro
56 stringify(MOUSE_MICROSOFT),
57 stringify(MOUSE_MOUSESYSTEMS),
58 stringify(MOUSE_MMSERIES),
59 stringify(MOUSE_LOGITECH),
60 stringify(MOUSE_BUSMOUSE),
61 stringify(MOUSE_PS2),
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
AccountWithDataSetTest.java 42 // stringify() & unstringify
43 AccountWithDataSet a1r = AccountWithDataSet.unstringify(a1.stringify());
44 AccountWithDataSet a2r = AccountWithDataSet.unstringify(a2.stringify());
45 AccountWithDataSet a3r = AccountWithDataSet.unstringify(a3.stringify());
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 8 console.log("info: " + JSON.stringify(info));
9 console.log("tab: " + JSON.stringify(tab));
48 console.log(JSON.stringify(info));
  /external/v8/test/mjsunit/regress/
regress-753.js 28 // Test that JSON.stringify correctly truncates floating point numbers.
35 assertEquals(JSON.stringify(obj,null, 5.99999), JSON.stringify(obj,null, 5));
regress-752.js 28 // Test that JSON.stringify correctly unwraps Boolean objects.
36 assertEquals("[false]", JSON.stringify([42], replacer));
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
options.js 252 window.localStorage.setItem('keywords', JSON.stringify(keywords));
254 window.localStorage.setItem('keywords', JSON.stringify(tempCusTopics));
261 window.localStorage.setItem('topics', JSON.stringify(topicArr));
383 window.localStorage.setItem('keywords', JSON.stringify(keywords));

Completed in 2515 milliseconds

1 2 3 4 5 6 7 8 910