Searched refs:push (Results 1 - 25 of 1282) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Darray-push.js34 assertEquals(0, a.push());
35 assertEquals([], a, "after .push()");
37 assertEquals(1, a.push(1), "length after .push(1)");
38 assertEquals([1], a, "after .push(1)");
40 assertEquals(3, a.push(2, 3), "length after .push(2, 3)");
41 assertEquals([1, 2, 3], a, "after .push(2, 3)");
43 assertEquals(6, a.push(4, 5, 6),
44 "length after .push(
[all...]
H A Dstress-array-push.js33 results.push({});
H A Dfuzz-natives.js35 result.push(17);
36 result.push(-31);
37 result.push(new Array(100));
38 result.push(new Array(100003));
39 result.push(Number.MIN_VALUE);
40 result.push("whoops");
41 result.push("x");
42 result.push({"x": 1, "y": 2});
45 result.push(slowCaseObj);
46 result.push(functio
[all...]
/external/clang/test/Parser/
H A Dpragma-visibility2.c5 #define push(foo) push(default) macro
6 #pragma GCC visibility push(hidden)
16 _Pragma("GCC visibility push(hidden)");
H A Dpragma-pack.c11 #pragma pack(push)
14 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,)
15 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,)
18 #pragma pack(push,i)
19 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,i,
20 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,i,)
21 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,i,help)
23 #pragma pack(push,8)
24 /* expected-warning {{missing ')' after '#pragma pack'}}*/ #pragma pack(push,8,
25 /* expected-warning {{missing ')' after '#pragma pack'}}*/ #pragma pack(push,
[all...]
H A Dpragma-visibility.c5 #pragma GCC visibility push // expected-warning{{missing '(' after '#pragma visibility'}}
6 #pragma GCC visibility push( // expected-warning{{expected identifier in '#pragma visibility' - ignored}}
7 #pragma GCC visibility push(hidden // expected-warning{{missing ')' after '#pragma visibility' - ignoring}}
8 #pragma GCC visibility push(hidden)
/external/skia/tests/
H A DToUnicode.cpp37 glyphToUnicode.push(0); // 0
38 glyphToUnicode.push(0); // 1
39 glyphToUnicode.push(0); // 2
40 glyphsInSubset.push(3);
41 glyphToUnicode.push(0x20); // 3
42 glyphsInSubset.push(4);
43 glyphToUnicode.push(0x25); // 4
44 glyphsInSubset.push(5);
45 glyphToUnicode.push(0x27); // 5
46 glyphsInSubset.push(
[all...]
/external/clang/test/Sema/
H A Dpragma-pack-apple.c4 #pragma pack(push,1)
H A Dpragma-pack-3.c6 #pragma pack(push, 1)
9 #pragma pack(push, 4)
/external/chromium/chrome/browser/resources/net_internals/
H A Ddataview.js163 text.push('Data exported on: ' + (new Date()).toLocaleString());
164 text.push('');
165 text.push('Number of passively captured events: ' +
167 text.push('Number of actively captured events: ' +
169 text.push('');
171 text.push('Chrome version: ' + ClientInfo.version +
178 text.push('Platform: ' + platform[1]);
179 text.push('Command line: ' + ClientInfo.command_line);
181 text.push('');
183 text.push('Defaul
[all...]
/external/clang/test/SemaCXX/
H A Dauto-pragma.cpp8 #pragma GCC visibility push(hidden)
/external/valgrind/main/none/tests/x86/
H A Dpushpopseg.stdout.exp1 sp change after push = -2
3 fs after push and pop = 0003
4 sp change after push = -4
6 fs after push and pop = 0003
/external/clang/test/CodeGenCXX/
H A Dpr11797.cpp4 #pragma GCC visibility push(default)
H A Dpragma-pack-2.cpp8 #pragma pack(push, 2)
/external/v8/test/mjsunit/regress/
H A Dregress-1209.js31 nasty.push("a" + 0);
/external/clang/test/CodeGen/
H A Dpragma-visibility.c3 #pragma GCC visibility push(hidden)
12 #pragma GCC visibility push(hidden)
18 #pragma GCC visibility push(hidden)
H A D2007-04-05-PackedStruct.c3 #pragma pack(push, 2)
H A Dpragma-pack-3.c8 #pragma pack(push, 2)
/external/eigen/Eigen/src/Core/util/
H A DDisableStupidWarnings.h18 #pragma warning( push )
28 #pragma warning push
35 #pragma clang diagnostic push
/external/webkit/LayoutTests/fast/js/resources/
H A DJSON-stringify.js21 result.push(function(jsonObject){
24 result.push(function(jsonObject){
27 result.push(function(jsonObject){
30 result.push(function(jsonObject){
33 result.push(function(jsonObject){
36 result.push(function(jsonObject){
39 result.push(function(jsonObject){
42 result.push(function(jsonObject){
45 result.push(function(jsonObject){
48 result.push(functio
[all...]
/external/stlport/test/unit/
H A Dqueue_test.cpp36 q.push(42);
37 q.push(101);
38 q.push(69);
52 q.push(42);
53 q.push(101);
54 q.push(69);
H A Dstack_test.cpp36 s.push(42);
37 s.push(101);
38 s.push(69);
50 s.push(42);
51 s.push(101);
52 s.push(69);
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLElementCustom.cpp41 scope = scope->push(asObject(toJS(exec, globalObject(), element->ownerDocument())));
45 scope = scope->push(asObject(toJS(exec, globalObject(), form)));
48 return scope->push(asObject(toJS(exec, globalObject(), element)));
/external/webkit/Tools/Scripts/
H A Drun-webkit-tests72 push(@ARGV, "--verbose");
77 push(@ARGV, "--results-directory");
79 push(@ARGV, sourceDir() . "/layout-test-results");
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DStackTest.java41 s.push("blah");
45 s.push(null);
58 s.push(item1);
61 s.push(item2);
62 s.push(item3);
67 s.push(null);
80 s.push(item1);
81 s.push(item2);
99 s.push(null);
119 * @tests java.util.Stack#push(jav
[all...]

Completed in 571 milliseconds

1234567891011>>