Home
last modified time | relevance | path

Searched refs:obtain (Results 1 – 25 of 3370) sorted by relevance

12345678910>>...135

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowAccessibilityNodeInfoTest.java33 node = AccessibilityNodeInfo.obtain(); in setUp()
53 AccessibilityNodeInfo anotherNode = AccessibilityNodeInfo.obtain(node); in shouldHaveClonedCorrectly()
60 Parcel p = Parcel.obtain(); in shouldWriteAndReadFromParcelCorrectly()
71 node = AccessibilityNodeInfo.obtain(); in shouldNotHaveInfiniteLoopWithSameLoopedChildren()
72 AccessibilityNodeInfo child = AccessibilityNodeInfo.obtain(); in shouldNotHaveInfiniteLoopWithSameLoopedChildren()
75 AccessibilityNodeInfo anotherNode = AccessibilityNodeInfo.obtain(node); in shouldNotHaveInfiniteLoopWithSameLoopedChildren()
81 node = AccessibilityNodeInfo.obtain(); in shouldNotHaveInfiniteLoopWithDifferentLoopedChildren()
83 AccessibilityNodeInfo child1 = AccessibilityNodeInfo.obtain(); in shouldNotHaveInfiniteLoopWithDifferentLoopedChildren()
87 AccessibilityNodeInfo anotherNode = ShadowAccessibilityNodeInfo.obtain(); in shouldNotHaveInfiniteLoopWithDifferentLoopedChildren()
88 AccessibilityNodeInfo child2 = ShadowAccessibilityNodeInfo.obtain(); in shouldNotHaveInfiniteLoopWithDifferentLoopedChildren()
[all …]
DShadowMessageTest.java78 Message m = Message.obtain(); in testObtain()
85 Message m = Message.obtain(h); in testObtainWithHandler()
93 Message m = Message.obtain(h, what); in testObtainWithHandlerAndWhat()
105 Message m = Message.obtain(h, what, obj); in testObtainWithHandlerWhatAndObject()
119 Message m = Message.obtain(h, what, arg1, arg2); in testObtainWithHandlerWhatAndTwoArgs()
134 Message m = Message.obtain(h, what, arg1, arg2, obj); in testObtainWithHandlerWhatTwoArgsAndObj()
153 Message m2 = Message.obtain(m); in testObtainWithMessage()
168 Message.obtain(h, 123).sendToTarget(); in testSendToTarget()
174 Message msg = Message.obtain(); in testSetGetNext()
175 Message msg2 = Message.obtain(); in testSetGetNext()
[all …]
DShadowMessengerTest.java23 Message msg = Message.obtain(null, 123); in testMessengerSend()
36 Message msg = Message.obtain(null, 123); in getLastMessageSentShouldWork()
37 Message originalMessage = Message.obtain(msg); in getLastMessageSentShouldWork()
48 Message msg = Message.obtain(null, 123); in createMessengerWithBinder_getLastMessageSentShouldWork()
49 Message originalMessage = Message.obtain(msg); in createMessengerWithBinder_getLastMessageSentShouldWork()
DShadowAccessibilityEventTest.java25 event = AccessibilityEvent.obtain(); in setUp()
32 AccessibilityEvent anotherEvent = AccessibilityEvent.obtain(event); in shouldRecordParcelables()
41 AccessibilityEvent newEvent = AccessibilityEvent.obtain(event); in shouldBeEqualToClonedEvent()
54 Parcel p = Parcel.obtain(); in shouldWriteAndReadFromParcelCorrectly()
82 AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(); in setSourceNode()
DShadowBinderTest.java19 Parcel data = Parcel.obtain(); in transactCallsOnTransact()
20 Parcel reply = Parcel.obtain(); in transactCallsOnTransact()
53 Parcel data = Parcel.obtain(); in thrownExceptionIsParceled()
54 Parcel reply = Parcel.obtain(); in thrownExceptionIsParceled()
DVelocityTrackerTest.java19 velocityTracker = VelocityTracker.obtain(); in setUp()
121 return MotionEvent.obtain(0, time, MotionEvent.ACTION_MOVE, x, y, 0); in doMotion()
125 return MotionEvent.obtain(time, time, MotionEvent.ACTION_DOWN, x, y, 0); in doPointerDown()
135 MotionEvent.obtain(0, time, MotionEvent.ACTION_MOVE, pointer2X, pointer2Y, 0); in doMotion()
DShadowAccessibilityWindowInfoTest.java25 window = ShadowAccessibilityWindowInfo.obtain(); in setUp()
37 AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(); in shouldHaveAssignedRoot()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityNodeInfo.java62 return obtain(orderedInstances.get(source.readInt()).mInfo);
192 protected static AccessibilityNodeInfo obtain(AccessibilityNodeInfo info) { in obtain() method in ShadowAccessibilityNodeInfo
207 protected static AccessibilityNodeInfo obtain(View view) { in obtain() method in ShadowAccessibilityNodeInfo
238 protected static AccessibilityNodeInfo obtain() { in obtain() method in ShadowAccessibilityNodeInfo
239 return obtain(new View(RuntimeEnvironment.application.getApplicationContext())); in obtain()
243 protected static AccessibilityNodeInfo obtain(View root, int virtualDescendantId) { in obtain() method in ShadowAccessibilityNodeInfo
244 AccessibilityNodeInfo node = obtain(root); in obtain()
340 return obtain(child); in getChild()
349 return obtain(parent); in getParent()
622 return obtain(labelFor); in getLabelFor()
[all …]
/external/libaom/libaom/build/cmake/
Dgenerate_aom_config_templates.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
22 \; obtain it at www.aomedia.org/license/software. If the Alliance for Open
24 \; PATENTS file, you can obtain it at www.aomedia.org/license/patent.
36 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
38 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
52 ## obtain it at www.aomedia.org/license/software. If the Alliance for Open
54 ## PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Daom_config.c.template7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Daom_experiment_deps.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
DGifResourceDecoder.java58 final GifHeaderParser parser = parserPool.obtain(data); in decode()
59 final GifDecoder decoder = decoderPool.obtain(provider); in decode()
120 public synchronized GifDecoder obtain(GifDecoder.BitmapProvider bitmapProvider) { in obtain() method in GifResourceDecoder.GifDecoderPool
138 public synchronized GifHeaderParser obtain(byte[] data) { in obtain() method in GifResourceDecoder.GifHeaderParserPool
/external/droiddriver/src/io/appium/droiddriver/util/
DEvents.java41 MotionEvent event = MotionEvent.obtain(downTime, downTime, MotionEvent.ACTION_DOWN, x, y, 1); in newTouchDownEvent()
55 MotionEvent event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP, x, y, 1); in newTouchUpEvent()
68 MotionEvent event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, x, y, 1); in newTouchMoveEvent()
/external/libaom/libaom/build/cmake/toolchains/
Dx86-linux.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Dx86-macos.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Dios-simulator-common.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Dx86_64-ios-simulator.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Darm64-ios.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Dx86_64-mingw-gcc.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Dppc-linux-gcc.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Darm-ios-common.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
Dx86-mingw-gcc.cmake6 # not distributed with this source code in the LICENSE file, you can obtain it
9 # can obtain it at www.aomedia.org/license/patent.
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DLoopbackAudioThread.java223 Message msg = Message.obtain(); in run()
264 Message msg = Message.obtain(); in runTest()
290 Message msg = Message.obtain(); in runBufferTest()
321 Message msg = Message.obtain(); in endTest()
/external/protobuf/javanano/src/device/test/java/com/google/protobuf/nano/
DNanoAndroidTest.java52 parcel = Parcel.obtain(); in testParceling()
74 parcel = Parcel.obtain(); in testExtendableParceling()
/external/libaom/libaom/aom_ports/
Demms.asm7 ; obtain it at www.aomedia.org/license/software. If the Alliance for Open
9 ; PATENTS file, you can obtain it at www.aomedia.org/license/patent.

12345678910>>...135