/prebuilts/go/darwin-x86/src/container/list/ |
list_test.go | 80 e3 := l.PushBack(3) 81 e4 := l.PushBack("banana") 163 l1.PushBack(1) 164 l1.PushBack(2) 165 l1.PushBack(3) 167 l2.PushBack(4) 168 l2.PushBack(5) 206 e1 := l.PushBack(1) 207 e2 := l.PushBack(2) 218 l1.PushBack(1 [all...] |
example_test.go | 15 e4 := l.PushBack(4)
|
/prebuilts/go/linux-x86/src/container/list/ |
list_test.go | 80 e3 := l.PushBack(3) 81 e4 := l.PushBack("banana") 163 l1.PushBack(1) 164 l1.PushBack(2) 165 l1.PushBack(3) 167 l2.PushBack(4) 168 l2.PushBack(5) 206 e1 := l.PushBack(1) 207 e2 := l.PushBack(2) 218 l1.PushBack(1 [all...] |
example_test.go | 15 e4 := l.PushBack(4)
|
/external/webrtc/webrtc/base/ |
scopedptrcollection_unittest.cc | 47 TEST_F(ScopedPtrCollectionTest, PushBack) { 52 collection_->PushBack(new InstanceCounter(&num_instances_)); 62 collection_->PushBack(ic);
|
scopedptrcollection.h | 42 void PushBack(T* t) {
|
/libcore/ojluni/src/main/java/java/io/ |
PushbackReader.java | 39 /** Pushback buffer */ 46 * Creates a new pushback reader with a pushback buffer of the given size. 49 * @param size The size of the pushback buffer 62 * Creates a new pushback reader with a one-character pushback buffer. 143 * pushback buffer. After this method returns, the next character to be read 148 * @exception IOException If the pushback buffer is full, 155 throw new IOException("Pushback buffer overflow"); 162 * front of the pushback buffer. After this method returns, the nex [all...] |
PushbackInputStream.java | 54 * The pushback buffer. 60 * The position within the pushback buffer from which the next byte will 79 * with a pushback buffer of the specified <code>size</code>, 83 * <code>pushBack</code> is initialized to 87 * @param size the size of the pushback buffer. 105 * <code>pushBack</code> is initialized to 196 * Pushes back a byte by copying it to the front of the pushback buffer. 202 * @exception IOException If there is not enough room in the pushback 216 * of the pushback buffer. After this method returns, the next byte to be 223 * @exception IOException If there is not enough room in the pushback [all...] |
LineNumberInputStream.java | 52 int pushBack = -1; 92 int c = pushBack; 95 pushBack = -1; 102 pushBack = in.read(); 103 if (pushBack == '\n') { 104 pushBack = -1; 241 return (pushBack == -1) ? super.available()/2 : super.available()/2 + 1; 261 markPushBack = pushBack; 290 pushBack = markPushBack;
|
/external/deqp/framework/delibs/decpp/ |
dePoolArray.cpp | 39 /* Test pushBack(). */ 45 arr.pushBack(i); 46 arr16.pushBack((deInt16)i); 77 arr.pushBack(i); 78 arr16.pushBack((deInt16)i); 89 /* Test set() and pushBack() with reserve(). */ 96 arr2.pushBack(i); 113 /* Test pushBack(). */ 119 arr.pushBack(i); 120 arr16.pushBack((deInt16)i) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/ |
Lexer.java | 164 pushBack(accept_length); 179 pushBack(accept_length); 193 pushBack(accept_length); 207 pushBack(accept_length); 221 pushBack(accept_length); 235 pushBack(accept_length); 249 pushBack(accept_length); 263 pushBack(accept_length); 278 pushBack(accept_length); 292 pushBack(accept_length) [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/ |
mock_audio_vector.h | 30 MOCK_METHOD1(PushBack, 32 MOCK_METHOD2(PushBack,
|
/external/eigen/unsupported/test/ |
cxx11_runqueue.cpp | 64 VERIFY_IS_EQUAL(0, q.PushBack(7)); 72 VERIFY_IS_EQUAL(0, q.PushBack(8)); 74 VERIFY_IS_EQUAL(0, q.PushBack(9)); 76 VERIFY_IS_EQUAL(0, q.PushBack(10)); 78 VERIFY_IS_EQUAL(0, q.PushBack(11)); 80 VERIFY_IS_EQUAL(12, q.PushBack(12)); 132 VERIFY_IS_EQUAL(0, q.PushBack(1)); 158 // One thread (owner) calls PushFront/PopFront, other threads call PushBack/ 191 if (q.PushBack(j) == 0) { 220 while ((v = q.PushBack(v)) != 0) EIGEN_THREAD_YIELD() [all...] |
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_vector_test.cc | 22 v.PushBack(42); 25 v.PushBack(43); 34 v.PushBack(i);
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
audio_vector_unittest.cc | 62 // Test the PushBack method and the CopyFrom method. The Clear method is also 67 vec.PushBack(array_, array_length()); 89 vec.PushBack(array_, array_length()); 93 // Test the PushBack method with another AudioVector as input argument. 105 vec1.PushBack(vec2); 144 vec.PushBack(array_, array_length()); 157 vec.PushBack(array_, array_length()); 170 vec.PushBack(array_, array_length()); 182 vec.PushBack(array_, array_length()); 214 vec.PushBack(array_, array_length()) [all...] |
audio_multi_vector.cc | 73 channels_[0]->PushBack(append_this, length); 86 channels_[channel]->PushBack(temp_array, length_per_channel); 91 void AudioMultiVector::PushBack(const AudioMultiVector& append_this) { 95 channels_[i]->PushBack(append_this[i]); 108 channels_[i]->PushBack(&append_this[i][index], length);
|
audio_vector.cc | 62 void AudioVector::PushBack(const AudioVector& append_this) { 63 PushBack(append_this.array_.get(), append_this.Size()); 66 void AudioVector::PushBack(const int16_t* append_this, size_t length) { 160 PushBack(&append_this[fade_length], samples_to_push_back);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
valuetest.cpp | 81 x.PushBack(1, allocator).PushBack(2, allocator).PushBack(3, allocator).PushBack(4, allocator);
168 .AddMember("a", Value(kArrayType).Move().PushBack(1, allocator).PushBack(2, allocator).PushBack(3, allocator), allocator);
217 x["a"].PushBack(4, allocator);
249 v1.SetArray().PushBack(1234, a);
254 v1.PushBack(Value().SetString("foo", a), a); // push string copy [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
tutorial.md | 329 This is called move assignment operator in C++11. As RapidJSON supports C++03, it adopts move semantics using assignment operator, and all other modifying function like `AddMember()`, `PushBack()`. 333 Sometimes, it is convenient to construct a Value in place, before passing it to one of the "moving" functions, like `PushBack()` or `AddMember()`. As temporary objects can't be converted to proper Value references, the convenience function `Move()` is available: 338 // a.PushBack(Value(42), allocator); // will not compile 339 a.PushBack(Value().SetInt(42), allocator); // fluent API 340 a.PushBack(Value(42).Move(), allocator); // same as above 396 * `Value& PushBack(Value&, Allocator&)` 397 * `template <typename T> GenericValue& PushBack(T, Allocator&)` 402 Note that, `Reserve(...)` and `PushBack(...)` may allocate memory for the array elements, therefore require an allocator. 404 Here is an example of `PushBack()`: 411 a.PushBack(i, allocator); // allocator is needed for potential realloc() [all...] |
/bootable/recovery/tests/unit/ |
rangeset_test.cpp | 86 TEST(RangeSetTest, PushBack) { 90 ASSERT_TRUE(rs.PushBack({ 3, 5 })); 93 ASSERT_TRUE(rs.PushBack({ 5, 15 })); 102 ASSERT_FALSE(rs.PushBack({ 5, 3 })); 104 ASSERT_FALSE(rs.PushBack({ 15, 15 })); 107 ASSERT_TRUE(rs.PushBack({ 5, 15 })); 108 ASSERT_FALSE(rs.PushBack({ 5, std::numeric_limits<size_t>::max() - 2 }));
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_rtl_report.cc | 158 ReportStack **rs = rep_->stacks.PushBack(); 167 rep_->mops.PushBack(mop); 180 mop->mset.PushBack(mtx); 185 rep_->unique_tids.PushBack(unique_tid); 195 rep_->threads.PushBack(rt); 265 rep_->mutexes.PushBack(rm); 298 rep_->mutexes.PushBack(rm); 317 rep_->locs.PushBack(loc); 337 rep_->locs.PushBack(loc); 347 rep_->locs.PushBack(loc) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
shlex.py | 49 self.pushback = deque()
63 self.pushback.appendleft(tok)
90 if self.pushback:
91 tok = self.pushback.popleft()
95 # No pushback. Get a token.
229 self.pushback.appendleft(nextchar)
|
/external/python/cpython2/Lib/ |
shlex.py | 49 self.pushback = deque() 63 self.pushback.appendleft(tok) 90 if self.pushback: 91 tok = self.pushback.popleft() 95 # No pushback. Get a token. 229 self.pushback.appendleft(nextchar)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
shlex.py | 49 self.pushback = deque() 63 self.pushback.appendleft(tok) 90 if self.pushback: 91 tok = self.pushback.popleft() 95 # No pushback. Get a token. 229 self.pushback.appendleft(nextchar)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
shlex.py | 49 self.pushback = deque() 63 self.pushback.appendleft(tok) 90 if self.pushback: 91 tok = self.pushback.popleft() 95 # No pushback. Get a token. 229 self.pushback.appendleft(nextchar)
|