Home
last modified time | relevance | path

Searched refs:addLast (Results 1 – 25 of 76) sorted by relevance

1234

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/
DThreadSafeHeapTest.kt26 h.addLast(n1) in compareTo()
29 h.addLast(n2) in compareTo()
32 h.addLast(n3) in compareTo()
35 h.addLast(n4) in compareTo()
38 h.addLast(n5) in compareTo()
59 repeat(n) { h.addLast(Node(a[it])) } in testRandomSort()
74 h.addLast(node) in testRandomRemove()
DLockFreeTaskQueueTest.kt30 assertTrue(q.addLast(1)) in <lambda>()
33 assertTrue(q.addLast(2)) in <lambda>()
36 assertTrue(q.addLast(3)) in <lambda>()
45 assertTrue(q.addLast(4)) in <lambda>()
51 assertFalse(q.addLast(5)) in <lambda>()
68 assertTrue(q.addLast(i)) in <lambda>()
DLockFreeLinkedListTest.kt17 val n1 = IntNode(1).apply { list.addLast(this) } in testSimpleAddLast()
19 val n2 = IntNode(2).apply { list.addLast(this) } in testSimpleAddLast()
21 val n3 = IntNode(3).apply { list.addLast(this) } in testSimpleAddLast()
23 val n4 = IntNode(4).apply { list.addLast(this) } in testSimpleAddLast()
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/test/internal/
DLinkedListTest.kt19 val n1 = IntNode(1).apply { list.addLast(this) } in testSimpleAddLastRemove()
21 val n2 = IntNode(2).apply { list.addLast(this) } in testSimpleAddLastRemove()
23 val n3 = IntNode(3).apply { list.addLast(this) } in testSimpleAddLastRemove()
25 val n4 = IntNode(4).apply { list.addLast(this) } in testSimpleAddLastRemove()
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/test/internal/
DLinkedListTest.kt19 val n1 = IntNode(1).apply { list.addLast(this) } in testSimpleAddLastRemove()
21 val n2 = IntNode(2).apply { list.addLast(this) } in testSimpleAddLastRemove()
23 val n3 = IntNode(3).apply { list.addLast(this) } in testSimpleAddLastRemove()
25 val n4 = IntNode(4).apply { list.addLast(this) } in testSimpleAddLastRemove()
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DLinkedList.kt26 public fun addLast(node: Node) { in addLast() method in kotlinx.coroutines.internal.LinkedListNode
46 addLast(node) in addOneIfEmpty()
52 addLast(node) in addLastIf()
58 addLast(node) in addLastIfPrev()
69 addLast(node) in addLastIfPrevAndIf()
99 protected override fun onComplete() = queue.addLast(node) in onPrepare()
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/internal/
DLinkedList.kt28 public fun addLast(node: Node) { in addLast() method in kotlinx.coroutines.internal.LinkedListNode
48 addLast(node) in addOneIfEmpty()
54 addLast(node) in addLastIf()
60 addLast(node) in addLastIfPrev()
71 addLast(node) in addLastIfPrevAndIf()
101 protected override fun onComplete() = queue.addLast(node) in onPrepare()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/linearizability/
DLockFreeTaskQueueLCStressTest.kt29 fun addLast(@Param(name = "value") value: Int) = q.addLast(value) in close() method in kotlinx.coroutines.linearizability.SCLockFreeTaskQueueLCStressTest
61 fun addLast(@Param(name = "value") value: Int) = q.addLast(value) in hashCode() method in kotlinx.coroutines.linearizability.MCLockFreeTaskQueueLCStressTest
DLockFreeListLCStressTest.kt23 fun addLast(@Param(name = "value") value: Int) { in addLast() method
24 q.addLast(Node(value)) in addLast()
/external/guava/android/guava/src/com/google/common/collect/
DTreeTraverser.java133 stack.addLast(Iterators.singletonIterator(checkNotNull(root)));
150 stack.addLast(childItr);
196 stack.addLast(expand(root));
205 stack.addLast(expand(child));
DForwardingDeque.java56 public void addLast(E e) { in addLast() method in ForwardingDeque
57 delegate().addLast(e); in addLast()
/external/guava/guava/src/com/google/common/collect/
DTreeTraverser.java146 stack.addLast(Iterators.singletonIterator(checkNotNull(root)));
163 stack.addLast(childItr);
221 stack.addLast(expand(root));
230 stack.addLast(expand(child));
DForwardingDeque.java56 public void addLast(E e) { in addLast() method in ForwardingDeque
57 delegate().addLast(e); in addLast()
/external/turbine/java/com/google/turbine/parse/
DVariableInitializerParser.java105 ltIndices.addLast(tokens.size()); in parseInitializers()
106 commaIndices.addLast(commas.size()); in parseInitializers()
116 ltIndices.addLast(tokens.size()); in parseInitializers()
117 commaIndices.addLast(commas.size()); in parseInitializers()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DWorkQueue.kt77 return addLast(previous, globalQueue) in <lambda>()
81 fun addLast(task: Task, globalQueue: GlobalQueue): Boolean { in <lambda>() method in kotlinx.coroutines.scheduling.WorkQueue
154 check(globalQueue.addLast(task)) { "GlobalQueue could not be closed yet" } in <lambda>()
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
DNettyHttpClient.java75 pipeline.addLast("ssl", new SslHandler(engine)); in prepare()
78 pipeline.addLast("codec", new HttpClientCodec()); in prepare()
79 pipeline.addLast("inflater", new HttpContentDecompressor()); in prepare()
80 pipeline.addLast("handler", new HttpChannel(channel)); in prepare()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DEventLoop.common.kt86 queue.addLast(task) in <lambda>()
292 when ((queue as Queue<Runnable>).addLast(task)) { in enqueueImpl()
303 newQueue.addLast(queue as Runnable) in enqueueImpl()
304 newQueue.addLast(task) in enqueueImpl()
344 newQueue.addLast(queue as Runnable) in closeQueue()
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
DProtocolNegotiatorsTest.java125 pipeline.addLast(handler); in tlsHandler_handlerAddedAddsSslHandler()
133 pipeline.addLast(handler); in tlsHandler_userEventTriggeredNonSslEvent()
154 pipeline.addLast(handler); in tlsHandler_userEventTriggeredSslEvent_unsupportedProtocol()
171 pipeline.addLast(handler); in tlsHandler_userEventTriggeredSslEvent_handshakeFailure()
193 pipeline.addLast(handler); in tlsHandler_userEventTriggeredSslEvent_supportedProtocolH2()
216 pipeline.addLast(handler); in tlsHandler_userEventTriggeredSslEvent_supportedProtocolGrpcExp()
232 pipeline.addLast(handler); in engineLog()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMatrix.java228 postOps.addLast(TRANSLATE + " " + dx + " " + dy); in postTranslate()
234 postOps.addLast(SCALE + " " + sx + " " + sy + " " + px + " " + py); in postScale()
240 postOps.addLast(SCALE + " " + sx + " " + sy); in postScale()
246 postOps.addLast(ROTATE + " " + degrees + " " + px + " " + py); in postRotate()
252 postOps.addLast(ROTATE + " " + Float.toString(degrees)); in postRotate()
258 postOps.addLast(SKEW + " " + kx + " " + ky + " " + px + " " + py); in postSkew()
264 postOps.addLast(SKEW + " " + kx + " " + ky); in postSkew()
270 postOps.addLast(MATRIX + " " + other); in postConcat()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DSimpleXYSeries.java229 public void addLast(Number x, Number y) { in addLast() method in SimpleXYSeries
233 xVals.addLast(x); in addLast()
235 yVals.addLast(y); in addLast()
/external/dagger2/java/dagger/internal/codegen/
DComponentTreeTraverser.java103 bindingGraphPath.addLast(child); in visitComponent()
109 componentPaths.addLast(childPath); in visitComponent()
/external/guava/guava/src/com/google/common/graph/
DTraverser.java593 stack.addLast(roots.iterator());
610 stack.addLast(childIterator);
620 stack.addLast(new NodeAndChildren(null, roots));
629 stack.addLast(withChildren(child));
/external/guava/android/guava/src/com/google/common/graph/
DTraverser.java593 stack.addLast(roots.iterator());
610 stack.addLast(childIterator);
620 stack.addLast(new NodeAndChildren(null, roots));
629 stack.addLast(withChildren(child));
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DOrientationSensorExampleActivity.java239 azimuthHistorySeries.addLast(null, sensorEvent.values[0]); in onSensorChanged()
240 pitchHistorySeries.addLast(null, sensorEvent.values[1]); in onSensorChanged()
241 rollHistorySeries.addLast(null, sensorEvent.values[2]); in onSensorChanged()
/external/guava/android/guava-tests/test/com/google/common/collect/
DSynchronizedDequeTest.java159 public void addLast(E e) { in addLast() method in SynchronizedDequeTest.TestDeque
161 delegate.addLast(e); in addLast()
279 create().addLast("e"); in testHoldsLockOnAllOperations()

1234