Searched refs:Push (Results 1 - 25 of 303) sorted by relevance

1234567891011>>

/external/chromium_org/media/base/
H A Ddecoder_buffer_queue_unittest.cc39 queue.Push(CreateBuffer(0));
45 queue.Push(CreateBuffer(0));
46 queue.Push(CreateBuffer(1));
59 queue.Push(CreateBuffer(0));
62 queue.Push(CreateBuffer(1));
65 queue.Push(CreateBuffer(2));
68 queue.Push(CreateBuffer(4));
86 queue.Push(CreateBuffer(10));
87 queue.Push(CreateBuffer(12));
91 queue.Push(CreateBuffe
[all...]
H A Daudio_block_fifo.h28 // Push() will crash if the allocated space is insufficient.
29 void Push(const void* source, int frames, int bytes_per_sample);
H A Daudio_fifo.h25 // Push() will crash if the allocated space is insufficient.
26 void Push(const AudioBus* source);
H A Dbyte_queue.h15 // Data is added to the end of the queue via an Push() call and removed via
28 void Push(const uint8* data, int size);
31 // These values are only valid until the next Push() or
H A Daudio_fifo_unittest.cc35 TEST_F(AudioFifoTest, Push) {
40 SCOPED_TRACE("Push 50%");
43 fifo.Push(bus.get());
48 SCOPED_TRACE("Push 100%");
51 fifo.Push(bus.get());
64 fifo.Push(bus.get());
72 fifo.Push(bus.get());
80 fifo.Push(bus.get());
97 fifo.Push(bus.get());
111 // during a sequence of Push/Consum
[all...]
H A Dserial_runner.h37 void Push(const base::Closure& closure);
38 void Push(const BoundClosure& bound_fn);
39 void Push(const BoundPipelineStatusCB& bound_fn);
H A Ddecoder_buffer_queue.h30 // Push |buffer| to the end of the queue. If |buffer| is queued out of order
34 void Push(const scoped_refptr<DecoderBuffer>& buffer);
/external/openfst/src/include/fst/script/
H A Dpush.h31 void Push(PushArgs1 *args) { function in namespace:fst::script
35 fst::Push(ofst, REWEIGHT_TO_FINAL, args->arg3, args->arg4);
37 fst::Push(ofst, REWEIGHT_TO_INITIAL, args->arg3, args->arg4);
46 void Push(PushArgs2 *args) { function in namespace:fst::script
51 fst::Push<Arc, REWEIGHT_TO_FINAL>(ifst, ofst, args->arg3, args->arg5);
53 fst::Push<Arc, REWEIGHT_TO_INITIAL>(ifst, ofst, args->arg3, args->arg5);
58 void Push(MutableFstClass *ofst, ReweightType type, float delta = kDelta,
62 void Push(const FstClass &ifst, MutableFstClass *ofst, uint32 flags,
/external/openfst/src/script/
H A Dpush.cc25 void Push(MutableFstClass *ofst, ReweightType dir, float delta, function in namespace:fst::script
28 Apply<Operation<PushArgs1> >("Push", ofst->ArcType(), &args);
32 void Push(const FstClass &ifst, MutableFstClass *ofst, uint32 flags, function in namespace:fst::script
34 if (!ArcTypesMatch(ifst, *ofst, "Push")) return;
37 Apply<Operation<PushArgs2> >("Push", ifst.ArcType(), &args);
41 REGISTER_FST_OPERATION(Push, StdArc, PushArgs1);
42 REGISTER_FST_OPERATION(Push, LogArc, PushArgs1);
43 REGISTER_FST_OPERATION(Push, Log64Arc, PushArgs1);
44 REGISTER_FST_OPERATION(Push, StdArc, PushArgs2);
45 REGISTER_FST_OPERATION(Push, LogAr
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_queue_unittest.cc20 // Push 4 jobs.
21 queue.Push(101, LOW_PRIORITY);
22 queue.Push(102, HIGH_PRIORITY);
23 queue.Push(103, LOW_PRIORITY);
24 queue.Push(104, HIGH_PRIORITY);
51 // Push 1 more job.
52 queue.Push(105, LOW_PRIORITY);
78 // Push 4 jobs.
79 queue.Push(101, LOW_PRIORITY);
80 queue.Push(10
[all...]
H A Djob_queue.h27 void Push(JobID id, int priority);
/external/chromium_org/chrome/renderer/net/
H A Dpredictor_queue.h52 // Push takes an unterminated string of the given length
60 PushResult Push(const char* source, const size_t length);
62 PushResult Push(std::string source) { function in class:DnsQueue
63 return Push(source.c_str(), source.length());
H A Dpredictor_queue_unittest.cc17 // Define a helper class that does Push'es and Pop's of numbers.
19 // value in sync with the Push value.
26 bool Push(void); // Push the string value of next number.
46 bool DnsQueueSequentialTester::Push(void) { function in class:__anon5820::DnsQueueSequentialTester
52 buffer_->Push(value.str().c_str(), value.str().size()) :
53 buffer_->Push(value.str());
87 if (!tester.Push())
107 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push(big_string, 3))
109 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push(big_strin
[all...]
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Doptions_for_unittests.py17 def Push(options): function
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dsingle_rw_fifo_unittest.cc46 void Push(int number_of_buffers) { function in class:webrtc::SingleRwFifoTest
50 fifo_.Push(data);
107 TEST_F(SingleRwFifoTest, Push) {
108 Push(kCapacity);
112 // Push all available.
113 Push(available_);
118 Push(1);
122 Push(1);
H A Dsingle_rw_fifo.h29 void Push(int8_t* mem);
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp97 Instruction *Push = nullptr; local
102 Push = Inst;
107 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
112 << " Push: " << *Push << "\n"); local
114 Push->eraseFromParent();
116 Push = nullptr;
120 Push = nullptr;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs52 public void Push(object item) method in class:Antlr.Runtime.Collections.StackList
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dmessage_queue.h28 void Push(Message* message);
/external/clang/test/Preprocessor/
H A D_Pragma-in-macro-arg.c23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
/external/lldb/include/lldb/Core/
H A DInputReaderStack.h32 Push (const lldb::InputReaderSP& reader_sp);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp44 void Push(FX_FLOAT value);
45 void Push(int value) function in class:CPDF_PSEngine
47 Push((FX_FLOAT)value);
81 pEngine->Push(*(FX_FLOAT*)m_Operators[i + 1]);
114 void CPDF_PSEngine::Push(FX_FLOAT v) function in class:CPDF_PSEngine
199 Push(d1 + d2);
204 Push(d1 - d2);
209 Push(d1 * d2);
214 Push(d1 / d2);
219 Push(i
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpush.h41 void Push(MutableFst<Arc> *fst, ReweightType type) { function in namespace:fst
57 void Push(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, uint32 ptype) { function in namespace:fst
61 Push(ofst, rtype);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_job_coordinator.cc21 ServiceWorkerRegisterJobBase* ServiceWorkerJobCoordinator::JobQueue::Push( function in class:content::ServiceWorkerJobCoordinator::JobQueue
80 job_queues_[pattern].Push(job.Pass()));
91 job_queues_[pattern].Push(job.Pass()));
99 job_queues_[registration->pattern()].Push(
/external/chromium_org/media/formats/common/
H A Doffset_byte_queue.h25 void Push(const uint8* buf, int size);

Completed in 512 milliseconds

1234567891011>>