/external/v8/test/mjsunit/ |
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/qemu/ |
dyngen-exec.h | 69 #define stringify(s) tostring(s) macro
|
osdep.h | 16 #define stringify(s) tostring(s) macro
|
/external/webkit/LayoutTests/fast/js/resources/ |
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...] |
js-test-pre.js | 73 function stringify(v) function 115 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + "."); 161 shouldBe(actual, stringify(expected));
|
standalone-pre.js | 60 function stringify(v) function 85 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
|
/external/webkit/LayoutTests/http/tests/cookies/resources/ |
cookies-test-pre.js | 68 function stringify(v) function 93 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
|
/external/webkit/PerformanceTests/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...] |
/external/mesa3d/src/glsl/builtins/tools/ |
generate_builtins.py | 27 def stringify(s): function 47 print stringify(v), ';' 80 print stringify(proto_ir), ';'
|
/external/llvm/lib/MC/MCDisassembler/ |
EDInst.cpp | 59 int EDInst::stringify() { function in class:EDInst 72 if (stringify()) 172 if (stringify())
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
AccountWithDataSet.java | 147 public String stringify() { method in class:AccountWithDataSet 152 * Unpack a string created by {@link #stringify}.
|
/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),
|
gl_vidlinux_x11.c | 53 #define stringify(m) { #m, m } macro
|
vid_svgalib.c | 37 #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/ |
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),
|
vid_svgalib.cpp | 37 #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/ |
JSONObject.cpp | 80 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));
|