HomeSort by relevance Sort by last modified time
    Searched refs:obtain (Results 51 - 75 of 3709) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/text/src/android/text/style/cts/
SuperscriptSpanTest.java 6 * You may obtain a copy of the License at
30 Parcel p = Parcel.obtain();
91 Parcel p = Parcel.obtain();
BulletSpanTest.java 6 * You may obtain a copy of the License at
36 final Parcel p = Parcel.obtain();
100 Parcel p = Parcel.obtain();
111 p = Parcel.obtain();
  /cts/tests/tests/view/src/android/view/cts/
AbsSavedStateTest.java 6 * You may obtain a copy of the License at
34 Parcel source = Parcel.obtain();
54 Parcel dest = Parcel.obtain();
  /external/protobuf/java/src/device/test/java/com/google/protobuf/nano/
NanoAndroidTest.java 52 parcel = Parcel.obtain();
74 parcel = Parcel.obtain();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
MessageTest.java 72 Message m = Message.obtain();
79 Message m = Message.obtain(h);
87 Message m = Message.obtain(h, what);
99 Message m = Message.obtain(h, what, obj);
113 Message m = Message.obtain(h, what, arg1, arg2);
128 Message m = Message.obtain(h, what, arg1, arg2, obj);
147 Message m2 = Message.obtain(m);
161 Message.obtain(h, 123).sendToTarget();
ShadowBinderTest.java 20 Parcel data = Parcel.obtain();
21 Parcel reply = Parcel.obtain();
  /frameworks/base/core/java/android/os/
ParcelableParcel.java 6 * You may obtain a copy of the License at
28 mParcel = Parcel.obtain();
33 mParcel = Parcel.obtain();
Handler.java 6 * You may obtain a copy of the License at
252 * If you don't want that facility, just call Message.obtain() instead.
256 return Message.obtain(this);
267 return Message.obtain(this, what);
281 return Message.obtain(this, what, obj);
295 return Message.obtain(this, what, arg1, arg2);
310 return Message.obtain(this, what, arg1, arg2, obj);
532 Message msg = Message.obtain();
548 Message msg = Message.obtain();
726 Message m = Message.obtain();
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
RecycleAccessibilityEventTest.java 5 * in compliance with the License. You may obtain a copy of the License at
44 AccessibilityEvent.obtain(AccessibilityEvent.TYPE_VIEW_TEXT_CHANGED);
77 AccessibilityEvent second = AccessibilityEvent.obtain();
  /frameworks/support/v4/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 6 * You may obtain a copy of the License at
