Searched defs:Push (Results 1 - 25 of 90) sorted by path

1234

/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs426 public virtual void Push(int index) { method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
430 calls.Push(p); // save current index
H A DCommonTreeNodeStream.cs171 public virtual void Push(int index) { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
175 _calls.Push(_p); // save current index
/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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs505 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
511 calls.Push( p ); // save current index
H A DCommonTreeNodeStream.cs197 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
203 _calls.Push( _p ); // save current index
/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/build/android/gyp/
H A Dpush_libraries.py33 # A list so that it is modifiable in Push below.
39 def Push(): function in function:DoPush
47 Push,
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py565 self._adb.Push(host_script_path, temp_script_file.name)
1089 def Push(host, device): function in function:AndroidCommands.PushIfNeeded
1090 # NOTE: We can't use adb_interface.Push() because it hardcodes a timeout
1106 logging.error('Push failed, retrying in %d seconds: %s' %
1110 raise Exception('Push failed: %s' % output)
1121 Push(host_path, device_path)
1124 Push(f[0], f[1])
1147 self._adb.Push(f.name, filename)
1281 self._adb.Push(temp_props_file.name, LOCAL_PROPERTIES_PATH)
1875 self._adb.Push(host_script_pat
[all...]
/external/chromium_org/build/android/pylib/device/
H A Dadb_wrapper.py129 def Push(self, local, remote, timeout=60*5, retries=_DEFAULT_RETRIES): member in class:AdbWrapper
/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/chrome/browser/net/
H A Dpredictor.cc736 // TODO(jar): Push GURL transport further back into renderer, but this will
1064 work_queue_.Push(url, motivation);
1204 void Predictor::HostNameQueue::Push(const GURL& url, function in class:chrome_browser_net::Predictor::HostNameQueue
/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:__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/chromeos/dbus/
H A Dfake_nfc_device_client.cc93 void FakeNfcDeviceClient::Push( function in class:chromeos::FakeNfcDeviceClient
/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_gesture_controller.h60 void Push(scoped_ptr<SyntheticGesture> gesture, function in class:content::SyntheticGestureController::GestureAndCallbackQueue
/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/content/renderer/media/
H A Dmedia_stream_audio_processor.cc125 // Since we require every Push to be followed by as many Consumes as
136 void Push(const media::AudioBus* source) { function in class:content::MediaStreamAudioFifo
142 fifo_->Push(source);
229 capture_fifo_->Push(audio_source);
337 render_fifo_->Push(audio_bus);
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dcast_transport_unittest.cc57 // Push()ed into the queue. Callback completion is simulated by invoking
58 // Pop() in the same order as Push().
65 void Push(const net::CompletionCallback& cb) { cb_queue_.push(cb); } function in class:extensions::core_api::cast_channel::__anon8076::CompletionQueue
109 completion_queue->Push(testing::get<cb_idx>(args));
/external/chromium_org/ipc/
H A Dipc_sync_channel.cc248 void SyncChannel::SyncContext::Push(SyncMessage* sync_msg) { function in class:IPC::SyncChannel::SyncContext
487 context->Push(sync_msg);
/external/chromium_org/media/base/
H A Daudio_block_fifo.cc25 void AudioBlockFifo::Push(const void* source, function in class:media::AudioBlockFifo
H A Daudio_block_fifo_unittest.cc21 Push(fifo, frames_to_push, channels);
29 void Push(AudioBlockFifo* fifo, int frames_to_push, int channels) { function in class:media::AudioBlockFifoTest
35 fifo->Push(data.get(), frames_to_push, bytes_per_sample);
66 TEST_F(AudioBlockFifoTest, Push) {
72 // Push frames / 2 of data until FIFO is full.
76 // Push frames of data until FIFO is full.
80 // Push 1.5 * frames of data.
85 // Perform a sequence of Push/Consume calls to different degrees, and verify
150 // Perform a sequence of Push/Consume calls to a 1 block FIFO.
175 Push(
[all...]
H A Daudio_fifo.cc55 void AudioFifo::Push(const AudioBus* source) { function in class:media::AudioFifo
H A Dbyte_queue.cc28 void ByteQueue::Push(const uint8* data, int size) { function in class:media::ByteQueue

Completed in 5561 milliseconds

1234