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

1234

/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/chromium_org/chrome_frame/
H A Dsync_msg_reply_dispatcher.cc9 void SyncMessageReplyDispatcher::Push(IPC::SyncMessage* msg, function in class:SyncMessageReplyDispatcher
/external/chromium_org/mojo/public/bindings/lib/
H A Dmessage_queue.cc31 void MessageQueue::Push(Message* message) { function in class:mojo::MessageQueue
/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/chromium_org/build/android/gyp/
H A Dpush_libraries.py34 # A list so that it is modifiable in Push below.
40 def Push(): function in function:DoPush
48 Push,
/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
H A Dorigin_operation_queue.cc19 void OriginOperationQueue::Push(const GURL& origin, function in class:sync_file_system::OriginOperationQueue
/external/chromium_org/media/base/
H A Dbyte_queue.cc28 void ByteQueue::Push(const uint8* data, int size) { function in class:media::ByteQueue
H A Ddecoder_buffer_queue.cc19 void DecoderBufferQueue::Push(const scoped_refptr<DecoderBuffer>& buffer) { function in class:media::DecoderBufferQueue
/external/chromium_org/media/mp4/
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/v8/tools/
H A Djsmin.py76 def Push(self): member in class:JavaScriptMinifier
104 self.Push()
121 self.Push()
/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/chromium_org/chrome/renderer/net/
H A Dpredictor_queue.cc31 // Push takes an unterminated string plus its length.
35 DnsQueue::PushResult DnsQueue::Push(const char* source, function in class:DnsQueue
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:__anon7167::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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h12 // 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 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/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/chromium_org/chrome/browser/chromeos/drive/
H A Djob_queue.cc48 void JobQueue::Push(JobID id, int priority) { function in class:drive::JobQueue
/external/chromium_org/chromeos/dbus/
H A Dfake_nfc_device_client.cc63 void FakeNfcDeviceClient::Push( function in class:chromeos::FakeNfcDeviceClient

Completed in 787 milliseconds

1234