HomeSort by relevance Sort by last modified time
    Searched refs:obtain (Results 76 - 100 of 4183) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/java/android/nfc/cardemulation/
HostApduService.java 6 * You may obtain a copy of the License at
264 Message responseMsg = Message.obtain(null, MSG_RESPONSE_APDU);
327 Message responseMsg = Message.obtain(null, MSG_RESPONSE_APDU);
361 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();
WindowInfo.java 6 * You may obtain a copy of the License at
54 public static WindowInfo obtain() { method in class:WindowInfo
62 public static WindowInfo obtain(WindowInfo other) { method in class:WindowInfo
63 WindowInfo window = obtain();
165 WindowInfo window = obtain();
  /frameworks/base/services/core/java/com/android/server/content/
SyncJobService.java 6 * You may obtain a copy of the License at
44 Message m = Message.obtain();
70 Message m = Message.obtain();
95 Message m = Message.obtain();
  /cts/tests/tests/text/src/android/text/method/cts/
ScrollingMovementMethodTest.java 6 * You may obtain a copy of the License at
114 MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, 0, 0, 0));
124 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, tinyDist, 0, 0));
133 MotionEvent.obtain(now, now, MotionEvent.ACTION_UP, tinyDist, 0, 0));
141 MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, 0, 0, 0));
151 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, distFar, 0, 0));
163 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, distTooFar, 0, 0));
174 MotionEvent.obtain(now, now, MotionEvent.ACTION_MOVE, 0, 0, 0));
184 MotionEvent.obtain(now, now, MotionEvent.ACTION_UP, 0, 0, 0));
216 mResult = method.onTouchEvent(mTextView, mSpannable, MotionEvent.obtain(now, now
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java 6 * You may obtain a copy of the License at
125 static RILRequest obtain(int request, Message result) { method in class:RILRequest
145 rr.mParcel = Parcel.obtain();
678 p = Parcel.obtain();
791 RILRequest rr = RILRequest.obtain(RIL_REQUEST_VOICE_RADIO_TECH, result);
800 RILRequest rr = RILRequest.obtain(RIL_REQUEST_IMS_REGISTRATION_STATE, result);
825 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_SIM_STATUS, result);
835 RILRequest rr = RILRequest.obtain(RIL_REQUEST_SET_UICC_SUBSCRIPTION, result);
851 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ALLOW_DATA, result);
871 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ENTER_SIM_PIN, result)
    [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();
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
ExtractedTextRequestTest.java 6 * You may obtain a copy of the License at
35 Parcel p = Parcel.obtain();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapResource.java 23 public static BitmapResource obtain(Bitmap bitmap, BitmapPool bitmapPool) { method in class:BitmapResource
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifFrameResourceDecoder.java 21 return BitmapResource.obtain(bitmap, bitmapPool);
GifResourceDecoder.java 58 final GifHeaderParser parser = parserPool.obtain(data);
59 final GifDecoder decoder = decoderPool.obtain(provider);
120 public synchronized GifDecoder obtain(GifDecoder.BitmapProvider bitmapProvider) { method in class:GifResourceDecoder.GifDecoderPool
138 public synchronized GifHeaderParser obtain(byte[] data) { method in class:GifResourceDecoder.GifHeaderParserPool
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
MessengerTest.java 26 Message msg = Message.obtain(null, 123);
  /frameworks/base/core/java/android/os/
CommonClock.java 6 * You may obtain a copy of the License at
342 android.os.Parcel data = android.os.Parcel.obtain();
343 android.os.Parcel reply = android.os.Parcel.obtain();
374 android.os.Parcel data = android.os.Parcel.obtain();
375 android.os.Parcel reply = android.os.Parcel.obtain();
  /frameworks/base/core/java/android/widget/
ExpandableListConnector.java 6 * You may obtain a copy of the License at
124 return PositionMetadata.obtain(flPos, ExpandableListPosition.GROUP, flPos,
163 return PositionMetadata.obtain(flPos, ExpandableListPosition.GROUP,
176 return PositionMetadata.obtain(flPos, ExpandableListPosition.CHILD,
243 return PositionMetadata.obtain(flPos, ExpandableListPosition.GROUP, groupPos, -1,
274 return PositionMetadata.obtain(pos.groupPos, pos.type,
304 return PositionMetadata.obtain(midExpGm.flPos, pos.type,
308 return PositionMetadata.obtain(midExpGm.flPos + pos.childPos
347 return PositionMetadata.obtain(flPos, pos.type, pos.groupPos,
361 return PositionMetadata.obtain(flPos, pos.type, pos.groupPos
902 static GroupMetadata obtain(int flPos, int lastChildFlPos, int gPos, long gId) { method in class:ExpandableListConnector.GroupMetadata
994 static PositionMetadata obtain(int flatListPos, int type, int groupPos, method in class:ExpandableListConnector.PositionMetadata
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/le/
ScanResultTest.java 6 * You may obtain a copy of the License at
48 Parcel parcel = Parcel.obtain();
  /frameworks/base/core/tests/coretests/src/android/app/activity/
AbortReceiver.java 6 * You may obtain a copy of the License at
38 Parcel data = Parcel.obtain();
RemoteReceiver.java 6 * You may obtain a copy of the License at
41 Parcel data = Parcel.obtain();
  /frameworks/base/core/tests/coretests/src/android/os/
MessengerService.java 6 * You may obtain a copy of the License at
31 Message reply = Message.obtain();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ActionListTransformState.java 6 * You may obtain a copy of the License at
38 public static ActionListTransformState obtain() { method in class:ActionListTransformState
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerTest.java 6 * You may obtain a copy of the License at
132 AccessibilityEvent sentEvent = AccessibilityEvent.obtain();
141 assertSame("The event should be recycled.", sentEvent, AccessibilityEvent.obtain());
145 assertNotSame("The event should not be recycled.", sentEvent, AccessibilityEvent.obtain());
150 AccessibilityEvent sentEvent = AccessibilityEvent.obtain();
  /frameworks/base/telecomm/java/android/telecom/
VideoCallbackServant.java 6 * You may obtain a copy of the License at
121 SomeArgs args = SomeArgs.obtain();
130 SomeArgs args = SomeArgs.obtain();
137 SomeArgs args = SomeArgs.obtain();
145 SomeArgs args = SomeArgs.obtain();
  /frameworks/support/v4/api23/android/support/v4/media/
MediaBrowserCompatApi23.java 6 * You may obtain a copy of the License at
47 Parcel parcel = Parcel.obtain();
  /frameworks/support/v4/ics/android/support/v4/view/accessibility/
AccessibilityRecordCompatIcs.java 6 * You may obtain a copy of the License at
30 public static Object obtain() { method in class:AccessibilityRecordCompatIcs
31 return AccessibilityRecord.obtain();
34 public static Object obtain(Object record) { method in class:AccessibilityRecordCompatIcs
35 return AccessibilityRecord.obtain((AccessibilityRecord) record);
  /packages/apps/Email/tests/src/com/android/emailcommon/service/
SearchParamsTests.java 6 * You may obtain a copy of the License at
30 Parcel parcel = Parcel.obtain();
  /packages/apps/Settings/tests/unit/src/com/android/settings/
UserCredentialsTest.java 6 * You may obtain a copy of the License at
44 Parcel p = Parcel.obtain();

Completed in 7806 milliseconds

1 2 34 5 6 7 8 91011>>