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

<<11121314151617181920>>

  /packages/apps/Email/res/xml/
stores.xml 37 push="true" visibleLimitDefault="-1" visibleLimitIncrement="-1" />
  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_DIRECT.S 75 movl $$METHOD_DIRECT, -8(%esp) # push parameter method type
77 movl %eax, -12(%esp) # push parameter reference
80 movl %edx, (%esp) # push parameter clazz
OP_INVOKE_SUPER.S 84 movl %eax, -12(%esp) # push parameter clazz
85 movl %edx, -8(%esp) # push parameter method index
86 movl $$METHOD_VIRTUAL, -4(%esp) # push parameter method type
OP_INVOKE_VIRTUAL.S 65 movl $$METHOD_VIRTUAL, -8(%esp) # push parameter method type
66 movl %ecx, -12(%esp) # push paramter method index
69 movl %eax, (%esp) # push parameter clazz
  /external/openssl/apps/
progs.pl 28 push(@files,$_);
54 push(@files,$_);
79 push(@files,$_);
  /external/quake/quake/src/QW/client/
r_edgea.asm 245 push edi
246 push esi
248 push ebx
298 push ebx
323 push edi
325 push esi
326 push ebx
449 push offset Lgs_nextedge
453 push ebp
454 push edi
    [all...]
  /external/webkit/WebKitTools/Scripts/
