HomeSort by relevance Sort by last modified time
    Searched full:push (Results 101 - 125 of 1534) sorted by null

1 2 3 45 6 7 8 91011>>

  /bootable/recovery/applypatch/
imgdiff_test.sh 78 $ADB push $ANDROID_PRODUCT_OUT/system/bin/applypatch $WORK_DIR/applypatch
90 $ADB push $tmpdir/source $WORK_DIR/source || fail "source push failed"
92 $ADB push $tmpdir/patch $WORK_DIR/patch || fail "patch push failed"
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 125 private void push(int[] lengths, Object[] values) { method in class:DerOutputStream
153 push(null, values); method
169 push(compLens, values); method
190 push(compLens, values); method
240 push(compLens, values); method
  /dalvik/vm/mterp/x86-atom/
OP_INSTANCE_OF.S 63 movl %edx, -8(%esp) # push parameter obj->clazz
64 movl %ecx, -4(%esp) # push parameter resolved class
106 movl %ecx, -12(%esp) # push parameter glue->method->clazz
107 movl %eax, -8(%esp) # push parameter CCCC; type index
108 movl $$1, -4(%esp) # push parameter true
OP_DOUBLE_TO_LONG.S 34 fldl (rFP, rINST, 4) # push vB to floating point stack
35 fildll .LvaluePosInfLong # push max int value
36 fildll .LvalueNegInfLong # push min int value
OP_FLOAT_TO_LONG.S 34 flds (rFP, rINST, 4) # push vB to floating point stack
35 fildll .LvaluePosInfLong # push max int value
36 fildll .LvalueNegInfLong # push min int value
OP_FILLED_NEW_ARRAY.S 60 movl $$0, -8(%esp) # push parameter false
61 movl %ecx, -12(%esp) # push parameter BBBB
65 movl %edx, -16(%esp) # push parameter glue->method->clazz
85 movl rINST, -12(%esp) # push parameter length
86 movl %eax, -16(%esp) # push parameter descriptor[1]
87 movl $$ALLOC_DONT_TRACK, -8(%esp) # push parameter to allocate flags
  /development/pdk/pndk/samples/sample/
README 33 adb push hello system/app
50 adb push hello_cpp system/app
81 adb push libhello-shared.so system/lib
91 adb push use_hellolibrary-so /system/app
108 adb push use_hellolibrary-a system/app
  /external/webkit/JavaScriptCore/runtime/
ScopeChain.h 72 // Before calling "push" on a bare ScopeChainNode, a client should
83 ScopeChainNode* push(JSObject*);
94 inline ScopeChainNode* ScopeChainNode::push(JSObject* o) function in class:JSC::ScopeChainNode
202 void push(JSObject* o) { m_node = m_node->push(o); } function in class:JSC::ScopeChain
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/Array/
splice1.js 55 splicedArray.push(testArray[i]);
61 removedArray.push(testArray[i]);
64 for (i = 0; i < elements.length; i++) splicedArray.push(elements[i]);
67 splicedArray.push(testArray[i]);
91 actualSpliced.push(testArray[i]);
splice2.js 55 splicedArray.push(testArray[i]);
59 removedArray.push(testArray[i]);
61 for (i = 0; i < elements.length; i++) splicedArray.push(elements[i]);
64 splicedArray.push(testArray[i]);
87 actualSpliced.push(testArray[i]);
  /external/v8/src/arm/
builtins-arm.cc 59 __ push(r1);
521 __ push(r0); // Smi-tagged arguments count.
522 __ push(r1); // Constructor function.
697 __ push(r1); // argument for Runtime_NewObject
704 __ push(r4);
706 // Push the function and the allocated receiver from the stack.
711 __ push(r1); // Constructor function.
712 __ push(r4); // Receiver.
743 __ push(ip);
836 // Clear the context before we push it when entering the JS frame
    [all...]
  /external/webkit/WebKitTools/Scripts/
webkitdirs.pm 242 push(@args, '--debug') if $configuration eq "Debug";
243 push(@args, '--release') if $configuration eq "Release";
244 push(@args, '--32-bit') if $architecture ne "x86_64";
245 push(@args, '--qt') if isQt();
246 push(@args, '--symbian') if isSymbian();
247 push(@args, '--gtk') if isGtk();
248 push(@args, '--wx') if isWx();
249 push(@args, '--chromium') if isChromium();
250 push(@args, '--inspector-frontend') if isInspectorFrontend();
372 push @coverageSupportOptions, "GCC_GENERATE_TEST_COVERAGE_FILES=YES"
    [all...]
update-webkit 71 push @svnOptions, '-q' if $quiet;
74 push @svnOptions, qw(--accept postpone) if isSVNVersion16OrNewer();
104 push @conflictedChangeLogs, $filename if basename($filename) eq "ChangeLog";
  /external/skia/src/animator/
SkScript.cpp 195 fSuppressStack.push(noInitialSuppress);
196 *fOpStack.push() = kParen;
217 if (lastPush == false) // unary plus, don't push an operator
276 *fOpStack.push() = kParen; // push even if eval is suppressed
316 *fOpStack.push() = (SkOp) (kLogicalNot | kArtificialOp);
317 fOpStack.push(op);
319 *fOpStack.push() = (SkOp) (kFlipOps | kArtificialOp);
417 *fBraceStack.push() = kFunctionBrace;
497 *fOpStack.push() = kParen
    [all...]
SkScriptTokenizer.cpp 120 fBranchStack.push(branch);
121 *fOpStack.push() = (Op) kParen;
221 if (lastPush == false) // unary plus, don't push an operator
280 *fOpStack.push() = (Op) kParen;
318 *fOpStack.push() = (Op) (kLogicalNot | kArtificialOp);
319 fOpStack.push(op);
321 *fOpStack.push() = (Op) (kFlipOps | kArtificialOp);
379 *fBraceStack.push() = kFunctionBrace;
435 *fOpStack.push() = (Op) kParen;
436 *fBraceStack.push() = kFunctionBrace
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
Stack.java 22 * stack of objects. It enables users to pop to and push from the stack,
69 * @see #push
92 public E push(E object) { method in class:Stack
  /external/icu4c/test/perf/perldriver/
PerfFramework.pm 133 push(@iterPerPass, shift(@res));
134 push(@noopers, shift(@res));
137 push(@noevents, shift(@res));
146 push(@timedata, $ds);
179 #push(@ms, $b[0]);
180 push(@ms, shift(@b));
263 push(@out, $_);
283 push(@$data, $d);
284 push(@$data, ''); # placeholder for end data
292 push(@results, $data)
    [all...]
  /external/skia/src/core/
SkEdgeBuilder.cpp 19 fList.push(edge);
28 fList.push(edge);
37 fList.push(edge);
  /external/webkit/SunSpider/
make-hosted 54 push @tests, $_;
58 push @categories, $category;
79 push @testContents, $output;
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSettingsTests.java 78 * Test that POP accounts aren't displayed with a push option
92 * Test that IMAP accounts aren't displayed with a push option
106 * Test that EAS accounts are displayed with a push option
AccountSetupOptionsTests.java 47 * Test that POP accounts aren't displayed with a push option
60 * Test that IMAP accounts aren't displayed with a push option
73 * Test that EAS accounts are displayed with a push option
  /sdk/emulator/qtools/
read_method.cpp 36 void push(frame *pframe);
41 void Stack::push(frame *pframe) { function in class:Stack
129 pStack->push(pframe);
  /dalvik/docs/
prettify.js 320 out.push('<', name);
324 out.push(' ');
327 out.push('>');
332 out.push('<\/', name, '>');
336 out.push(node.name.toLowerCase(), '="', attribToHtml(node.value), '"');
339 out.push(textToHtml(node.nodeValue));
395 out.push(plainText.substring(pos, i));
403 out.push(SPACES.substring(0, nSpaces));
415 out.push(plainText.substring(pos));
456 sourceBuf.push(match.substring(9, match.length - 3))
    [all...]
  /external/v8/test/mjsunit/
array-iteration.js 58 assertArrayEquals([], a.filter(function(n, index, array) { array.push(n+1); return n == 2; }));
87 a.forEach(function(n) { result.push(this.value); }, o);
101 a.forEach(function(n, index, array) { array.push(n+1); count++; });
141 assertTrue(a.every(function(n, index, array) { array.push(n + 1); return n == 1;}));
180 assertArrayEquals(result, a.map(function(n, index, array) { array.push(n); return n + 1;}));
215 assertFalse(a.some(function(n, index, array) { array.push(42); return n == 42; }));
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 54 * TransactionService by passing the push-data to it.
71 // Get raw PDU push-data from the message and parse it
77 Log.e(TAG, "Invalid PUSH data");
139 Log.e(TAG, "Failed to save the data from PUSH: type=" + type, e);
145 Log.v(TAG, "PUSH Intent processed.");
157 Log.v(TAG, "Received PUSH Intent: " + intent);

Completed in 555 milliseconds

1 2 3 45 6 7 8 91011>>