HomeSort by relevance Sort by last modified time
    Searched full:stringify (Results 26 - 50 of 485) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/regress/
regress-2374.js 33 assertEquals(JSON.stringify(obj), JSON.stringify(obj2));
34 assertEquals(JSON.stringify(obj, null, 0), JSON.stringify(obj2));
  /external/valgrind/VEX/test/
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-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.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/valgrind/none/tests/x86-darwin/
bug341419.c 11 #define stringify(x) #x macro
20 fprintf(stderr, "%s:%d: ASSERT(" stringify(a) \
21 " " stringify(op) " " stringify(b) ")\n", \
24 fprintf(stderr, "%s:%d: FAILED ASSERT((" stringify(a) \
25 "=0x%016llx) " stringify(op) " (" stringify(b) "=0x%016llx))\n", \
37 fprintf(stderr, "%s:%d: ASSERT(" stringify(e) ")\n", \
40 fprintf(stderr, "%s:%d: FAILED ASSERT(" stringify(e) ")\n", \
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/
simpledom.cpp 21 // 3. Stringify the DOM
  /external/v8/test/mjsunit/harmony/
proxies-json.js 33 // JSON.stringify
38 assertEquals(expected, JSON.stringify(object));
40 assertEquals(expected, JSON.stringify(object, undefined, 0));
98 assertEquals(expected2, JSON.stringify(parent2));
100 assertEquals(expected2, JSON.stringify(parent2, undefined, 0));
212 JSON.stringify(parent7));
214 JSON.stringify(parent7));
238 assertEquals(undefined, JSON.stringify(proxy));
252 assertEquals('{"foo":42}', JSON.stringify(proxy));
273 assertEquals('[42]', JSON.stringify(proxy))
    [all...]
  /bootable/recovery/
common.h 36 #define STRINGIFY(x) #x
37 #define EXPAND(x) STRINGIFY(x)
  /frameworks/base/libs/hwui/
OpDumper.cpp 24 #define STRINGIFY(n) #n,
25 static const char* sOpNameLut[] = BUILD_FULL_OP_LUT(STRINGIFY);
  /external/chromium-trace/catapult/dashboard/dashboard/elements/
chart-container-test.html 114 encodeURIComponent(JSON.stringify(params)));
115 testing_common.addXhrMock(graphQuery, JSON.stringify(GRAPH_JSON));
119 JSON.stringify(GRAPH_REVISION_JSON));
147 encodeURIComponent(JSON.stringify(params)));
148 testing_common.addXhrMock(graphQuery, JSON.stringify(graphJson));
nav-bar-test.html 31 testing_common.addXhrMock('*', JSON.stringify(mockResponse));
  /external/chromium-trace/catapult/tracing/tracing/extras/importer/gcloud_trace/
gcloud_trace_importer_test.html 25 JSON.stringify(trace));
61 JSON.stringify(trace));
90 JSON.stringify({projectId: 'My Project'})));
92 JSON.stringify({projectId: '56', traceId: '34'})));
94 JSON.stringify({wrongjson: '33'})));
  /external/v8/test/webkit/
Object-defineProperties-expected.txt 32 PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
33 PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
34 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
35 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:false}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
36 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
Object-create-expected.txt 33 PASS JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
34 PASS JSON.stringify(Object.create({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
35 PASS JSON.stringify(Object.create({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
36 PASS JSON.stringify(Object.create(null,{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
Object-create.js 30 shouldBe("JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}}))", '\'{"property":"foo","property2":"foo"}\'');
31 shouldBe("JSON.stringify(Object.create({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}}))", '\'{"property":"foo","property2":"foo"}\'');
32 shouldBe("JSON.stringify(Object.create({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}}))", '\'{"property2":"foo"}\'');
33 shouldBe("JSON.stringify(Object.create(null,{property:{value:'foo'}, property2:{value:'foo', enumerable:true}}))", '\'{"property2":"foo"}\'');
  /external/valgrind/none/tests/amd64-darwin/
bug341419.c 11 #define stringify(x) #x macro
20 fprintf(stderr, "%s:%d: ASSERT(" stringify(a) \
21 " " stringify(op) " " stringify(b) ")\n", \
24 fprintf(stderr, "%s:%d: FAILED ASSERT((" stringify(a) \
25 "=0x%016llx) " stringify(op) " (" stringify(b) "=0x%016llx))\n", \
37 fprintf(stderr, "%s:%d: ASSERT(" stringify(e) ")\n", \
40 fprintf(stderr, "%s:%d: FAILED ASSERT(" stringify(e) ")\n", \
  /external/robolectric/v1/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/v8/test/mjsunit/
json-stringify-recursive.js 38 JSON.stringify(a);
49 assertThrows(function() { JSON.stringify(deepArray); }, RangeError);
54 assertThrows(function() { JSON.stringify(deepObject); }, RangeError);
json.js 233 // Stringify
236 assertEquals(expected, JSON.stringify(input));
237 assertEquals(expected, JSON.stringify(input, null, 0));
257 assertEquals("[\n 1,\n 2,\n 3\n]", JSON.stringify([1, 2, 3], null, 1));
258 assertEquals("[\n 1,\n 2,\n 3\n]", JSON.stringify([1, 2, 3], null, 2));
260 JSON.stringify([1, 2, 3], null, new Number(2)));
261 assertEquals("[\n^1,\n^2,\n^3\n]", JSON.stringify([1, 2, 3], null, "^"));
263 JSON.stringify([1, 2, 3], null, new String("^")));
265 JSON.stringify([1, 2, [3, [4], 5], 6, 7], null, 1));
266 assertEquals("[]", JSON.stringify([], null, 1))
    [all...]
debug-step-into-json.js 32 var result = JSON.stringify(o); // Break 1.
  /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-trace/catapult/perf_insights/perf_insights/mre/
reduce_map_results_cmdline.html 54 console.log('JOB_RESULTS: ' + JSON.stringify(jobResults.pairs,
57 console.log('JOB_FAILURE: ' + JSON.stringify(failure.asDict()));
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/about_tracing/
record_controller_test.html 47 return JSON.stringify(testData);
55 var testDataString = JSON.stringify(testData);
  /external/jemalloc/test/unit/
quarantine.c 5 #define STRINGIFY(x) STRINGIFY_HELPER(x)
9 STRINGIFY(QUARANTINE_SIZE);
  /external/strace/
mpers_type.h 30 # define STRINGIFY(a) #a
31 # define DEF_MPERS_TYPE(args) STRINGIFY(args.h)

Completed in 630 milliseconds

12 3 4 5 6 7 8 91011>>