Searched defs:pop (Results 1 - 25 of 80) sorted by relevance

1234

/external/v8/test/mjsunit/
H A Darray-length.js110 Array.prototype.pop.apply(o);
/external/webkit/Source/JavaScriptCore/wtf/
H A DSinglyLinkedList.h38 Node* pop();
61 template <typename Node> inline Node* SinglyLinkedList<Node>::pop() function in class:WTF::SinglyLinkedList
/external/antlr/src/org/antlr/runtime/misc/
H A DIntArray.java58 public int pop() { method in class:IntArray
/external/icu4c/common/
H A Dustack.cpp36 void* UStack::pop(void) { function in class:UStack
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DIntStack.java99 public final int pop() method in class:IntStack
H A DObjectStack.java99 public Object pop() method in class:ObjectStack
H A DBoolStack.java104 public final boolean pop() method in class:BoolStack
H A DStringVector.java199 public final String pop() method in class:StringVector
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUniqueStack.java32 * All provided operations ({@link #pop()} and {@link #push(Object)}) are done in average constant
128 public T pop() { method in class:UniqueStack
/external/apache-harmony/support/src/test/java/tests/util/
H A DCallVerificationStack.java200 public Object pop() { method in class:CallVerificationStack
201 this.callStack.pop();
202 return super.pop();
211 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
222 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
233 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
244 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
255 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
266 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
277 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DElemContext.java47 * information about the parent element with a simple pop() when the
104 * is held by the serializer is changed via a quick pop() or push().
123 // this assignment means can never pop this context off
149 final ElemContext pop() method in class:ElemContext
151 /* a very simple pop. No clean up is done of the deeper
/external/chromium/base/threading/
H A Dthread_collision_warner_unittest.cc138 int pop() { function in class:NonThreadSafeQueue
156 queue_.pop();
196 int pop() { function in class:NonThreadSafeQueue
214 queue_.pop();
254 int pop() { function in class:NonThreadSafeQueue
280 queue_.pop();
324 int pop() { function in class:NonThreadSafeQueue
358 queue_.pop();
/external/chromium/chrome/browser/ui/views/
H A Dbrowser_bubble_win.cc111 BubbleWidget* pop = new BubbleWidget(this); local
113 BorderWidgetWin* border_widget = pop->border_widget();
118 pop->Init(border_widget->GetNativeView(), gfx::Rect());
119 pop->SetContentsView(view_);
121 popup_ = pop;
129 views::WidgetWin* pop = static_cast<views::WidgetWin*>(popup_); local
130 pop->SetBounds(gfx::Rect(x, y, w, h));
136 BubbleWidget* pop = static_cast<BubbleWidget*>(popup_);
137 pop->ShowAndActivate(activate);
144 views::WidgetWin* pop
[all...]
H A Dbrowser_bubble_gtk.cc95 BubbleWidget* pop = new BubbleWidget(this); local
96 pop->MakeTransparent();
97 pop->make_transient_to_parent();
98 pop->Init(frame_->GetNativeView(), gfx::Rect());
104 pop->GetNativeView(),
116 pop->SetContentsView(contents_view);
119 contents_view->AddChildView(pop->border_contents());
122 popup_ = pop;
130 views::WidgetGtk* pop = static_cast<views::WidgetGtk*>(popup_); local
131 pop
[all...]
/external/jpeg/
H A Djmemdosa.asm61 open_err: pop ds ; restore registers and exit
62 pop es
63 pop dx define
64 pop cx
65 pop bx
66 pop di define
67 pop si
68 pop bp
93 close_err: pop ds ; restore registers and exit
94 pop e
95 pop dx define
98 pop di define
129 pop dx define
132 pop di define
167 pop dx define
170 pop di define
205 pop dx define
208 pop di define
244 pop ds ; restore registers and exit define
246 pop dx define
249 pop di define
285 pop ds ; restore registers and exit define
287 pop dx define
290 pop di define
313 pop ds define
325 pop dx define
328 pop di define
366 pop ds ; restore registers and exit define
368 pop dx define
371 pop di define
[all...]
/external/llvm/lib/CodeGen/
H A DLatencyPriorityQueue.cpp119 SUnit *LatencyPriorityQueue::pop() { function in class:LatencyPriorityQueue
147 SUnit *su = q.pop();
/external/markdown/markdown/
H A Dodict.py43 def pop(self, k, *args): member in class:OrderedDict
44 result = super(OrderedDict, self).pop(k, *args)
/external/skia/include/core/
H A DSkTDStack.h80 void pop(T* elem) function in class:SkTDStack
84 this->pop();
86 void pop() function in class:SkTDStack
/external/stlport/src/
H A Dlock_free_slist.h88 item* pop() { function in class:_STLP_atomic_freelist
233 item* pop() { function in class:_STLP_atomic_freelist
299 # pragma warning (pop)
/external/stlport/stlport/stl/
H A D_stack.h87 void pop() { c.pop_back(); } function in class:stack
/external/valgrind/main/memcheck/tests/
H A Dmempool.c70 void pop(pool *p) function
88 pop(p);
133 pop(p);
145 // pop(p);
/external/webkit/Source/JavaScriptCore/heap/
H A DLocal.h117 ExternalType pop() function in class:JSC::LocalStack
/external/chromium/third_party/libevent/
H A Dpoll.c103 poll_check_ok(struct pollop *pop) argument
108 for (i = 0; i < pop->fd_count; ++i) {
109 idx = pop->idxplus1_by_fd[i]-1;
112 assert(pop->event_set[idx].fd == i);
113 if (pop->event_set[idx].events & POLLIN) {
114 ev = pop->event_r_back[idx];
119 if (pop->event_set[idx].events & POLLOUT) {
120 ev = pop->event_w_back[idx];
126 for (i = 0; i < pop->nfds; ++i) {
127 struct pollfd *pfd = &pop
139 struct pollop *pop = arg; local
207 struct pollop *pop = arg; local
312 struct pollop *pop = arg; local
365 struct pollop *pop = arg; local
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFrame.java128 public Type pop() { method in class:Frame
/external/llvm/test/MC/X86/
H A Dx86-32.s517 pop %ss label
520 pop %ds label
523 pop %es label

Completed in 527 milliseconds

1234