HomeSort by relevance Sort by last modified time
    Searched full:pushback (Results 26 - 50 of 181) sorted by null

12 3 4 5 6 7 8

  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_vector.h 49 virtual void PushBack(const AudioVector& append_this);
52 virtual void PushBack(const int16_t* append_this, size_t length);
sync_buffer.cc 23 void SyncBuffer::PushBack(const AudioMultiVector& append_this) {
25 AudioMultiVector::PushBack(append_this);
sync_buffer_unittest.cc 66 sync_buffer.PushBack(new_data);
103 sync_buffer.PushBack(new_data);
139 sync_buffer.PushBack(new_data);
audio_multi_vector_unittest.cc 133 // Test the PushBack method with another AudioMultiVector as input argument.
149 vec1.PushBack(vec2);
278 // Test the PushBack method with another AudioMultiVector as input argument.
313 ref.PushBack(vec);
sync_buffer.h 35 void PushBack(const AudioMultiVector& append_this) override;
audio_multi_vector.h 57 virtual void PushBack(const AudioMultiVector& append_this);
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
tutorial.cpp 105 a.PushBack(i, allocator); // May look a bit strange, allocator is needed for potentially realloc. We normally uses the document's.
108 a.PushBack("Lua", allocator).PushBack("Mio", allocator);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 73 * pushback queue. This is necessary (vs. reading from the
81 //Debug.verify(pushbackq.count() == 0, "PopulatePushbackQueue called when pushback queue was not empty!");
110 * Causes the pushback queue to get populated if it is empty, then
  /packages/services/Telephony/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 73 * pushback queue. This is necessary (vs. reading from the
81 //Debug.verify(pushbackq.count() == 0, "PopulatePushbackQueue called when pushback queue was not empty!");
110 * Causes the pushback queue to get populated if it is empty, then
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
biginteger.h 82 PushBack(1);
100 PushBack(k);
123 PushBack(k);
234 void PushBack(Type digit) {
  /external/v8/src/parsing/
scanner-character-streams.cc 62 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
78 // In pushback mode, the end of the buffer contains pushback,
80 // contains valid data that comes just after the pushback.
85 // Enter pushback mode.
90 // Ensure that there is room for at least one pushback.
106 // Leave pushback mode.
121 // Leave pushback mode (i.e., ignore that there might be valid data
scanner.h 80 virtual void PushBack(int32_t code_unit) = 0;
549 source_->PushBack(c1);
556 void PushBack(uc32 ch) {
558 source_->PushBack(unibrow::Utf16::TrailSurrogate(c0_));
559 source_->PushBack(unibrow::Utf16::LeadSurrogate(c0_));
561 source_->PushBack(c0_);
scanner.cc 322 PushBack('-'); // undo Advance()
324 PushBack('-'); // undo Advance()
442 PushBack('-'); // undo Advance()
444 PushBack('!'); // undo Advance()
581 PushBack(c0_);
635 PushBack('.');
909 PushBack(c);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PushbackReaderTest.java 304 //a pushback reader with one character buffer
319 //a pushback reader with one character buffer
335 //a pushback reader with one character buffer
StreamTokenizerTest.java 242 * java.io.StreamTokenizer#pushBack()
248 st.pushBack();
249 assertTrue("PushBack failed.",
  /prebuilts/go/darwin-x86/src/container/list/
list.go 136 // PushBack inserts a new element e with value v at the back of list l and returns e.
137 func (l *List) PushBack(v interface{}) *Element {
  /prebuilts/go/linux-x86/src/container/list/
list.go 136 // PushBack inserts a new element e with value v at the back of list l and returns e.
137 func (l *List) PushBack(v interface{}) *Element {
  /external/opencv3/samples/cpp/
videostab.cpp 507 inpainters->pushBack(inp);
513 inpainters->pushBack(inp);
516 inpainters->pushBack(makePtr<ColorAverageInpainter>());
518 inpainters->pushBack(makePtr<ColorInpainter>(int(INPAINT_NS), argd("ci-radius")));
520 inpainters->pushBack(makePtr<ColorInpainter>(int(INPAINT_TELEA), argd("ci-radius")));
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 200 d1.SetArray().PushBack(1, a).PushBack(2, a);
213 d2.SetArray().PushBack(3, a);
  /external/deqp/framework/delibs/depool/
dePoolArray.c 164 /* Test pushBack(). */
214 /* Test set() and pushBack() with reserve(). */
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeBuilder.java 58 * back if it is not valid. e.g. "&lt;?csX" : not a tag, so pushback.
  /external/opencv3/modules/videostab/include/opencv2/videostab/
inpainting.hpp 111 void pushBack(Ptr<InpainterBase> inpainter) { inpainters_.push_back(inpainter); }
motion_stabilizing.hpp 73 void pushBack(Ptr<IMotionStabilizer> stabilizer) { stabilizers_.push_back(stabilizer); }
  /frameworks/opt/net/wifi/tests/wifitests/jni/
wifi_hal_mock.cpp 89 array.PushBack((int) byte_array[i], allocator);
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 845 PushbackInputStream pushback = new PushbackInputStream(in, MAX_BOM_LENGTH); local
851 int amountRead = pushback.read(start, 0, MAX_BOM_LENGTH);
854 pushback.unread(start, bomLength, amountRead - bomLength);
856 reader = (encoding == null) ? new InputStreamReader(pushback) : new InputStreamReader(pushback, encoding);
    [all...]

Completed in 399 milliseconds

12 3 4 5 6 7 8