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

  /external/v8/preparser/
preparser-process.cc 54 virtual void PushBack(int32_t ch) {
59 fprintf(stderr, "Invalid pushback: '%c' at offset %d.", ch, offset_);
  /external/v8/src/
scanner.h 46 virtual void PushBack(uc32 character);
110 virtual void PushBack(uc32 character) {
preparser-api.cc 47 * It also maintains unlimited pushback capability, but optimized
50 * in the current buffer. There is room for a few pushback'ed chars before
73 virtual void PushBack(uc32 ch) {
82 // We have overflowed the pushback space at the beginning of buffer_.
83 // Switch to using a separate allocated pushback buffer.
94 // Hit the bottom of the allocated pushback buffer.
119 // Copy the top of the buffer into the pushback area.
145 // Buffer holding first kPushBackSize characters of pushback buffer,
147 // The pushback buffer is only used if pushing back characters past
152 // Only if that pushback buffer at the start of buffer_ isn't sufficien
    [all...]
scanner.cc 51 void BufferedUC16CharacterStream::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-base.h 104 virtual void PushBack(int32_t character) = 0;
399 void PushBack(uc32 ch) {
400 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 24 // Clarification: ListWrapper has two versions of PushBack(..). It takes an
46 virtual int PushBack(const unsigned int item_id) = 0;
99 virtual int PushBack(const unsigned int item_id) {
100 return list_.PushBack(item_id);
157 virtual int PushBack(const unsigned int item_id) {
163 const int return_value = list_.PushBack(
231 if (return_value->PushBack(i) == -1) {
247 if (return_value->PushBack(kNumberOfElements - i - 1) == -1) {
275 if (return_value->PushBack(push_value) == -1) {
338 // Reverse the list using PushBack and Previous
    [all...]
  /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/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/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 238 void PushBack(const E & element) {
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 300 void PushBack(const E & element) {
    [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 235 milliseconds