Searched defs:stringify (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/
H A Dmul-exhaustive-part1.js31 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));
H A Dmul-exhaustive-part10.js31 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));
H A Dmul-exhaustive-part2.js31 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));
H A Dmul-exhaustive-part3.js31 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));
H A Dmul-exhaustive-part4.js31 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));
H A Dmul-exhaustive-part5.js31 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));
H A Dmul-exhaustive-part6.js31 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));
H A Dmul-exhaustive-part7.js31 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));
H A Dmul-exhaustive-part8.js31 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));
H A Dmul-exhaustive-part9.js31 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));
/external/v8/test/mjsunit/
H A Dmul-exhaustive.js31 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));
/external/qemu/
H A Ddyngen-exec.h69 #define stringify(s) tostring(s) macro
H A Dosdep.h16 #define stringify(s) tostring(s) macro
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
H A Djson2.js19 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,
353 // If the JSON object does not yet have a stringify method, give it one.
355 if (typeof JSON.stringify !== 'function') {
356 JSON.stringify
[all...]
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/mathmaps/
H A Dmath_map.js72 cvox.MathMap.prototype.stringify = function() {
73 return JSON.stringify(this);
/external/chromium_org/content/test/data/indexeddb/
H A Dcommon.js80 function stringify(v) function
119 fail(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Dprototype-1.7.js176 typeof JSON.stringify === 'function' &&
177 JSON.stringify(0) === '0' &&
178 typeof JSON.stringify(Prototype.K) === 'undefined';
273 function stringify(object) { function
274 return JSON.stringify(object);
349 toJSON: NATIVE_JSON_STRINGIFY_SUPPORT ? stringify : toJSON,
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
H A Dgenerate_builtins.py51 def stringify(s): function
71 print stringify(v), ';'
107 print stringify(proto_ir), ';'
/external/chromium_org/v8/test/webkit/resources/
H A Dstandalone-pre.js90 function stringify(v) function
115 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
129 var unevaledString = JSON.stringify(b);
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py51 def stringify(s): function
71 print stringify(v), ';'
107 print stringify(proto_ir), ';'
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmapFactory.java74 String optionsString = stringify(options);
104 private static String stringify(BitmapFactory.Options options) { method in class:ShadowBitmapFactory
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DTestUtil.java17 org.junit.Assert.assertEquals(stringify(expected), stringify(actual));
20 public static String stringify(Collection<?> collection) { method in class:TestUtil
/external/valgrind/main/VEX/test/
H A Dtest-amd64.c53 #define stringify(s) tostring(s) macro
H A Dtest-i386.c43 #define stringify(s) tostring(s) macro
/external/robolectric/lib/main/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...

Completed in 415 milliseconds

12