Searched defs:Push (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium/chrome/browser/sync/util/
H A Ddbgq.h19 void Push(const T& t) { function in class:DebugQueue
/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/base/
H A Dtask_queue.cc18 void TaskQueue::Push(Task* task) { function in class:TaskQueue
/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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs93 public void Push(T item) method in class:Antlr.Runtime.Misc.ListStack
/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/stressapptest/src/
H A Dqueue.cc25 // Push inserts pages, pop returns a random entry.
45 int PageEntryQueue::Push(struct page_entry *pe) { function in class:PageEntryQueue
/external/v8/tools/
H A Djsmin.py76 def Push(self): member in class:JavaScriptMinifier
104 self.Push()
121 self.Push()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas63 procedure Push(const Item: T); procedure
127 procedure Push(const Item: T); procedure
328 procedure TStackList<T>.Push(const Item: T);
/external/openfst/src/include/fst/
H A Dpush.h36 // Private helper functions for Push
98 void Push(MutableFst<Arc> *fst, function in namespace:fst
124 void Push(const Fst<Arc> &ifst, function in namespace:fst
131 Push(ofst, rtype, delta, ptype & kPushRemoveTotalWeight);
167 LOG(WARNING) << "Push: pushing type is set to 0: "
H A Dsparse-tuple-weight.h75 Push(*it);
81 Push(key, w);
92 Push(it.Value());
127 Push(it.Value());
154 w.Push(it.Value().first, it.Value().second.Quantize(delta));
162 w.Push(it.Value().first, it.Value().second.Reverse());
186 inline void Push(const K &k, const W &w, bool default_value_check = true) { function in class:fst::SparseTupleWeight
187 Push(make_pair(k, w), default_value_check);
190 inline void Push(const Pair &p, bool default_value_check = true) { function in class:fst::SparseTupleWeight
283 ret->Push(k
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTreeNodeStream.cs171 public virtual void Push(int index) { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
175 _calls.Push(_p); // save current index
H A DBufferedTreeNodeStream.cs426 public virtual void Push(int index) { method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
430 calls.Push(p); // save current index
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeNodeStream.cs197 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
203 _calls.Push( _p ); // save current index
H A DBufferedTreeNodeStream.cs505 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
511 calls.Push( p ); // save current index
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc249 void MacroAssembler::Push(Handle<Object> handle) { function in class:v8::internal::MacroAssembler
587 // Push and pop all registers that can hold pointers.
824 Push(lr, fp);
1210 // Push the frame pointer, context, state, and code object.
/external/webrtc/src/common_audio/resampler/
H A Dresampler.cc431 int Resampler::Push(const WebRtc_Word16 * samplesIn, int lengthIn, WebRtc_Word16* samplesOut, function in class:webrtc::Resampler
464 res |= slave_left_->Push(left, lengthIn, out_left, maxLen / 2, actualOutLen_left);
465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
1036 Push(in_buffer_, dataLenToResample, out_buffer_ + out_buffer_size_,
1048 Push(in_buffer_, lengthIn, out_buffer_ + out_buffer_size_,
/external/opencv/cvaux/src/
H A Dcvcalibfilter.cpp437 bool CvCalibFilter::Push( const CvPoint2D32f** pts ) function in class:CvCalibFilter
/external/regex-re2/re2/
H A Dbitstate.cc44 void Push(int id, const char* p, int arg);
119 // Push the triple (id, p, arg) onto the stack, growing it if necessary.
120 void BitState::Push(int id, const char* p, int arg) { function in class:re2::BitState
146 Push(id0, p0, 0);
155 // code that is going to Push and continue
158 // do the ShouldVisit check that Push
179 // Push(ip->out1(), p, 0);
180 // Push(ip->out(), p, 0);
187 Push(id, p, 1); // come back when we're done
204 Push(i
[all...]
/external/valgrind/tsan/
H A Dts_util.h315 void Push(const char *cc) { function in class:MallocCostCenterStack
338 g_malloc_stack.Push(cc);
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h247 // Push and pop the registers that can hold pointers.
493 // Push a new try handler and link it into try handler chain.
760 // Push a handle value.
761 void Push(Handle<Object> handle) { push(Immediate(handle)); } function in class:v8::internal::MacroAssembler
/external/valgrind/unittest/
H A Dwindows_tests.cc399 void Push() { function in namespace:WindowsInterlockedListTest
416 MyThreadArray t(Push, Pop);
/external/chromium/chrome/browser/net/
H A Dpredictor.cc480 work_queue_.Push(url, motivation);
711 void Predictor::HostNameQueue::Push(const GURL& url, function in class:chrome_browser_net::Predictor::HostNameQueue
/external/opencv/cv/src/
H A Dcvinpaint.cpp122 if (!Push(i,j,0)) return false;
129 bool Push(int i, int j, float T) { function in class:CvPriorityQueueFloat
261 Heap->Push(i,j,dist);
392 Heap->Push(i,j,dist);
505 Heap->Push(i,j,dist);
604 Heap->Push(i,j,dist);
695 Heap->Push(i,j,dist);

Completed in 539 milliseconds

12