Searched refs:Pop (Results 1 - 25 of 216) sorted by relevance

123456789

/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dmessage_queue.cc18 Pop();
35 void MessageQueue::Pop(Message* message) { function in class:mojo::internal::MessageQueue
38 Pop();
41 void MessageQueue::Pop() { function in class:mojo::internal::MessageQueue
H A Dmessage_queue.h32 void Pop(Message* message);
36 void Pop();
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Doptions_for_unittests.py21 def Pop(): function
/external/chromium_org/chrome/renderer/net/
H A Dpredictor_queue_unittest.cc17 // Define a helper class that does Push'es and Pop's of numbers.
18 // This makes it easy to test a LOT of reads, and keep the expected Pop
29 bool Pop(void); // Validate string value of next read.
59 bool DnsQueueSequentialTester::Pop(void) { function in class:__anon5820::DnsQueueSequentialTester
61 if (buffer_->Pop(&string)) {
65 << "Pop did not match write for value " << read_counter_;
83 EXPECT_FALSE(tester.Pop()) << "Pop from empty buffer succeeded";
89 EXPECT_TRUE(tester.Pop()) << "Unable to read back data " << i;
90 EXPECT_FALSE(buffer.Pop(
[all...]
H A Dpredictor_queue.h68 bool Pop(std::string* out_string);
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dsingle_rw_fifo_unittest.cc57 void Pop(int number_of_buffers) { function in class:webrtc::SingleRwFifoTest
59 int8_t* data = fifo_.Pop();
111 TEST_F(SingleRwFifoTest, Pop) {
117 Pop(1);
121 Pop(pushed_);
123 Pop(1);
H A Dsingle_rw_fifo.h30 int8_t* Pop();
/external/chromium_org/media/base/
H A Ddecoder_buffer_queue_unittest.cc71 queue.Pop();
74 queue.Pop();
77 queue.Pop();
80 queue.Pop();
96 queue.Pop();
101 queue.Pop();
132 queue.Pop();
135 queue.Pop();
138 queue.Pop();
141 queue.Pop();
[all...]
H A Dbyte_queue.h16 // Pop(). The contents of the queue can be observed via the Peek() method.
32 // Pop() call.
36 void Pop(int count);
H A Ddecoder_buffer_queue.h38 // It is invalid to call Pop() on an empty queue.
39 scoped_refptr<DecoderBuffer> Pop();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs61 public object Pop() method in class:Antlr.Runtime.Collections.StackList
/external/chromium_org/media/formats/common/
H A Doffset_byte_queue.cc33 void OffsetByteQueue::Pop(int count) { function in class:media::OffsetByteQueue
34 queue_.Pop(count);
53 Pop(size_);
56 Pop(max_offset - head_);
H A Doffset_byte_queue.h27 void Pop(int count);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp49 FX_FLOAT Pop();
87 if ((int)pEngine->Pop()) {
95 if ((int)pEngine->Pop()) {
121 FX_FLOAT CPDF_PSEngine::Pop() function in class:CPDF_PSEngine
197 d1 = Pop();
198 d2 = Pop();
202 d2 = Pop();
203 d1 = Pop();
207 d1 = Pop();
208 d2 = Pop();
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs59 return stack.Pop();
81 stack.Pop();
/external/chromium_org/cc/resources/
H A Deviction_tile_priority_queue.h27 void Pop(TreePriority tree_priority);
47 void Pop();
H A Draster_tile_priority_queue.h28 void Pop(TreePriority tree_priority);
49 void Pop();
/external/clang/test/Preprocessor/
H A D_Pragma-in-macro-arg.c23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dtimestamp_map.h39 void* Pop(uint32_t timestamp);
H A Dgeneric_decoder.cc58 _timestampMap.Pop(decodedImage.timestamp()));
111 int32_t VCMDecodedFrameCallback::Pop(uint32_t timestamp) function in class:webrtc::VCMDecodedFrameCallback
114 if (_timestampMap.Pop(timestamp) == NULL)
163 _callback->Pop(frame.TimeStamp());
170 _callback->Pop(frame.TimeStamp());
/external/lldb/include/lldb/Core/
H A DInputReaderStack.h41 Pop ();
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dconnector_unittest.cc34 void Pop(Message* message) { function in class:mojo::test::__anon8776::MessageAccumulator
35 queue_.Pop(message);
130 accumulator.Pop(&message_received);
156 accumulator.Pop(&message_received);
182 accumulator.Pop(&message_received);
211 accumulator.Pop(&message_received);
240 accumulator.Pop(&message_received);
301 accumulator.Pop(&message_received);
328 accumulator.Pop(&message_received);
362 accumulator.Pop(
[all...]
/external/chromium_org/v8/src/compiler/
H A Dast-graph-builder.cc246 owner()->set_ast_context(outer_); // Pop.
284 return environment()->Pop();
289 return environment()->Pop();
402 Node* value = environment()->Pop();
408 Node* value = environment()->Pop();
487 Node* condition = environment()->Pop();
513 Node* result = environment()->Pop();
521 Node* value = environment()->Pop();
553 Node* label = environment()->Pop();
559 environment()->Pop();
[all...]
/external/chromium_org/testing/gtest/scripts/
H A Dpump.py476 def Pop(token_type=None): function in function:ParseElseNode
483 Pop('$else')
484 Pop('[[')
486 Pop(']]')
489 Pop('$elif')
490 exp = Pop('code')
491 Pop('[[')
493 Pop(']]')
497 Pop('code')
504 def Pop(token_typ function in function:ParseAtomicCodeNode
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs71 public T Pop() method in class:Antlr.Runtime.Misc.ListStack

Completed in 1101 milliseconds

123456789