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

12

/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
33 public static VelocityTrackerInterface obtain(Context ctx) { method in class:VelocityTrackerFactory
37 return NoisyVelocityTracker.obtain();
39 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/core/java/android/view/
H A DGLES20RecordingCanvas.java6 * You may obtain a copy of the License at
43 static GLES20RecordingCanvas obtain(@NonNull RenderNode node) { method in class:GLES20RecordingCanvas
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
691 KeyState state = KeyState.obtain(deviceId, source, keyCode);
709 public static KeyState obtain(int deviceId, int source, int keyCode) { method in class:InputEventConsistencyVerifier.KeyState
/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
842 static TypedArray obtain(Resources res, int len) { method in class:BridgeTypedArray
/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().
H A DExpandableListConnector.java6 * 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(flPo
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/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
60 public static SomeArgs obtain() { method in class:SomeArgs
/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
41 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/core/jni/
H A Dandroid_view_KeyEvent.cpp6 * You may obtain a copy of the License at
35 jmethodID obtain; member in struct:android::__anon863
55 gKeyEventClassInfo.obtain,
147 GET_STATIC_METHOD_ID(gKeyEventClassInfo.obtain, gKeyEventClassInfo.clazz,
148 "obtain", "(JJIIIIIIIILjava/lang/String;)Landroid/view/KeyEvent;");
/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);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java6 * You may obtain a copy of the License at
342 public static AccessibilityWindowInfo obtain() { method in class:AccessibilityWindowInfo
358 public static AccessibilityWindowInfo obtain(AccessibilityWindowInfo info) { method in class:AccessibilityWindowInfo
359 AccessibilityWindowInfo infoClone = obtain();
602 AccessibilityWindowInfo info = obtain();

Completed in 3428 milliseconds

12