HomeSort by relevance Sort by last modified time
    Searched defs:obtain (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
KitKatBrowserAccessibilityManager.java 47 node.setCollectionInfo(AccessibilityNodeInfo.CollectionInfo.obtain(
54 node.setCollectionItemInfo(AccessibilityNodeInfo.CollectionItemInfo.obtain(
61 node.setRangeInfo(AccessibilityNodeInfo.RangeInfo.obtain(
  /cts/tests/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityManagerTest.java 6 * You may obtain a copy of the License at
170 mAccessibilityManager.sendAccessibilityEvent(AccessibilityEvent.obtain(
AccessibilityRecordTest.java 6 * You may obtain a copy of the License at
52 * Tests the cloning obtain method.
56 AccessibilityRecord originalRecord = AccessibilityRecord.obtain();
58 AccessibilityRecord cloneRecord = AccessibilityRecord.obtain(originalRecord);
67 // obtain and populate an event
68 AccessibilityRecord populatedRecord = AccessibilityRecord.obtain();
71 // recycle and obtain the same recycled instance
73 AccessibilityRecord recycledRecord = AccessibilityRecord.obtain();
123 record.setParcelableData(Message.obtain(null, 1, 2, 3));
AccessibilityEventTest.java 6 * You may obtain a copy of the License at
54 AccessibilityEvent sentEvent = AccessibilityEvent.obtain();
58 Parcel parcel = Parcel.obtain();
72 AccessibilityEvent firstEvent = AccessibilityEvent.obtain();
74 AccessibilityEvent secondEvent = AccessibilityEvent.obtain();
83 // obtain and populate an event
84 AccessibilityEvent populatedEvent = AccessibilityEvent.obtain();
87 // recycle and obtain the same recycled instance
89 AccessibilityEvent recycledEvent = AccessibilityEvent.obtain();
135 AccessibilityEvent event = AccessibilityEvent.obtain();
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
SeccompDeathTestService.java 6 * You may obtain a copy of the License at
86 harness.send(Message.obtain(null, SeccompBpfTest.MSG_TEST_STARTED));
95 harness.send(Message.obtain(null, SeccompBpfTest.MSG_TEST_ENDED_CLEAN));
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
PopupZoomerTest.java 70 MotionEvent.obtain(downEvent, downEvent, MotionEvent.ACTION_DOWN, x, y, 0));
72 MotionEvent.obtain(downEvent, downEvent + 10, MotionEvent.ACTION_UP, x, y, 0));
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifData.java 83 public Bitmap obtain(int width, int height, Bitmap.Config config) { method in class:GifData.GifDecoderBitmapProvider
  /cts/hostsidetests/devicepolicy/app/LauncherTestsSupport/src/com/android/cts/launchertests/support/
LauncherCallbackTestsService.java 5 * You may obtain a copy of the License at
82 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
89 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
96 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
105 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 6 * You may obtain a copy of the License at
292 assertWriteToParcel(createConfig(null), Parcel.obtain());
293 assertWriteToParcel(createConfig(Locale.JAPAN), Parcel.obtain());
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
PermissionTestService.java 6 * You may obtain a copy of the License at
107 mClient.send(Message.obtain(null, MSG_NOTIFY_TEST_FAILURE, failingTest, 0, null));
115 mClient.send(Message.obtain(null, MSG_NOTIFY_TEST_SUCCESS));
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 6 * You may obtain a copy of the License at
47 * object pool using {@link #obtain()} and {@link #recycle()} to reuse
71 public static TouchHistory obtain(float x, float y, float pressure) { method in class:TouchDisplayView.TouchHistory
154 TouchHistory data = TouchHistory.obtain(event.getX(0), event.getY(0),
184 TouchHistory data = TouchHistory.obtain(event.getX(index), event.getY(index),
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 6 * You may obtain a copy of the License at
47 * object pool using {@link #obtain()} and {@link #recycle()} to reuse
71 public static TouchHistory obtain(float x, float y, float pressure) { method in class:TouchDisplayView.TouchHistory
154 TouchHistory data = TouchHistory.obtain(event.getX(0), event.getY(0),
184 TouchHistory data = TouchHistory.obtain(event.getX(index), event.getY(index),
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPActivity.java 6 * You may obtain a copy of the License at
205 Message msg = Message.obtain(null, BluetoothHDPService.MSG_REG_CLIENT);
311 mHealthService.send(Message.obtain(null, what, value, 0));
328 mHealthService.send(Message.obtain(null, what, mDevice));
BluetoothHDPService.java 6 * You may obtain a copy of the License at
273 mClient.send(Message.obtain(null, what, value, 0));
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 6 * You may obtain a copy of the License at
47 * object pool using {@link #obtain()} and {@link #recycle()} to reuse
71 public static TouchHistory obtain(float x, float y, float pressure) { method in class:TouchDisplayView.TouchHistory
154 TouchHistory data = TouchHistory.obtain(event.getX(0), event.getY(0),
184 TouchHistory data = TouchHistory.obtain(event.getX(index), event.getY(index),
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 67 public static <A, T, Z, R> GenericRequest<A, T, Z, R> obtain( method in class:GenericRequest
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 6 * You may obtain a copy of the License at
303 handler.sendMessage(Message.obtain(handler, START_TEST, frameDelay, 0));
380 mHandler.sendMessage(Message.obtain(mHandler, END_TEST));
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifDecoder.java 113 public Bitmap obtain(int width, int height, Bitmap.Config config); method in interface:GifDecoder.BitmapProvider
585 Bitmap result = bitmapProvider.obtain(header.width, header.height, targetConfig);
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsTest.java 6 * You may obtain a copy of the License at
93 new RemoteViews(Parcel.obtain());
295 mRemoteViews = new RemoteViews(Parcel.obtain());
313 mRemoteViews = new RemoteViews(Parcel.obtain());
321 Parcel p = Parcel.obtain();
334 p = Parcel.obtain();
  /external/doclava/src/com/google/doclava/
Converter.java 6 * You may obtain a copy of the License at
269 return (ClassInfo) mClasses.obtain(o);
389 return (MethodInfo) mMethods.obtain(o);
471 return (FieldInfo) mFields.obtain(o);
475 return (FieldInfo) mFields.obtain(o);
493 return (PackageInfo) mPackagees.obtain(o);
505 return (TypeInfo) mTypes.obtain(o);
587 return (TypeInfo) mTypesFromString.obtain(type);
609 return (MemberInfo) mMembers.obtain(o);
638 return (AnnotationInstanceInfo) mAnnotationInstances.obtain(o)
662 Object obtain(Object o) { method in class:Converter.Cache
    [all...]
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwSettings.java 181 mHandler.sendMessage(Message.obtain(null, RUN_RUNNABLE_BLOCKING, r));
    [all...]
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 

Completed in 5294 milliseconds

1 2