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

1 2 3 4 5 6 7 8

  /external/chromium_org/mojo/public/bindings/lib/
message_queue.cc 19 Pop();
36 void MessageQueue::Pop(Message* message) {
39 Pop();
42 void MessageQueue::Pop() {
45 queue_.pop();
message_queue.h 31 void Pop(Message* message);
35 void Pop();
  /external/chromium_org/chrome/renderer/net/
predictor_queue_unittest.cc 17 // 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) {
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(&string)
    [all...]
predictor_queue.h 68 bool Pop(std::string* out_string);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 61 public object Pop()
  /external/chromium_org/media/base/
byte_queue.h 16 // Pop(). The contents of the queue can be observed via the Peek() method.
32 // Pop() call.
36 void Pop(int count);
decoder_buffer_queue_unittest.cc 64 queue.Pop();
67 queue.Pop();
70 queue.Pop();
73 queue.Pop();
89 queue.Pop();
94 queue.Pop();
125 queue.Pop();
128 queue.Pop();
131 queue.Pop();
134 queue.Pop();
    [all...]
decoder_buffer_queue.h 38 // It is invalid to call Pop() on an empty queue.
39 scoped_refptr<DecoderBuffer> Pop();
serial_runner.h 43 BoundPipelineStatusCB Pop();
serial_runner.cc 46 SerialRunner::BoundPipelineStatusCB SerialRunner::Queue::Pop() {
48 bound_fns_.pop();
91 BoundPipelineStatusCB bound_fn = bound_fns_.Pop();
  /external/chromium_org/media/mp4/
offset_byte_queue.cc 33 void OffsetByteQueue::Pop(int count) {
34 queue_.Pop(count);
53 Pop(size_);
56 Pop(max_offset - head_);
offset_byte_queue.h 27 void Pop(int count);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 57 public static T pop<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
59 return stack.Pop();
81 stack.Pop();
  /external/clang/test/Preprocessor/
_Pragma-in-macro-arg.c 4 #define A(desc) _Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Wparentheses\"") _Pragma("clang diagnostic pop")
23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
24 IGNORE_POPPUSH(_Pragma("clang diagnostic pop"), _Pragma("clang diagnostic push"),
  /external/chromium_org/third_party/angle/src/compiler/
ForLoopUnroll.h 40 void Pop();
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
origin_operation_queue.h 39 OriginOperation Pop();
origin_operation_queue.cc 25 OriginOperation OriginOperationQueue::Pop() {
  /external/chromium/testing/gtest/scripts/
pump.py 476 def Pop(token_type=None):
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_type=None)
    [all...]
  /external/chromium_org/mojo/public/tests/
bindings_connector_unittest.cc 32 void Pop(Message* message) {
33 queue_.Pop(message);
92 accumulator.Pop(&message_received);
118 accumulator.Pop(&message_received);
147 accumulator.Pop(&message_received);
201 accumulator.Pop(&message_received);
226 accumulator.Pop(&message_received);
  /external/chromium_org/testing/gtest/scripts/
pump.py 476 def Pop(token_type=None):
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_type=None)
    [all...]
  /external/gtest/scripts/
pump.py 476 def Pop(token_type=None):
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_type=None)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
ListStack`1.cs 71 public T Pop()
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 116 CheckEquals(FIStackList.Pop,'Item 2');
117 CheckEquals(FIStackList.Pop,'Item 1');
125 FIStackList.Pop;
127 CheckEquals(FIStackList.Pop, 'Item 2');
  /external/chromium/chrome/browser/net/
predictor_unittest.cc 506 EXPECT_EQ(queue.Pop(), first);
508 EXPECT_EQ(queue.Pop(), second);
516 EXPECT_EQ(queue.Pop(), first);
518 EXPECT_EQ(queue.Pop(), second);
549 EXPECT_EQ(queue.Pop(), hi1);
550 EXPECT_EQ(queue.Pop(), hi2);
551 EXPECT_EQ(queue.Pop(), hi3);
554 EXPECT_EQ(queue.Pop(), low1);
555 EXPECT_EQ(queue.Pop(), low2);
556 EXPECT_EQ(queue.Pop(), low3)
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-function-mockers_test.cc 349 virtual void Pop() = 0;
361 MOCK_METHOD0_T(Pop, void());
381 EXPECT_CALL(mock, Pop())
388 mock.Pop();
402 STDMETHOD_(void, Pop)() = 0;
414 MOCK_METHOD0_T_WITH_CALLTYPE(STDMETHODCALLTYPE, Pop, void());
434 EXPECT_CALL(mock, Pop())
441 mock.Pop();

Completed in 1335 milliseconds

1 2 3 4 5 6 7 8