HomeSort by relevance Sort by last modified time
    Searched defs:PushBack (Results 1 - 24 of 24) sorted by null

  /art/compiler/
leb128_encoder.h 30 void PushBack(uint32_t value) {
47 PushBack(*cur);
  /external/chromium_org/third_party/libjingle/source/talk/base/
atomicops.h 92 bool PushBack(T value) {
111 // at the same time as PushBack.
127 // This method can be safely called at the same time as PushBack.
  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 61 T *PushBack(T v = T()) {
  /external/chromium_org/v8/src/
scanner-character-streams.h 44 virtual void PushBack(uc32 character);
108 virtual void PushBack(uc32 character) {
preparser-api.cc 53 * It also maintains unlimited pushback capability, but optimized
56 * in the current buffer. There is room for a few pushback'ed chars before
79 virtual void PushBack(uc32 ch) {
88 // We have overflowed the pushback space at the beginning of buffer_.
89 // Switch to using a separate allocated pushback buffer.
100 // Hit the bottom of the allocated pushback buffer.
125 // Copy the top of the buffer into the pushback area.
157 // Buffer holding first kPushBackSize characters of pushback buffer,
159 // The pushback buffer is only used if pushing back characters past
164 // Only if that pushback buffer at the start of buffer_ isn't sufficien
    [all...]
scanner-character-streams.cc 52 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
68 // In pushback mode, the end of the buffer contains pushback,
70 // contains valid data that comes just after the pushback.
75 // Enter pushback mode.
80 // Ensure that there is room for at least one pushback.
96 // Leave pushback mode.
111 // Leave pushback mode (i.e., ignore that there might be valid data
scanner.h 106 virtual void PushBack(int32_t code_unit) = 0;
480 void PushBack(uc32 ch) {
481 source_->PushBack(c0_);
  /external/v8/src/
scanner-character-streams.h 44 virtual void PushBack(uc32 character);
108 virtual void PushBack(uc32 character) {
preparser-api.cc 53 * It also maintains unlimited pushback capability, but optimized
56 * in the current buffer. There is room for a few pushback'ed chars before
79 virtual void PushBack(uc32 ch) {
88 // We have overflowed the pushback space at the beginning of buffer_.
89 // Switch to using a separate allocated pushback buffer.
100 // Hit the bottom of the allocated pushback buffer.
125 // Copy the top of the buffer into the pushback area.
157 // Buffer holding first kPushBackSize characters of pushback buffer,
159 // The pushback buffer is only used if pushing back characters past
164 // Only if that pushback buffer at the start of buffer_ isn't sufficien
    [all...]
scanner-character-streams.cc 51 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
67 // In pushback mode, the end of the buffer contains pushback,
69 // contains valid data that comes just after the pushback.
74 // Enter pushback mode.
79 // Ensure that there is room for at least one pushback.
95 // Leave pushback mode.
110 // Leave pushback mode (i.e., ignore that there might be valid data
scanner.h 125 virtual void PushBack(int32_t code_unit) = 0;
487 void PushBack(uc32 ch) {
488 source_->PushBack(c0_);
  /external/webrtc/src/system_wrappers/source/
list_no_stl.cc 79 int ListWrapper::PushBack(const void* ptr)
87 int ListWrapper::PushBack(const unsigned int item_id)
list_stl.cc 71 int ListWrapper::PushBack(const void* ptr)
78 int ListWrapper::PushBack(const unsigned int item_id)
list_unittest.cc 26 // Clarification: ListWrapper has two versions of PushBack(..). It takes an
46 virtual int PushBack(const unsigned int item_id) = 0;
123 virtual int PushBack(const unsigned int item_id) {
124 return list_.PushBack(item_id);
182 virtual int PushBack(const unsigned int item_id) {
188 const int return_value = list_.PushBack(
245 if (return_value->PushBack(i) == -1) {
261 if (return_value->PushBack(kNumberOfElements - i - 1) == -1) {
289 if (return_value->PushBack(push_value) == -1) {
355 // Reverse the list using PushBack and Previous
    [all...]
  /art/runtime/gc/accounting/
atomic_stack.h 76 void PushBack(const T& value) {
  /external/chromium/base/synchronization/
condition_variable_win.cc 125 waiting_list_.PushBack(cv_event);
140 recycling_list_.PushBack(used_event);
205 void ConditionVariable::Event::PushBack(Event* other) {
  /external/chromium_org/v8/preparser/
preparser-process.cc 69 virtual void PushBack(int32_t ch) {
74 fprintf(stderr, "Invalid pushback: '%c' at offset %d.", ch, offset_);
  /external/openfst/src/include/fst/
string-weight.h 81 PushBack(*iter);
84 explicit StringWeight(L l) { Init(); PushBack(l); }
150 void PushBack(L l) {
241 PushBack(label);
290 // PushBack(iter.Value());
359 w.PushBack(l);
407 sum.PushBack(iter1.Value());
443 prod.PushBack(iter.Value());
474 div.PushBack(iter.Value());
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
string-weight.h 78 PushBack(*iter);
81 explicit StringWeight(L l) { Init(); PushBack(l); }
142 void PushBack(L l) {
233 PushBack(label);
282 // PushBack(iter.Value());
351 w.PushBack(l);
391 sum.PushBack(iter1.Value());
423 prod.PushBack(iter.Value());
449 div.PushBack(iter.Value());
  /external/v8/preparser/
preparser-process.cc 69 virtual void PushBack(int32_t ch) {
74 fprintf(stderr, "Invalid pushback: '%c' at offset %d.", ch, offset_);
  /external/chromium_org/base/synchronization/
condition_variable_win.cc 154 void PushBack(Event* other);
318 waiting_list_.PushBack(cv_event);
333 recycling_list_.PushBack(used_event);
398 void WinXPCondVar::Event::PushBack(Event* other) {
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 238 void PushBack(const E & element) {
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-internal-inl.h 284 void PushBack(const E& element) { Insert(element, size_); }
448 clone->PushBack(GetElement(i));
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 280 void PushBack(const E& element) { Insert(element, size_); }
444 clone->PushBack(GetElement(i));
    [all...]

Completed in 466 milliseconds