Searched defs:obtain (Results 1 - 25 of 57) 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/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DActionListTransformState.java6 * You may obtain a copy of the License at
38 public static ActionListTransformState obtain() { method in class:ActionListTransformState
H A DProgressTransformState.java6 * You may obtain a copy of the License at
37 public static ProgressTransformState obtain() { method in class:ProgressTransformState
H A DImageTransformState.java6 * You may obtain a copy of the License at
110 public static ImageTransformState obtain() { method in class:ImageTransformState
H A DTextViewTransformState.java6 * You may obtain a copy of the License at
133 public static TextViewTransformState obtain() { method in class:TextViewTransformState
/frameworks/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);
/frameworks/base/core/java/android/view/
H A DDragAndDropPermissions.java6 ** You may obtain a copy of the License at
67 public static DragAndDropPermissions obtain(DragEvent dragEvent) { method in class:DragAndDropPermissions
H A DMagnificationSpec.java6 * You may obtain a copy of the License at
65 public static MagnificationSpec obtain(MagnificationSpec other) { method in class:MagnificationSpec
66 MagnificationSpec info = obtain();
73 public static MagnificationSpec obtain() { method in class:MagnificationSpec
157 MagnificationSpec spec = MagnificationSpec.obtain();
H A DWindowInfo.java6 * You may obtain a copy of the License at
56 public static WindowInfo obtain() { method in class:WindowInfo
64 public static WindowInfo obtain(WindowInfo other) { method in class:WindowInfo
65 WindowInfo window = obtain();
175 WindowInfo window = obtain();
H A DDragEvent.java6 * You may obtain a copy of the License at
285 static DragEvent obtain() { method in class:DragEvent
286 return DragEvent.obtain(0, 0f, 0f, null, null, null, null, false);
290 public static DragEvent obtain(int action, float x, float y, Object localState, method in class:DragEvent
315 public static DragEvent obtain(DragEvent source) { method in class:DragEvent
316 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
529 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();
/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/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
/frameworks/base/core/java/com/android/internal/os/
H A DSomeArgs.java6 * You may obtain a copy of the License at
62 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::__anon1087
57 gKeyEventClassInfo.obtain,
133 gKeyEventClassInfo.obtain = GetStaticMethodIDOrDie(env, gKeyEventClassInfo.clazz,
134 "obtain", "(JJIIIIIIIILjava/lang/String;)Landroid/view/KeyEvent;");
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java6 * You may obtain a copy of the License at
271 public static AccessibilityWindowInfoCompat obtain() { method in class:AccessibilityWindowInfoCompat
273 return wrapNonNullInstance(AccessibilityWindowInfo.obtain());
287 public static AccessibilityWindowInfoCompat obtain(AccessibilityWindowInfoCompat info) { method in class:AccessibilityWindowInfoCompat
292 AccessibilityWindowInfo.obtain((AccessibilityWindowInfo) info.mInfo));
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemoteControlClientCompat.java6 * You may obtain a copy of the License at
41 public static RemoteControlClientCompat obtain(Context context, Object rcc) { method in class:RemoteControlClientCompat
/frameworks/base/core/java/android/os/
H A DMessage.java6 * You may obtain a copy of the License at
30 * one of these is to call {@link #obtain Message.obtain()} or one of the
124 public static Message obtain() { method in class:Message
139 * Same as {@link #obtain()}, but copies the values of an existing
144 public static Message obtain(Message orig) { method in class:Message
145 Message m = obtain();
162 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
166 public static Message obtain(Handler h) { method in class:Message
167 Message m = obtain();
180 public static Message obtain(Handler h, Runnable callback) { method in class:Message
195 public static Message obtain(Handler h, int what) { method in class:Message
211 public static Message obtain(Handler h, int what, Object obj) { method in class:Message
230 public static Message obtain(Handler h, int what, int arg1, int arg2) { method in class:Message
251 public static Message obtain(Handler h, int what, method in class:Message
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DViewInfoStore.java6 * You may obtain a copy of the License at
69 record = InfoRecord.obtain();
150 record = InfoRecord.obtain();
187 record = InfoRecord.obtain();
203 record = InfoRecord.obtain();
313 static InfoRecord obtain() { method in class:ViewInfoStore.InfoRecord
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DKeyboardInterceptor.java6 * You may obtain a copy of the License at
132 KeyEventHolder.obtain(event, policyFlags, dispatchTime);
136 final KeyEventHolder holder = KeyEventHolder.obtain(event, policyFlags, dispatchTime);
193 public static KeyEventHolder obtain(KeyEvent event, int policyFlags, long dispatchTime) { method in class:KeyboardInterceptor.KeyEventHolder
198 holder.event = KeyEvent.obtain(event);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DViewInfoStore.java6 * You may obtain a copy of the License at
66 record = InfoRecord.obtain();
147 record = InfoRecord.obtain();
184 record = InfoRecord.obtain();
200 record = InfoRecord.obtain();
310 static InfoRecord obtain() { method in class:ViewInfoStore.InfoRecord

Completed in 2530 milliseconds

123