make-script-test-wrappers 82 push @files, $File::Find::name if substr($_, -3) eq ".js";
130 push @args, "LayoutTests" if scalar(@args) == 0;
135 push @templateFiles, $File::Find::name if $_ eq "TEMPLATE.html";
sort-Xcode-project-file 110 push @files, $fileLine;
123 push @children, $childLine;
136 push @lastTwo, $line;
prepare-ChangeLog 189 push @{$changed_line_ranges{$file}}, [ $start, $end ];
230 push @functions, $function_range[2];
290 push @{$files{$prefix}}, $file;
317 push @prefixes, $prefixesSort{$prefixSort};
323 push @logs, File::Spec->catfile($prefix || ".", "ChangeLog");
333 push @conflictedChangeLogs, $1 if $line =~ m/^C\s+(.+?)[\r\n]*$/;
687 push @namespaces, $potential_namespace;
722 push @ranges, [ $start, $., $name ];
892 push @ranges, [ $start, ($. - 1),
902 push (@current_scopes, $name)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
FileExplorerView.java 82 CommonAction pushAction = new CommonAction("Push File...") {
88 pushAction.setToolTipText("Push a file onto the device");
90 .loadDescriptor("push.png")); //$NON-NLS-1$
  /external/libxml2/
pattern.c 19 * currently push(NULL, NULL) means a reset of the streaming context
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
725 #define PUSH(op, val, val2) \
926 PUSH(XML_OP_ATTR, NULL, NULL);
976 PUSH(XML_OP_ATTR, NULL, URL);
984 PUSH(XML_OP_ATTR, token, URL);
987 PUSH(XML_OP_ATTR, name, NULL);
1021 PUSH(XML_OP_ELEM, NULL, NULL);
1044 PUSH(XML_OP_ALL, NULL, NULL);
1098 PUSH(XML_OP_NS, URL, NULL)
    [all...]
  /external/v8/src/x64/
ic-x64.cc 223 __ push(Operand(rsp, 1 * kPointerSize)); // receiver
224 __ push(Operand(rsp, 1 * kPointerSize)); // name
225 __ push(rbx); // return address
240 __ push(Operand(rsp, 1 * kPointerSize)); // receiver
241 __ push(Operand(rsp, 1 * kPointerSize)); // name
242 __ push(rbx); // return address
519 __ push(rax);
589 __ push(rcx); // receiver
590 __ push(rax); // key
591 __ push(rdx); // return addres
    [all...]
macro-assembler-x64.cc 54 push(Operand(r13, index << kPointerSizeLog2));
325 push(rax);
327 push(kScratchRegister);
331 push(kScratchRegister);
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 62 parent.subclasses.push(klass);
83 properties.push("toString", "valueOf");
141 results.push(property.toJSON() + ': ' + value);
158 keys.push(property);
165 values.push(object[property]);
431 hash[key].push(value);
614 slices.push(array.slice(index, index+number));
642 results.push(iterator.call(context, value, index));
662 results.push(value);
676 results.push(iterator.call(context, value, index))
    [all...]
  /external/v8/tools/
logreader.js 177 fullStack.push(prevFrame);
180 fullStack.push(parseInt(frame, 16));
221 parsedFields.push(fields[1 + i]);
223 parsedFields.push(parser(fields[1 + i]));
226 parsedFields.push(fields.slice(1 + i));
  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.cpp 45 push(X86Registers::edi);
46 push(X86Registers::esi);
83 push(index);
153 push(repeatCount);
183 push(index);
200 push(repeatCount);
232 push(index);
468 push(index);
484 push(index);
602 push(index)
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 184 // Push multiple registers on the stack.
186 // For example if you push t0, t1, s0, and ra you get:
200 void Push(Register src) {
204 inline void push(Register src) { Push(src); } function in class:v8::internal::MacroAssembler
206 void Push(Register src, Condition cond, Register tst1, Register tst2) {
230 // Push a new try handler and link into try handler chain.
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 418 push(new ArrayState(handleCast<v8::Array>(value)));
422 push(new ObjectState(handleCast<v8::Object>(value)));
430 void push(StateBase* state) function in class:WebCore::__anon6422::Serializer
614 push(value);
625 push(object);
637 push(array);
643 void push(v8::Local<v8::Value> value) { m_stack.append(value); } function in class:WebCore::__anon6422::Deserializer
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js 50 group.push(objectId);
103 matchedCSSRules.push(InjectedScript._serializeRule(matchedRules[i]));
190 changedProperties.push(shorthand || name);
374 result.properties.push(property);
399 properties.push(property);
416 properties.push(individualProperty);
478 result.push(title);
504 childObjectProxy.path.push(propertyName);
512 properties.push(property);
720 InjectedScript._searchResults.push(node)
    [all...]
  /external/v8/src/ia32/
virtual-frame-ia32.cc 113 __ push(Immediate(Smi::FromInt(0)));
122 __ push(element.reg());
129 __ push(Immediate(element.handle()));
138 __ push(Operand(ebp, fp_relative(backing_index)));
140 __ push(backing.reg());
158 // Emit normal push instructions for elements above stack pointer
479 Push(edi);
521 __ push(Immediate(undefined));
528 __ push(temp.reg());
540 __ push(tmp.reg())
    [all...]
  /build/tools/releasetools/
check_target_files_signatures 79 def Push(msg):
161 Push(filename + ":")
187 Push(filename+":")
311 Push(apk.filename)
405 Push("input target_files:")
414 Push("comparison target_files:")
  /dalvik/libcore/luni/src/main/java/java/io/
PushbackInputStream.java 23 * Wraps an existing {@link InputStream} and adds functionality to "push back"
248 * the buffer containing the bytes to push back to this stream.
270 * the buffer containing the bytes to push back to this stream.
272 * the index of the first byte in {@code buffer} to push back.
274 * the number of bytes to push back.
316 * the byte to push back to this stream.
PushbackReader.java 23 * Wraps an existing {@link Reader} and adds functionality to "push back"
273 * the buffer containing the characters to push back to this
297 * the buffer containing the characters to push back to this
300 * the index of the first byte in {@code buffer} to push back.
302 * the number of bytes to push back.
349 * the character to push back to this stream.
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2RTFDTM.java 285 mark_size.push(m_size);
286 mark_nsdeclset_size.push((m_namespaceDeclSets==null)
289 mark_nsdeclelem_size.push((m_namespaceDeclSetElements==null)
294 mark_data_size.push(m_data.size());
295 mark_char_size.push(m_chars.size());
296 mark_doq_size.push(m_dataOrQName.size());
  /external/icu4c/common/
rbbicst.pl 80 # character [n] target-state [^push-state] [function-name]
127 # do the push state, if present.
304 # The push-state field is optional. If omitted, fill field with a zero, which flags
305 # the state machine that there is no push state.
411 # The push-state field is optional. If omitted, fill field with a zero, which flags
412 # the state machine that there is no push state.

Completed in 80 milliseconds

<<11121314151617181920>>