Searched defs:in (Results 1 - 25 of 591) sorted by last modified time

1234567891011>>

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.io.IOException java.io.InputStream in java.io.OutputStream out byte[] buffer int len ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.io.IOException java.io.InputStream in java.io.OutputStream out byte[] buffer int len ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
88 SavedState(Parcel in) { argument
89 super(in);
90 curTab = in.readString();
109 public SavedState createFromParcel(Parcel in) {
110 return new SavedState(in);
122 // because the simple Context construct can result in a broken object!
261 // This fragment was restored in the active state,
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java5 * in compliance with the License. You may obtain a copy of the License at
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
195 * Base class which scrolls to selected view in onStop().
216 // This should not happen since we cropped value in startPositionSmoothScroller()
295 * has been laid out in consumePendingMovesAfterLayout().
382 // maximum pending movement in one direction.
385 // minimal milliseconds to scroll window size in major direction, we put a cap to prevent the
400 * Note on conventions in the presence of RTL layout directions:
404 * quantity that changes direction in RTL cases, or a quantity that
405 * does not. Here are the conventions in us
3515 SavedState(Parcel in) argument
[all...]
H A DPersistentFocusWrapper.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
98 // Select a child in requestFocus
134 SavedState(Parcel in) { argument
135 super(in);
136 mSelectedPosition = in.readInt();
152 public SavedState createFromParcel(Parcel in) {
153 return new SavedState(in);
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
H A DPhotoItem.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
67 public PhotoItem createFromParcel(Parcel in) {
68 return new PhotoItem(in);
77 private PhotoItem(Parcel in) { argument
78 mTitle = in.readString();
79 mImageResourceId = in.readInt();
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuPresenter.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 * MenuPresenter for building action menus as seen in the action bar and action modes.
410 * @return true if space has been reserved in the action menu for an overflow item.
497 // Items in a group with other items that already have an action slot
609 SavedState(Parcel in) { argument
610 openSubMenuId = in.readInt();
626 public SavedState createFromParcel(Parcel in) {
627 return new SavedState(in);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DListPreferenceDialogFragmentCompat.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
85 private static CharSequence[] getCharSequenceArray(Bundle in, String key) { argument
86 final ArrayList<String> stored = in.getStringArrayList(key);
H A DPreferenceGroupAdapter.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 * An adapter that connects a RecyclerView to the {@link Preference} objects contained in the
63 * Contains a sorted list of all preferences in this adapter regardless of visibility. This is
139 // Clear out the listeners in anticipation of some items being removed. This listener
226 private PreferenceLayout createPreferenceLayout(Preference preference, PreferenceLayout in) { argument
227 PreferenceLayout pl = in != null? in : new PreferenceLayout();
264 // Send the pref object as a placeholder to ensure the view holder is recycled in place
281 // The preference has become visible, we need to add it in th
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
81 * Based on {@link #mOrientation}, an implementation is lazily created in
142 * Stashed to avoid allocation, currently only used in #fill()
173 * Constructor used when layout manager is set in XML by RecyclerView attribute
217 * Note that, setting this flag will result in a performance drop if RecyclerView
220 * @param recycleChildrenOnDetach Whether children should be recycled in detach or not.
406 return child; // in pre-layout, this may not match
409 // fallback to traversal. This might be necessary in pre-layout.
421 * performance cost. It's typically only desirable in place
2304 SavedState(Parcel in) argument
[all...]
H A DRecyclerView.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
94 * that represent items in a data set.</li>
96 * <li><em>Index:</em> The index of an attached child view as used in a call to
101 * position may be placed in a cache for later reuse to display the same type of data again
112 * <h4>Positions in RecyclerView:</h4>
115 * {@link LayoutManager} to be able to detect data set changes in batches during a layout
120 * For this reason, there are two types of <code>position</code> related methods in RecyclerView:
122 * <li>layout position: Position of an item in the latest layout calculation. This is the
124 * <li>adapter position: Position of an item in th
11589 SavedState(Parcel in, ClassLoader loader) argument
[all...]
H A DStaggeredGridLayoutManager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
48 * A LayoutManager that lays out children in a staggered grid formation.
49 * It supports horizontal & vertical layout as well as an ability to layout children in reverse.
80 * check if there are gaps in the because of full span items. If it finds, it will re-layout
164 * how we handle gaps in UI.
200 * If a full span item is invalid / or created in reverse direction; it may create gaps in
214 * Temporary array used (solely in {@link #collectAdjacentPrefetchPositions}) for stashing and
227 * Constructor used when layout manager is set in XM
3044 FullSpanItem(Parcel in) argument
3125 SavedState(Parcel in) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewBasicTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
316 assertEquals("uuid in layout manager should be preserved properly", mlm.mUuid,
578 public LayoutManagerSavedState(Parcel in) { argument
579 mUuid = in.readString();
599 public LayoutManagerSavedState createFromParcel(Parcel in) {
600 return new LayoutManagerSavedState(in);
/frameworks/support/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
16 # Don't include in unbundled build.
22 # Find all of the files in the given subdirs that match the
32 define find-files-in-subdirs-exclude
47 $(call find-files-in-subdirs-exclude,$(LOCAL_PATH),"$(1)","$(2)",$(3))
/frameworks/support/compat/java/android/support/v4/os/
H A DParcelableCompat.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
23 * Helper for accessing features in {@link android.os.Parcelable} in a backwards compatible fashion.
53 public T createFromParcel(Parcel in) { argument
54 return mCallbacks.createFromParcel(in, null);
58 public T createFromParcel(Parcel in, ClassLoader loader) { argument
59 return mCallbacks.createFromParcel(in, loader);
H A DParcelableCompatCreatorCallbacks.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 * @param in The Parcel to read the object's data from.
37 * @param loader The ClassLoader that this object is being created in.
40 T createFromParcel(Parcel in, ClassLoader loader); argument
H A DResultReceiver.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
87 * always asynchronously if the receiver has supplied a Handler in which
135 ResultReceiver(Parcel in) { argument
138 mReceiver = IResultReceiver.Stub.asInterface(in.readStrongBinder());
144 public ResultReceiver createFromParcel(Parcel in) {
145 return new ResultReceiver(in);
/frameworks/support/compat/tests/java/android/support/v4/provider/
H A DMockFontProvider.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
182 private static Cursor buildCursor(Font[] in) { argument
183 if (!in[0].mReturnAllFields) {
185 for (Font font : in) {
193 for (Font font : in) {
259 "Failed to found font file. You might forget call prepareFontFiles in setUp");
/frameworks/support/core-ui/java/android/support/v4/view/
H A DViewPager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
69 * <p>ViewPager is most often used in conjunction with {@link android.app.Fragment},
99 * <p>You can find examples of using ViewPager in the API 4+ Support Demos and API 13+ Support Demos
121 * Used to track what the expected number of items in the adapter should be.
248 * Indicates that the pager is in an idle, settled state. The current page
249 * is fully in view and no animation is in progress.
259 * Indicates that the pager is in the process of settling to a final position.
285 * @param positionOffsetPixels Value in pixel
1420 SavedState(Parcel in, ClassLoader loader) argument
[all...]
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DDrawerLayout.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
87 * This preserves the same navigation left, actions right structure present in the Action Bar
102 * Indicates that any drawers are in an idle, settled state. No animation is in progress.
112 * Indicates that a drawer is in the process of settling to a final position.
245 * Called when a drawer has settled in a completely open state.
253 * Called when a drawer has settled in a completely closed state.
410 * Sets the base elevation of the drawer(s) relative to the parent, in pixels. Note that the
411 * elevation change is only supported in AP
2016 SavedState(Parcel in, ClassLoader loader) argument
[all...]
H A DSlidingPaneLayout.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
59 * in the SlidingPaneLayout. When this occurs the user may slide the topmost view out of the way
60 * by dragging it, or by navigating in the direction of the overlapped view using a keyboard.
68 * <p>SlidingPaneLayout is distinct from a navigation drawer as described in the design
69 * guide and should not be used in the same scenarios. SlidingPaneLayout should be thought
71 * screens in a natural way. The interaction patterns expressed by SlidingPaneLayout imply
73 * in a scenario where a navigation drawer should be used instead.</p>
85 * When views do not overlap weight behaves as it does in a LinearLayout.</p>
88 * sized to fill all available space in th
1469 SavedState(Parcel in, ClassLoader loader) argument
[all...]

Completed in 365 milliseconds

1234567891011>>