39 return AccessibilityNodeInfo.CollectionInfo.obtain(rowCount, columnCount, hierarchical,
45 return AccessibilityNodeInfo.CollectionItemInfo.obtain(rowIndex, rowSpan, columnIndex,
  /cts/tests/tests/content/src/android/content/cts/
ComponentNameTest.java 6 * You may obtain a copy of the License at
79 final Parcel parcel = Parcel.obtain();
110 final Parcel parcel1 = Parcel.obtain();
117 final Parcel parcel2 = Parcel.obtain();
195 Parcel parcel = Parcel.obtain();
203 parcel = Parcel.obtain();
  /frameworks/base/core/java/android/app/
ApplicationThreadNative.java 6 * You may obtain a copy of the License at
697 Parcel data = Parcel.obtain();
711 Parcel data = Parcel.obtain();
723 Parcel data = Parcel.obtain();
734 Parcel data = Parcel.obtain();
746 Parcel data = Parcel.obtain();
759 Parcel data = Parcel.obtain();
774 Parcel data = Parcel.obtain();
806 Parcel data = Parcel.obtain();
826 Parcel data = Parcel.obtain();
    [all...]
  /frameworks/base/core/java/android/content/
ContentProviderNative.java 6 * You may obtain a copy of the License at
390 Parcel data = Parcel.obtain();
391 Parcel reply = Parcel.obtain();
445 Parcel data = Parcel.obtain();
446 Parcel reply = Parcel.obtain();
465 Parcel data = Parcel.obtain();
466 Parcel reply = Parcel.obtain();
486 Parcel data = Parcel.obtain();
487 Parcel reply = Parcel.obtain();
509 Parcel data = Parcel.obtain();
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
AsyncChannel.java 6 * You may obtain a copy of the License at
458 Message msg = Message.obtain();
496 Message msg = Message.obtain();
508 Message msg = Message.obtain();
522 Message msg = Message.obtain();
538 Message msg = Message.obtain();
553 Message msg = Message.obtain();
582 Message msg = Message.obtain();
595 Message msg = Message.obtain();
610 Message msg = Message.obtain();
784 private static SyncMessenger obtain() { method in class:AsyncChannel.SyncMessenger
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiTrafficPoller.java 6 * You may obtain a copy of the License at
100 Message.obtain(mTrafficHandler, ADD_CLIENT, client).sendToTarget();
104 Message.obtain(mTrafficHandler, REMOVE_CLIENT, client).sendToTarget();
128 sendMessageDelayed(Message.obtain(this, TRAFFIC_STATS_POLL,
141 sendMessageDelayed(Message.obtain(this, TRAFFIC_STATS_POLL,
164 msg = Message.obtain(mTrafficHandler,
167 msg = Message.obtain(mTrafficHandler,
205 Message msg = Message.obtain();
  /cts/tests/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityNodeInfoTest.java 6 * You may obtain a copy of the License at
47 AccessibilityNodeInfo sentInfo = AccessibilityNodeInfo.obtain(new View(getContext()));
51 Parcel parcel = Parcel.obtain();
65 AccessibilityEvent firstInfo = AccessibilityEvent.obtain();
67 AccessibilityEvent secondInfo = AccessibilityEvent.obtain();
76 // obtain and populate an node info
77 AccessibilityNodeInfo populatedInfo = AccessibilityNodeInfo.obtain();
80 // recycle and obtain the same recycled instance
82 AccessibilityNodeInfo recycledInfo = AccessibilityNodeInfo.obtain();
93 AccessibilityNodeInfo info = AccessibilityNodeInfo.obtain();
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SeekBarTest.java 6 * You may obtain a copy of the License at
69 MotionEvent event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_DOWN,
80 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE,
89 event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP,
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
AwTestTouchUtils.java 24 MotionEvent event = MotionEvent.obtain(downTime, eventTime, action, x, y, 0);
94 view.onTouchEvent(MotionEvent.obtain(
97 view.onTouchEvent(MotionEvent.obtain(
  /external/droiddriver/src/com/google/android/droiddriver/util/
Events.java 6 * You may obtain a copy of the License at
36 MotionEvent event = MotionEvent.obtain(downTime, downTime, MotionEvent.ACTION_DOWN, x, y, 1);
46 MotionEvent event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_UP, x, y, 1);
56 MotionEvent event = MotionEvent.obtain(downTime, eventTime, MotionEvent.ACTION_MOVE, x, y, 1);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMotionEvent.java 30 public static MotionEvent obtain(long downTime, long eventTime, int action, float x, float y, int metaState) { method in class:ShadowMotionEvent
48 public static MotionEvent obtain(MotionEvent motionEvent) { method in class:ShadowMotionEvent
49 return obtain(motionEvent.getDownTime(), motionEvent.getEventTime(), motionEvent.getAction(), motionEvent.getX(), motionEvent.getY(), motionEvent.getMetaState());
  /frameworks/base/core/java/android/nfc/cardemulation/
HostApduService.java 248 Message responseMsg = Message.obtain(null, MSG_RESPONSE_APDU);
311 Message responseMsg = Message.obtain(null, MSG_RESPONSE_APDU);
345 Message unhandledMsg = Message.obtain(null, MSG_UNHANDLED);
  /frameworks/base/core/java/android/view/
VelocityTracker.java 6 * You may obtain a copy of the License at
25 * Use {@link #obtain} to retrieve a new instance of the class when you are going
57 static public VelocityTracker obtain() { method in class:VelocityTracker
71 public static VelocityTracker obtain(String strategy) { method in class:VelocityTracker
73 return obtain();
  /frameworks/base/telecomm/java/android/telecom/
ConnectionServiceAdapterServant.java 6 * You may obtain a copy of the License at
233 SomeArgs args = SomeArgs.obtain();
258 SomeArgs args = SomeArgs.obtain();
284 SomeArgs args = SomeArgs.obtain();
292 SomeArgs args = SomeArgs.obtain();
305 SomeArgs args = SomeArgs.obtain();
313 SomeArgs args = SomeArgs.obtain();
331 SomeArgs args = SomeArgs.obtain();
345 SomeArgs args = SomeArgs.obtain();
353 SomeArgs args = SomeArgs.obtain();
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ScrollingMovementMethodTest.java 6 * You may obtain a copy of the License at
113 MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, 0, 0, 0));
123 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, tinyDist, 0, 0));
132 MotionEvent.obtain(now, now, MotionEvent.ACTION_UP, tinyDist, 0, 0));
140 MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, 0, 0, 0));
150 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, distFar, 0, 0));
162 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, distTooFar, 0, 0));
173 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, 0, 0, 0));
183 MotionEvent.obtain(now, now, MotionEvent.ACTION_UP, 0, 0, 0));
215 mResult = method.onTouchEvent(mTextView, mSpannable, MotionEvent.obtain(now, now
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessengerService.java 6 * You may obtain a copy of the License at
32 Message reply = Message.obtain();

Completed in 2935 milliseconds

1 23 4 5 6 7 8 91011>>