HomeSort by relevance Sort by last modified time
    Searched refs:PushBack (Results 1 - 25 of 28) sorted by null

1 2

  /external/protobuf/gtest/test/
gtest-listener_test.cc 71 g_events->PushBack(GetFullMethodName("OnTestProgramStart"));
79 g_events->PushBack(message.GetString());
83 g_events->PushBack(GetFullMethodName("OnEnvironmentsSetUpStart"));
87 g_events->PushBack(GetFullMethodName("OnEnvironmentsSetUpEnd"));
91 g_events->PushBack(GetFullMethodName("OnTestCaseStart"));
95 g_events->PushBack(GetFullMethodName("OnTestStart"));
99 g_events->PushBack(GetFullMethodName("OnTestPartResult"));
103 g_events->PushBack(GetFullMethodName("OnTestEnd"));
107 g_events->PushBack(GetFullMethodName("OnTestCaseEnd"));
111 g_events->PushBack(GetFullMethodName("OnEnvironmentsTearDownStart"))
    [all...]
gtest_unittest.cc 555 a.PushBack(1);
559 a.PushBack(2);
560 a.PushBack(3);
565 // Tests Vector::PushBack().
566 TEST(VectorTest, PushBack) {
568 a.PushBack('a');
572 a.PushBack('b');
656 a.PushBack(1);
685 a.PushBack('a');
686 a.PushBack('b')
    [all...]
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 49 int PushBack(const void* ptr);
50 int PushBack(const unsigned int item_id);
68 void PushBack(ListNoStlItem* item);
list_stl.h 45 int PushBack(const void* ptr);
46 int 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...]
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)
  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 49 int PushBack(const void* ptr);
54 int PushBack(const unsigned int item_id);
  /external/v8/src/
scanner-character-streams.h 44 virtual void PushBack(uc32 character);
108 virtual void PushBack(uc32 character) {
scanner.cc 76 PushBack(digits[j]);
286 PushBack('-'); // undo Advance()
288 PushBack('-'); // undo Advance()
345 PushBack('-'); // undo Advance()
347 PushBack('!'); // undo Advance()
809 if (result < 0) PushBack('u');
1058 PushBack(chars_read[i]);
scanner.h 125 virtual void PushBack(int32_t code_unit) = 0;
487 void PushBack(uc32 ch) {
488 source_->PushBack(c0_);
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
  /external/chromium/sdch/open-vcdiff/src/
output_string_test.cc 52 TEST_F(OutputStringTest, PushBack) {
99 TEST_F(OutputCRopeTest, PushBack) {
  /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) {
condition_variable.h 123 void PushBack(Event* other);
  /external/protobuf/gtest/src/
gtest-test-part.cc 79 array_->PushBack(result);
gtest-internal-inl.h 280 void PushBack(const E& element) { Insert(element, size_); }
444 clone->PushBack(GetElement(i));
    [all...]
  /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());
factor-weight.h 94 w2.PushBack(iter.Value());
  /external/webrtc/src/system_wrappers/test/list/
list.cc 80 // Test PushBack 1
84 FailTest(test_list.PushBack((void*)&element_array[i]) != 0);
86 // Test PushBack 2
87 FailTest(test_list.PushBack(element_array[kNumberOfElements - 2]) != 0);
88 FailTest(test_list.PushBack(element_array[kNumberOfElements - 1]) != 0);
  /external/v8/test/cctest/
test-parsing.cc 479 // Pushback, re-read, pushback again.
484 uc16_stream.PushBack(c0);
485 string_stream.PushBack(c0);
486 utf8_stream.PushBack(c0);
501 uc16_stream.PushBack(c0);
502 string_stream.PushBack(c0);
503 utf8_stream.PushBack(c0);
595 stream.PushBack(i);
    [all...]
  /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/sdch/open-vcdiff/src/gtest/
gtest.cc 455 list_->PushBack(result);
    [all...]

Completed in 463 milliseconds

1 2