Searched refs:pop (Results 1 - 25 of 666) sorted by relevance

1234567891011>>

/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/clang/test/Sema/
H A Dpragma-pack-3.c11 // Note that this differs from gcc; pack() in gcc appears to pop the
20 #pragma pack(pop)
28 #pragma pack(pop)
H A Dpragma-pack.c18 #pragma pack(pop) // -> (eek, 2), (,2), 1
20 #pragma pack(pop, eek)
22 /* expected-warning {{pack(pop, ...) failed: stack empty}} */ #pragma pack(pop)
25 #pragma pack(pop, 16)
H A Dpragma-pack-and-options-align.c27 #pragma pack(pop)
33 #pragma pack(pop)
42 /* expected-warning {{#pragma pack(pop, ...) failed: stack empty}} */ #pragma pack(pop)
/external/valgrind/main/none/tests/x86/
H A Dpushpopseg.stdout.exp2 sp change after pop = 2
3 fs after push and pop = 0003
5 sp change after pop = 4
6 fs after push and pop = 0003
/external/clang/test/Preprocessor/
H A Dpushable-diagnostics.c3 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}}
5 #pragma clang diagnostic puhs // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}}
13 #pragma clang diagnostic pop
17 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}}
H A Dpragma_diagnostic_output.c12 // CHECK: #pragma GCC diagnostic pop
13 #pragma GCC diagnostic pop
25 // CHECK: #pragma clang diagnostic pop
26 #pragma clang diagnostic pop
H A Dpragma_diagnostic_sections.cpp10 #pragma clang diagnostic pop
23 #pragma clang diagnostic pop
37 #pragma clang diagnostic pop
44 #pragma clang diagnostic pop
52 #pragma clang diagnostic pop
66 #pragma clang diagnostic pop
76 _Pragma("clang diagnostic pop")
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java91 private ArrayList pop() method in class:Parser
858 PCommand node1 = (PCommand) pop().get(0);
894 @SuppressWarnings("unused") ArrayList nodeArrayList1 = pop();
908 @SuppressWarnings("unused") ArrayList nodeArrayList2 = pop();
909 @SuppressWarnings("unused") ArrayList nodeArrayList1 = pop();
943 @SuppressWarnings("unused") ArrayList nodeArrayList1 = pop();
963 @SuppressWarnings("unused") ArrayList nodeArrayList3 = pop();
964 @SuppressWarnings("unused") ArrayList nodeArrayList2 = pop();
965 @SuppressWarnings("unused") ArrayList nodeArrayList1 = pop();
992 @SuppressWarnings("unused") ArrayList nodeArrayList4 = pop();
[all...]
/external/stlport/stlport/stl/config/
H A D_epilog.h3 # pragma warning (pop)
4 # pragma pack (pop)
8 # pragma option pop
/external/stlport/test/unit/
H A Dqueue_test.cpp41 q.pop();
43 q.pop();
45 q.pop();
57 q.pop();
59 q.pop();
61 q.pop();
H A Dstack_test.cpp40 s.pop();
42 s.pop();
44 s.pop();
54 s.pop();
56 s.pop();
58 s.pop();
/external/clang/test/Index/
H A Dpragma-diag-reparse.c8 #pragma clang diagnostic pop
/external/clang/test/Parser/
H A Dpragma-visibility.c4 #pragma GCC visibility pop foo // expected-warning{{extra tokens at end of '#pragma visibility' - ignored}}
9 #pragma GCC visibility pop
H A Dpragma-visibility2.c11 #pragma GCC visibility pop
/external/clang/test/CodeGenCXX/
H A Dpragma-visibility.cpp7 #pragma GCC visibility pop
17 #pragma GCC visibility pop
25 #pragma GCC visibility pop
31 #pragma GCC visibility pop
38 #pragma GCC visibility pop
46 #pragma GCC visibility pop
55 #pragma GCC visibility pop
63 #pragma GCC visibility pop
71 #pragma GCC visibility pop
/external/clang/test/CodeGen/
H A Dpragma-visibility.c8 #pragma GCC visibility pop
16 #pragma GCC visibility pop
/external/clang/test/SemaCXX/
H A Dpragma-pack.cpp13 #pragma pack(pop)
30 #pragma pack(pop)
/external/chromium/chrome/browser/ui/views/
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...]
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...]
/external/v8/test/mjsunit/
H A Darray-pop.js34 assertEquals(1, a.pop(), "1st pop");
35 assertEquals(6, a.length, "length 1st pop");
37 assertEquals(2, a.pop(1), "2nd pop");
38 assertEquals(5, a.length, "length 2nd pop");
40 assertEquals(3, a.pop(1, 2), "3rd pop");
41 assertEquals(4, a.length, "length 3rd pop");
43 assertEquals(4, a.pop(
[all...]
/external/clang/test/Lexer/
H A Dpragma-operators.cpp13 // CHECK: #pragma warning(pop)
20 #pragma warning(pop)
/external/harfbuzz/src/
H A Dharfbuzz-stream.h46 #pragma pack(pop)
/external/qemu/distrib/sdl-1.2.12/include/
H A Dclose_code.h38 #pragma pack(pop)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DStackTest.java43 s.pop();
65 s.pop();
66 assertTrue("Peek did not return top item after a pop", s.pop() == item2);
73 * @tests java.util.Stack#pop()
76 // Test for method java.lang.Object java.util.Stack.pop()
84 lastPopped = s.pop();
92 lastPopped = s.pop();
101 lastPopped = s.pop();
109 lastPopped = s.pop();
[all...]

Completed in 614 milliseconds

1234567891011>>