Searched defs:obtain (Results 1 - 25 of 51) sorted by relevance

123

/frameworks/base/graphics/java/android/graphics/
H A DTemporaryBuffer.java6 * You may obtain a copy of the License at
25 public static char[] obtain(int len) { method in class:TemporaryBuffer
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DVelocityTrackerFactory.java6 * You may obtain a copy of the License at
31 public static VelocityTrackerInterface obtain(Context ctx) { method in class:VelocityTrackerFactory
35 return NoisyVelocityTracker.obtain();
37 return PlatformVelocityTracker.obtain();
H A DPlatformVelocityTracker.java6 * You may obtain a copy of the License at
34 public static PlatformVelocityTracker obtain() { method in class:PlatformVelocityTracker
39 tracker.setTracker(VelocityTracker.obtain());
H A DNoisyVelocityTracker.java6 * You may obtain a copy of the License at
51 public static NoisyVelocityTracker obtain() { method in class:NoisyVelocityTracker
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DTypedArray_Delegate.java6 * 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);
H A DBridgeTypedArray.java6 * You may obtain a copy of the License at
989 static TypedArray obtain(Resources res, int len) { method in class:BridgeTypedArray
/frameworks/base/core/java/android/view/
H A DMagnificationSpec.java6 * 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();
H A DWindowInfo.java6 * 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();
H A DDragEvent.java6 * You may obtain a copy of the License at
266 static DragEvent obtain() { method in class:DragEvent
267 return DragEvent.obtain(0, 0f, 0f, null, null, null, false);
271 public static DragEvent obtain(int action, float x, float y, Object localState, method in class:DragEvent
294 public static DragEvent obtain(DragEvent source) { method in class:DragEvent
295 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
488 DragEvent event = DragEvent.obtain();
H A DVelocityTracker.java6 * 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();
H A DInputEventConsistencyVerifier.java6 * You may obtain a copy of the License at
762 KeyState state = KeyState.obtain(deviceId, source, keyCode);
780 public static KeyState obtain(int deviceId, int source, int keyCode) { method in class:InputEventConsistencyVerifier.KeyState
/frameworks/base/core/java/android/widget/
H A DExpandableListPosition.java6 * 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().
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java6 * You may obtain a copy of the License at
60 return obtain(this.key, this.rank, this.visible);
101 public static NotificationVisibility obtain(String key, int rank, boolean visible) { method in class:NotificationVisibility
102 NotificationVisibility vo = obtain();
109 private static NotificationVisibility obtain(Parcel in) { method in class:NotificationVisibility
110 NotificationVisibility vo = obtain();
115 private static NotificationVisibility obtain() { method in class:NotificationVisibility
152 return obtain(parcel);
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompatApi21.java6 * You may obtain a copy of the License at
27 public static Object obtain() { method in class:AccessibilityWindowInfoCompatApi21
28 return AccessibilityWindowInfo.obtain();
31 public static Object obtain(Object info) { method in class:AccessibilityWindowInfoCompatApi21
32 return AccessibilityWindowInfo.obtain((AccessibilityWindowInfo) info);
/frameworks/base/core/java/android/text/
H A DMeasuredText.java6 * You may obtain a copy of the License at
51 static MeasuredText obtain() { method in class:MeasuredText
H A DTextLine.java6 * You may obtain a copy of the License at
37 * <p>Get a new instance using obtain(), and when finished with it, return it
74 static TextLine obtain() { method in class:TextLine
/frameworks/base/core/java/com/android/internal/os/
H A DSomeArgs.java6 * You may obtain a copy of the License at
61 public static SomeArgs obtain() { method in class:SomeArgs
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp6 * You may obtain a copy of the License at
37 jmethodID obtain; member in struct:android::__anon907
57 gKeyEventClassInfo.obtain,
133 gKeyEventClassInfo.obtain = GetStaticMethodIDOrDie(env, gKeyEventClassInfo.clazz,
134 "obtain", "(JJIIIIIIIILjava/lang/String;)Landroid/view/KeyEvent;");
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java6 * You may obtain a copy of the License at
29 public Object obtain(); method in interface:AccessibilityWindowInfoCompat.AccessibilityWindowInfoImpl
30 public Object obtain(Object info); method in interface:AccessibilityWindowInfoCompat.AccessibilityWindowInfoImpl
48 public Object obtain() { method in class:AccessibilityWindowInfoCompat.AccessibilityWindowInfoStubImpl
53 public Object obtain(Object info) { method in class:AccessibilityWindowInfoCompat.AccessibilityWindowInfoStubImpl
118 public Object obtain() { method in class:AccessibilityWindowInfoCompat.AccessibilityWindowInfoApi21Impl
119 return AccessibilityWindowInfoCompatApi21.obtain();
123 public Object obtain(Object info) { method in class:AccessibilityWindowInfoCompat.AccessibilityWindowInfoApi21Impl
124 return AccessibilityWindowInfoCompatApi21.obtain(info);
363 public static AccessibilityWindowInfoCompat obtain() { method in class:AccessibilityWindowInfoCompat
375 public static AccessibilityWindowInfoCompat obtain(AccessibilityWindowInfoCompat info) { method in class:AccessibilityWindowInfoCompat
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellyBean.java6 * 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);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemoteControlClientCompat.java6 * You may obtain a copy of the License at
40 public static RemoteControlClientCompat obtain(Context context, Object rcc) { method in class:RemoteControlClientCompat
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java6 * You may obtain a copy of the License at
43 static TypedArray obtain(Resources res, int len) { method in class:TypedArray
/frameworks/base/core/java/android/os/
H A DMessage.java6 * You may obtain a copy of the License at
28 * one of these is to call {@link #obtain Message.obtain()} or one of the
122 public static Message obtain() { method in class:Message
137 * Same as {@link #obtain()}, but copies the values of an existing
142 public static Message obtain(Message orig) { method in class:Message
143 Message m = obtain();
160 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
164 public static Message obtain(Handler h) { method in class:Message
165 Message m = obtain();
178 public static Message obtain(Handler h, Runnable callback) { method in class:Message
193 public static Message obtain(Handler h, int what) { method in class:Message
209 public static Message obtain(Handler h, int what, Object obj) { method in class:Message
228 public static Message obtain(Handler h, int what, int arg1, int arg2) { method in class:Message
249 public static Message obtain(Handler h, int what, method in class:Message
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityInputFilter.java6 * You may obtain a copy of the License at
240 mEventQueue = MotionEventHolder.obtain(event, policyFlags);
247 MotionEventHolder holder = MotionEventHolder.obtain(event, policyFlags);
283 MotionEvent transformedEvent = MotionEvent.obtain(event);
386 public static MotionEventHolder obtain(MotionEvent event, int policyFlags) { method in class:AccessibilityInputFilter.MotionEventHolder
391 holder.event = MotionEvent.obtain(event);
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java6 * 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);

Completed in 9407 milliseconds

123