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

/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/webkit/LayoutTests/fast/js/resources/
H A Djson2-es5-compat.js11 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,
349 // If the JSON object does not yet have a stringify method, give it one.
351 if (typeof JSON.stringify !== 'function') {
352 JSON.stringify
[all...]
H A Djs-test-pre.js73 function stringify(v) function
115 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
161 shouldBe(actual, stringify(expected));
H A Dstandalone-pre.js60 function stringify(v) function
85 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
/external/webkit/LayoutTests/http/tests/cookies/resources/
H A Dcookies-test-pre.js68 function stringify(v) function
93 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
/external/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/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py27 def stringify(s): function
47 print stringify(v), ';'
80 print stringify(proto_ir), ';'
/external/llvm/lib/MC/MCDisassembler/
H A DEDInst.cpp59 int EDInst::stringify() { function in class:EDInst
72 if (stringify())
172 if (stringify())
/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/quake/quake/src/QW/client/
H A Dgl_vidlinux.c41 #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),
H A Dgl_vidlinux_svga.c41 #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),
H A Dgl_vidlinux_x11.c53 #define stringify(m) { #m, m } macro
H A Dvid_svgalib.c37 #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/quake/quake/src/WinQuake/
H A Dgl_vidlinux.cpp42 #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),
H A Dvid_svgalib.cpp37 #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/webkit/Source/JavaScriptCore/runtime/
H A DJSONObject.cpp80 Local<Unknown> stringify(Handle<Unknown>);
247 Local<Unknown> Stringifier::stringify(Handle<Unknown> value) function in class:JSC::Stringifier
410 throwError(m_exec, createTypeError(m_exec, "JSON.stringify cannot serialize cyclic structures."));
564 // Holder object may have moved if the call to stringify pushed a new Holder onto
591 stringify JSONProtoFuncStringify DontEnum|Function 3
839 return throwVMError(exec, createError(exec, "No input to stringify"));
844 return JSValue::encode(Stringifier(exec, replacer, space).stringify(value).get());
850 Local<Unknown> result = Stringifier(exec, Local<Unknown>(exec->globalData(), jsNull()), Local<Unknown>(exec->globalData(), jsNumber(indent))).stringify(Local<Unknown>(exec->globalData(), value));

Completed in 629 milliseconds