/external/chromium/chrome/browser/resources/net_internals/ |
D | dataview.js | 163 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('Default address family: ' + [all …]
|
D | util.js | 85 currentNames.push(classNameToAddOrRemove); 125 out.push(str); 166 this.rows_.push([]); 177 r.push(cell); 198 this.rows_[0].push(cell); 248 headerSpacerRow.push(new TablePrinterCell(spacerStr)); 268 out.push(titleSpacerStr); 269 out.push('\n'); 270 out.push(this.title_); 271 out.push('\n'); [all …]
|
/external/v8/test/mjsunit/ |
D | array-push.js | 34 assertEquals(0, a.push()); 37 assertEquals(1, a.push(1), "length after .push(1)"); 40 assertEquals(3, a.push(2, 3), "length after .push(2, 3)"); 43 assertEquals(6, a.push(4, 5, 6), 48 assertEquals(10, a.push(7, 8, 9, 10), 53 assertEquals(15, a.push(11, 12, 13, 14, 15), 58 assertEquals(21, a.push(16, 17, 18, 19, 20, 21), 63 assertEquals(28, a.push(22, 23, 24, 25, 26, 27, 28), 75 assertEquals(1, a.push(1)); 76 assertEquals(2, a.push(2)); [all …]
|
D | fuzz-natives.js | 35 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(function () { return 8; }); [all …]
|
D | cyclic-array-to-string.js | 34 a1.push(a1); 38 a1.push(1); 42 a1.push(a1); 49 a1.push(a2); 50 a1.push(a2); 54 a2.push(a1); 61 a1.push(a2);
|
/external/skia/tests/ |
D | ToUnicode.cpp | 39 glyphToUnicode.push(0); // 0 in TestToUnicode() 40 glyphToUnicode.push(0); // 1 in TestToUnicode() 41 glyphToUnicode.push(0); // 2 in TestToUnicode() 42 glyphsInSubset.push(3); in TestToUnicode() 43 glyphToUnicode.push(0x20); // 3 in TestToUnicode() 44 glyphsInSubset.push(4); in TestToUnicode() 45 glyphToUnicode.push(0x25); // 4 in TestToUnicode() 46 glyphsInSubset.push(5); in TestToUnicode() 47 glyphToUnicode.push(0x27); // 5 in TestToUnicode() 48 glyphsInSubset.push(6); in TestToUnicode() [all …]
|
/external/webkit/LayoutTests/fast/js/resources/ |
D | JSON-parse.js | 4 result.push(function(jsonObject){ 8 result.push(function(jsonObject){ 12 result.push(function(jsonObject){ 15 result.push(function(jsonObject){ 18 result.push(function(jsonObject){ 22 result.push(function(jsonObject){ 26 result.push(function(jsonObject){ 29 result.push(function(jsonObject){ 33 result.push(function(jsonObject){ 36 result.push(function(jsonObject){ [all …]
|
D | JSON-stringify.js | 21 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(function(jsonObject){ [all …]
|
/external/qemu/distrib/jpeg-6b/ |
D | jmemdosa.asm | 44 push bp ; linkage 46 push si ; save all registers for safety 47 push di define 48 push bx 49 push cx 50 push dx define 51 push es 52 push ds define 79 push bp ; linkage 81 push si ; save all registers for safety [all …]
|
/external/jpeg/ |
D | jmemdosa.asm | 44 push bp ; linkage 46 push si ; save all registers for safety 47 push di define 48 push bx 49 push cx 50 push dx define 51 push es 52 push ds define 79 push bp ; linkage 81 push si ; save all registers for safety [all …]
|
/external/clang/test/Parser/ |
D | pragma-pack.c | 11 #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,8,) [all …]
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 85 stack.push(valueFactory.createReferenceValueNull()); in visitSimpleInstruction() 97 stack.push(valueFactory.createIntegerValue(simpleInstruction.constant)); in visitSimpleInstruction() 102 stack.push(valueFactory.createLongValue(simpleInstruction.constant)); in visitSimpleInstruction() 108 stack.push(valueFactory.createFloatValue((float)simpleInstruction.constant)); in visitSimpleInstruction() 113 stack.push(valueFactory.createDoubleValue((double)simpleInstruction.constant)); in visitSimpleInstruction() 122 stack.push(valueFactory.createIntegerValue()); in visitSimpleInstruction() 128 stack.push(valueFactory.createLongValue()); in visitSimpleInstruction() 134 stack.push(valueFactory.createFloatValue()); in visitSimpleInstruction() 140 stack.push(valueFactory.createDoubleValue()); in visitSimpleInstruction() 147 stack.push(arrayReference.arrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction() [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_amd64.S | 7 push %rax 10 push %rcx 13 push %rdx 16 push %rsi 19 push %rdi 22 push %r8 25 push %r9 28 push %r10 31 push %r11 35 push %rbx # non-scratch [all …]
|
/external/apache-harmony/support/src/test/java/tests/util/ |
D | CallVerificationStack.java | 87 this.callStack.push(eles[i]); in pushCallStack() 119 public Object push(Object o) { in push() method in CallVerificationStack 121 return super.push(o); in push() 130 public void push(boolean val) { in push() method in CallVerificationStack 131 this.push(new BaseTypeWrapper(val)); in push() 140 public void push(char val) { in push() method in CallVerificationStack 141 this.push(new BaseTypeWrapper(val)); in push() 150 public void push(double val) { in push() method in CallVerificationStack 151 this.push(new BaseTypeWrapper(val)); in push() 160 public void push(float val) { in push() method in CallVerificationStack [all …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | StackTest.java | 41 s.push("blah"); in test_empty() 45 s.push(null); in test_empty() 58 s.push(item1); in test_peek() 61 s.push(item2); in test_peek() 62 s.push(item3); in test_peek() 67 s.push(null); in test_peek() 80 s.push(item1); in test_pop() 81 s.push(item2); in test_pop() 99 s.push(null); in test_pop() 135 s.push(item1); in test_searchLjava_lang_Object() [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
D | options.js | 192 template.push('<tr style = "height: 22px;">'); 193 template.push('<td id = "keyword_value" class = "cusTopicsClass">'); 194 template.push('<textarea class="noborder" readonly>'); 195 template.push(keywords[i]); 196 template.push('</textarea>'); 197 template.push('<td class = "suppr" onclick = "delCusTopic(this)" '); 198 template.push('title="'); 199 template.push(title); 200 template.push('">'); 201 template.push('</td>'); [all …]
|
/external/v8/src/ |
D | json.js | 78 partial.push(strP); 111 partial.push(member); 123 partial.push(member); 184 builder.push("[]"); 190 builder.push("["); 201 builder.push(%QuoteJSONString(val)); 205 builder.push(%QuoteJSONStringComma(val)); 207 builder.push(","); 216 builder.push(JSON_NUMBER_TO_STRING(val)); 218 builder.push(","); [all …]
|
/external/qemu-pc-bios/vgabios/ |
D | clext.c | 411 push ds 412 push si 413 push cs 427 push ax 428 push dx 442 push bp 467 push si 468 push ax 469 push bx 470 push ds [all …]
|
D | vbe.c | 107 push dx 108 push ax 135 push eax 136 push ecx 137 push edx 138 push esi 139 push edi 146 push eax 184 push dx 185 push ax [all …]
|
/external/chromium-trace/trace-viewer/src/ |
D | trace_event_importer.js | 55 this.model_.metadata.push({name: fieldName, 100 this.allAsyncEvents_.push({ 121 ctr.seriesNames.push(seriesName); 122 ctr.seriesColors.push( 126 this.model_.importErrors.push('Expected counter ' + event.name + 135 ctr.timestamps.push(event.ts / 1000); 139 ctr.samples.push(0); 142 ctr.samples.push(event.args[seriesName]); 162 this.model_.importErrors.push( 171 this.model_.importErrors.push( [all …]
|
D | linux_perf_power_parser.js | 45 powerCounter.seriesNames.push('state'); 46 powerCounter.seriesColors.push( 49 powerCounter.timestamps.push(ts); 50 powerCounter.samples.push(cpuState); 57 powerCounter.seriesNames.push('state'); 58 powerCounter.seriesColors.push( 63 powerCounter.samples.push(cpuState); 65 powerCounter.samples.push(0); 66 powerCounter.timestamps.push(ts); 74 powerCounter.seriesNames.push('state'); [all …]
|
D | linux_perf_bus_parser.js | 54 ctr.seriesNames.push('value'); 55 ctr.seriesColors.push( 60 ctr.timestamps.push(ts); 61 ctr.samples.push(r_bw); 67 ctr.seriesNames.push('value'); 68 ctr.seriesColors.push( 73 ctr.timestamps.push(ts); 74 ctr.samples.push(w_bw);
|
/external/clang/test/CodeGenCXX/ |
D | pragma-visibility.cpp | 3 #pragma GCC visibility push(hidden) 11 #pragma GCC visibility push(hidden) 19 #pragma GCC visibility push(hidden) 27 #pragma GCC visibility push(hidden) 34 #pragma GCC visibility push(hidden) 42 #pragma GCC visibility push(hidden) 50 #pragma GCC visibility push(hidden) 57 #pragma GCC visibility push(default) 58 #pragma GCC visibility push(hidden)
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t026actions.g | 14 this.xlog.push("init;"); 17 this.xlog.push("after;"); 22 this.xlog.push("catch;"); 26 this.xlog.push("finally;"); 34 this.xlog.push("action;"); 35 this.xlog.push([$text, $type, $line, $pos, $index, $channel, $start, $stop].join(" ")); 37 this.xlog.push(this.foobar);
|
/external/openssl/crypto/perlasm/ |
D | cbc.pl | 44 &push("ebp"); 45 &push("ebx"); 46 &push("esi"); 47 &push("edi"); 62 &push($out); 63 &push($in); 64 &push($out); # used in decrypt for iv[1] 65 &push($in); # used in decrypt for iv[0] 79 { &mov("eax", &wparam($p3)); &push("eax"); } 80 else { &push("ecx"); } [all …]
|