/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
H A D | StackList.cs | 52 public void Push(object item) method in class:Antlr.Runtime.Collections.StackList
|
/external/openfst/src/include/fst/script/ |
H A D | push.h | 31 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 D | push.cc | 25 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 D | ListStack`1.cs | 93 public void Push(T item) method in class:Antlr.Runtime.Misc.ListStack
|
/external/lldb/source/Core/ |
H A D | InputReaderStack.cpp | 39 InputReaderStack::Push (const lldb::InputReaderSP& reader_sp) function in class:InputReaderStack
|
/external/v8/tools/ |
H A D | jsmin.py | 76 def Push(self): member in class:JavaScriptMinifier 104 self.Push() 121 self.Push()
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_lfstack.h | 12 // The memory passed to Push() must not be ever munmap'ed. 36 void Push(T *p) { function in struct:__sanitizer::LFStack
|
/external/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCAPElim.cpp | 97 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/Delphi/Sources/Antlr3.Runtime/ |
H A D | Antlr.Runtime.Collections.pas | 63 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 D | push.h | 36 // 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 D | sparse-tuple-weight.h | 75 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 D | CommonTreeNodeStream.cs | 171 public virtual void Push(int index) { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream 175 _calls.Push(_p); // save current index
|
H A D | BufferedTreeNodeStream.cs | 426 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 D | CommonTreeNodeStream.cs | 197 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.CommonTreeNodeStream 203 _calls.Push( _p ); // save current index
|
H A D | BufferedTreeNodeStream.cs | 505 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream 511 calls.Push( p ); // save current index
|
/external/webrtc/src/common_audio/resampler/ |
H A D | resampler.cc | 431 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/llvm/lib/Target/X86/ |
H A D | X86CallFrameOptimization.cpp | 412 MachineInstr *Push = local 417 Push->addOperand(DefMov->getOperand(i));
|
/external/opencv/cvaux/src/ |
H A D | cvcalibfilter.cpp | 437 bool CvCalibFilter::Push( const CvPoint2D32f** pts ) function in class:CvCalibFilter
|
/external/regex-re2/re2/ |
H A D | bitstate.cc | 44 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/v8/src/arm/ |
H A D | macro-assembler-arm.cc | 216 void MacroAssembler::Push(Handle<Object> handle) { function in class:v8::internal::MacroAssembler 712 // Push and pop all registers that can hold pointers. 965 Push(Smi::FromInt(StackFrame::STUB)); 1044 Push(lr, fp); 1413 // Push the frame pointer, context, state, and code object.
|
/external/v8/src/ |
H A D | effects.h | 320 NestedEffects Push() { function in class:v8::internal::NestedEffects
|
/external/opencv/cv/src/ |
H A D | cvinpaint.cpp | 122 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);
|
/external/v8/src/compiler/ |
H A D | ast-graph-builder.h | 229 void Push(Node* node) { function in class:v8::internal::compiler::AstGraphBuilder::Environment 370 owner_->set_breakable(this); // Push. 404 owner_->set_execution_context(this); // Push.
|
/external/v8/src/ia32/ |
H A D | macro-assembler-ia32.h | 271 // Push and pop the registers that can hold pointers. 565 // Push a new try handler and link it into try handler chain. 825 void Push(Register src) { push(src); } function in class:v8::internal::MacroAssembler 844 // Push a handle value. 845 void Push(Handle<Object> handle) { push(Immediate(handle)); } function in class:v8::internal::MacroAssembler 846 void Push(Smi* smi) { Push(Handle<Smi>(smi, isolate())); } function in class:v8::internal::MacroAssembler
|
/external/v8/src/x87/ |
H A D | macro-assembler-x87.h | 249 // Push and pop the registers that can hold pointers. 535 // Push a new try handler and link it into try handler chain. 793 void Push(Register src) { push(src); } function in class:v8::internal::MacroAssembler 809 // Push a handle value. 810 void Push(Handle<Object> handle) { push(Immediate(handle)); } function in class:v8::internal::MacroAssembler 811 void Push(Smi* smi) { Push(Handle<Smi>(smi, isolate())); } function in class:v8::internal::MacroAssembler
|