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

1 2 3 4 5 6 7

  /frameworks/base/graphics/java/android/graphics/
TemporaryBuffer.java 6 * You may obtain a copy of the License at
25 public static char[] obtain(int len) { method in class:TemporaryBuffer
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
TypedArray_Delegate.java 6 * You may obtain a copy of the License at
32 /*package*/ static TypedArray obtain(Resources res, int len) { method in class:TypedArray_Delegate
33 return BridgeTypedArray.obtain(res, len);
  /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(
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
VelocityTrackerFactory.java 6 * You may obtain a copy of the License at
33 public static VelocityTrackerInterface obtain(Context ctx) { method in class:VelocityTrackerFactory
37 return NoisyVelocityTracker.obtain();
39 return PlatformVelocityTracker.obtain();
PlatformVelocityTracker.java 6 * You may obtain a copy of the License at
34 public static PlatformVelocityTracker obtain() { method in class:PlatformVelocityTracker
39 tracker.setTracker(VelocityTracker.obtain());
NoisyVelocityTracker.java 6 * You may obtain a copy of the License at
51 public static NoisyVelocityTracker obtain() { method in class:NoisyVelocityTracker
  /frameworks/base/core/java/android/view/
GLES20RecordingCanvas.java 6 * You may obtain a copy of the License at
43 static GLES20RecordingCanvas obtain(@NonNull RenderNode node) { method in class:GLES20RecordingCanvas
MagnificationSpec.java 6 * You may obtain a copy of the License at
54 public static MagnificationSpec obtain(MagnificationSpec other) { method in class:MagnificationSpec
55 MagnificationSpec info = obtain();
62 public static MagnificationSpec obtain() { method in class:MagnificationSpec
118 MagnificationSpec spec = MagnificationSpec.obtain();
WindowInfo.java 6 * You may obtain a copy of the License at
52 public static WindowInfo obtain() { method in class:WindowInfo
60 public static WindowInfo obtain(WindowInfo other) { method in class:WindowInfo
61 WindowInfo window = obtain();
155 WindowInfo window = obtain();
  /frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatJellyBean.java 6 * You may obtain a copy of the License at
56 public static Object obtain(View root, int virtualDescendantId) { method in class:AccessibilityNodeInfoCompatJellyBean
57 return AccessibilityNodeInfo.obtain(root, virtualDescendantId);
  /packages/services/Telephony/tests/src/com/android/phone/tests/
SendInstantTextTestService.java 6 * You may obtain a copy of the License at
54 mHandler.sendMessageDelayed(Message.obtain(mHandler, 0, intent), 5 * 1000);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessage.java 60 public static Message obtain() { method in class:ShadowMessage
65 public static Message obtain(Handler h) { method in class:ShadowMessage
72 public static Message obtain(Handler h, int what) { method in class:ShadowMessage
73 Message m = obtain(h);
79 public static Message obtain(Handler h, int what, Object obj) { method in class:ShadowMessage
80 Message m = obtain(h, what);
86 public static Message obtain(Handler h, int what, int arg1, int arg2) { method in class:ShadowMessage
87 Message m = obtain(h, what);
94 public static Message obtain(Handler h, int what, int arg1, int arg2, Object obj) { method in class:ShadowMessage
95 Message m = obtain(h, what, arg1, arg2)
101 public static Message obtain(Message msg) { method in class:ShadowMessage
    [all...]
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/widget/
ExpandableListPosition.java 6 * You may obtain a copy of the License at
82 return obtain(GROUP, groupPosition, 0, 0);
86 return obtain(CHILD, groupPosition, childPosition, 0);
106 static ExpandableListPosition obtain(int type, int groupPos, int childPos, int flatListPos) { method in class:ExpandableListPosition
129 * Do not call this unless you obtained this via ExpandableListPosition.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 69 MotionEvent.obtain(downEvent, downEvent, MotionEvent.ACTION_DOWN, x, y, 0));
71 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
  /frameworks/base/core/java/com/android/internal/os/
SomeArgs.java 6 * You may obtain a copy of the License at
60 public static SomeArgs obtain() { method in class:SomeArgs
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 6 * You may obtain a copy of the License at
35 jmethodID obtain; member in struct:android::__anon38403
55 gKeyEventClassInfo.obtain,
147 GET_STATIC_METHOD_ID(gKeyEventClassInfo.obtain, gKeyEventClassInfo.clazz,
148 "obtain", "(JJIIIIIIIILjava/lang/String;)Landroid/view/KeyEvent;");
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
InteractionController.java 6 * You may obtain a copy of the License at
111 mEventsList.add(AccessibilityEvent.obtain(t));
309 MotionEvent event = MotionEvent.obtain(
320 MotionEvent event = MotionEvent.obtain(
332 MotionEvent event = MotionEvent.obtain(
713 event = MotionEvent.obtain(downTime, SystemClock.uptimeMillis(), MotionEvent.ACTION_DOWN, 1,
718 event = MotionEvent.obtain(downTime, SystemClock.uptimeMillis(),
735 event = MotionEvent.obtain(downTime, SystemClock.uptimeMillis(),
749 event = MotionEvent.obtain(downTime, SystemClock.uptimeMillis(),
757 event = MotionEvent.obtain(downTime, SystemClock.uptimeMillis(), MotionEvent.ACTION_UP, 1
    [all...]
  /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));

Completed in 5904 milliseconds

1 2 3 4 5 6 7