HomeSort by relevance Sort by last modified time
    Searched refs:Drop (Results 1 - 25 of 42) sorted by null

1 2

  /external/v8/src/arm/
jump-target-arm.cc 165 // it explicitly here. The only merging necessary is to drop extra
169 cgen()->frame()->Drop(count);
176 // it explicitly here. The only merging necessary is to drop extra
180 cgen()->frame()->Drop(count);
195 // Drop leftover statement state from the frame before merging, even
201 // to do it explicitly here. The only merging necessary is to drop extra
203 cgen()->frame()->Drop(count);
219 // Drop leftover statement state from the frame before merging, even
225 // to do it explicitly here. The only merging necessary is to drop extra
virtual-frame-arm.h 318 // Drop a number of elements from the top of the expression stack. May
321 void Drop(int count);
323 // Drop one element.
324 void Drop() { Drop(1); }
364 // the frame. Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
472 // Then drop dropped_args elements from the virtual frame, to match
473 // the effect of an upcoming call that will drop them from the stack.
virtual-frame-arm.cc 134 // Drop the execution stack down to the frame pointer and restore the caller
278 void VirtualFrame::Drop(int count) {
full-codegen-arm.cc 311 __ Drop(1);
348 __ Drop(count);
354 __ Drop(count);
358 if (count > 1) __ Drop(count - 1);
365 if (count > 1) __ Drop(count - 1);
376 __ Drop(count - 2);
484 __ Drop(1);
502 __ Drop(1);
647 __ Drop(2);
749 // Drop key and object left on the stack by IC, and push the result
    [all...]
macro-assembler-arm.h 71 void Drop(int count, Condition cond = al);
codegen-arm.cc 264 frame_->Drop(); // Value is no longer needed.
679 frame_->Drop(size);
761 frame_->Drop();
    [all...]
  /external/chromium/base/
base_drop_target.h 29 // When suspended is set to |true|, the drop target does not receive drops
32 // drag-drop operations within the same HWND, such as dragging
46 HRESULT __stdcall Drop(IDataObject* data_object,
61 // This should return a bitmask of the supported drop operations:
70 // This should return a bitmask of the supported drop operations:
82 // Invoked when the drop ends on the window. This should return the operation
93 // Returns the cached drop helper, creating one if necessary. The returned
97 // The data object currently being dragged over this drop target.
base_drop_target.cc 52 // You can't drag and drop within the same HWND.
101 HRESULT BaseDropTarget::Drop(IDataObject* data_object,
108 drop_helper->Drop(current_data_object_,
  /external/v8/src/ia32/
virtual-frame-ia32.h 364 // Drop a number of elements from the top of the expression stack. May
367 void Drop(int count);
369 // Drop one element.
370 void Drop() {
371 Drop(1);
424 // the frame. Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
545 // Then drop dropped_args elements from the virtual frame, to match
546 // the effect of an upcoming call that will drop them from the stack.
full-codegen-ia32.cc 339 __ Drop(1);
384 __ Drop(count);
390 __ Drop(count);
394 if (count > 1) __ Drop(count - 1);
402 __ Drop(count);
411 __ Drop(count);
415 if (count > 1) __ Drop(count - 1);
602 __ Drop(1);
618 __ Drop(1);
759 __ Drop(2)
    [all...]
macro-assembler-ia32.h 397 void Drop(int element_count);
  /external/v8/src/mips/
virtual-frame-mips.h 335 // Drop a number of elements from the top of the expression stack. May
338 void Drop(int count);
339 // Similar to VirtualFrame::Drop but we don't modify the actual stack.
343 // Drop one element.
344 void Drop() { Drop(1); }
386 // the frame. Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
498 // Then drop dropped_args elements from the virtual frame, to match
499 // the effect of an upcoming call that will drop them from the stack.
virtual-frame-mips.cc 199 void VirtualFrame::Drop(int count) {
macro-assembler-mips.h 98 void Drop(int count, Condition cond = cc_always);
  /external/v8/src/x64/
virtual-frame-x64.h 363 // Drop a number of elements from the top of the expression stack. May
366 void Drop(int count);
368 // Drop one element.
369 void Drop() { Drop(1); }
416 // the frame. Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
521 // Then drop dropped_args elements from the virtual frame, to match
522 // the effect of an upcoming call that will drop them from the stack.
full-codegen-x64.cc 343 __ Drop(1);
387 __ Drop(count);
393 __ Drop(count);
397 if (count > 1) __ Drop(count - 1);
404 __ Drop(count);
413 __ Drop(count);
417 if (count > 1) __ Drop(count - 1);
604 __ Drop(1);
620 __ Drop(1);
762 __ Drop(2)
    [all...]
regexp-macro-assembler-x64.h 248 inline void Drop();
codegen-x64.cc 728 frame_->Drop(); // Can be called on a spilled frame.
808 // Drop applicand.apply and applicand from the stack, and push
849 frame_->Drop(1); // Drop the receiver as well.
    [all...]
macro-assembler-x64.h 445 void Drop(int stack_elements);
    [all...]
  /development/tools/axl/
axl.py 59 class Drop(BaseProtocol):
67 """Read 1st line of request, then drop connection"""
81 """Drop connection after a header is half-sent"""
112 """Drop connection in body"""
129 """Drop every other connection"""
242 for protocol in Drop, ReadAndDrop, GarbageStatus, BadHeader, PauseHeader, \
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 26 ATTRIBUTE MS-Link-Drop-Time-Limit 15 integer Microsoft
  /external/v8/src/
full-codegen.cc 694 __ Drop(stack_depth);
710 __ Drop(stack_depth);
730 __ Drop(stack_depth);
1061 __ Drop(stack_depth);
1070 __ Drop(stack_depth);
virtual-frame.cc 372 Drop(num_dropped - 1);
  /external/v8/test/es5conform/
harness-adapt.js 52 // Drop the before/after stuff, just run the test.
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.cpp 251 webViewDropTarget->Drop(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect);

Completed in 427 milliseconds

1 2