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

12345678910

/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:__anon6911::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/media/base/
H A Ddecoder_buffer_queue_unittest.cc32 queue.Push(CreateBuffer(0));
38 queue.Push(CreateBuffer(0));
39 queue.Push(CreateBuffer(1));
52 queue.Push(CreateBuffer(0));
55 queue.Push(CreateBuffer(1));
58 queue.Push(CreateBuffer(2));
61 queue.Push(CreateBuffer(4));
79 queue.Push(CreateBuffer(10));
80 queue.Push(CreateBuffer(12));
84 queue.Push(CreateBuffe
[all...]
H A Dserial_runner.h36 void Push(const BoundClosure& bound_fn);
37 void Push(const BoundPipelineStatusCB& bound_fn);
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 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);
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 Daudio_fifo.h19 // Push(), while a second thread calls Consume().
27 // Push() will crash if the allocated space is insufficient.
28 void Push(const AudioBus* source);
/external/chromium/base/
H A Dtask_queue_unittest.cc47 queue_->Push(task_to_queue_);
72 queue.Push(new TrackCallsTask(&ran_task1, &deleted_task1));
76 queue.Push(new TrackCallsTask(&ran_task2, &deleted_task2));
92 queue.Push(new TrackCallsTask(&ran_task1, &deleted_task1));
96 queue.Push(new TrackCallsTask(&ran_task2, &deleted_task2));
118 nested_queue->Push(
123 nested_queue->Push(
127 main_queue.Push(nested_queue.release());
H A Dtask_queue.h22 // Push the specified task onto the queue. When the queue is run, the tasks
27 void Push(Task* task);
H A Dtask_queue.cc18 void TaskQueue::Push(Task* task) { function in class:TaskQueue
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp96 Instruction *Push = 0; local
101 Push = Inst;
106 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
111 << " Push: " << *Push << "\n"); local
113 Push->eraseFromParent();
115 Push = 0;
119 Push = 0;
/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/clang/test/Preprocessor/
H A D_Pragma-in-macro-arg.c23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
/external/chromium/chrome/browser/sync/util/
H A Ddbgq.h19 void Push(const T& t) { function in class:DebugQueue
/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/media/mp4/
H A Doffset_byte_queue.h25 void Push(const uint8* buf, int size);
H A Doffset_byte_queue.cc22 void OffsetByteQueue::Push(const uint8* buf, int size) { function in class:media::OffsetByteQueue
23 queue_.Push(buf, size);
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DForLoopUnroll.h36 void Push(TLoopIndexInfo& info);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnbufferedTokenStream.cs115 _realTokens.Push(_realTokens.Peek());
128 _realTokens.Push(null);
/external/chromium_org/build/android/gyp/
H A Dpush_libraries.py29 # A list so that it is modifiable in Push below.
35 def Push(): function in function:DoPush
43 Push,

Completed in 6012 milliseconds

12345678910