Searched refs:from (Results 76 - 100 of 595) sorted by relevance

1234567891011>>

/frameworks/support/design/gingerbread/android/support/design/widget/
H A DValueAnimatorCompatImplGingerbread.java107 public void setIntValues(int from, int to) { argument
108 mIntValues[0] = from;
118 public void setFloatValues(float from, float to) { argument
119 mFloatValues[0] = from;
/frameworks/support/design/tests/src/android/support/design/widget/
H A DBottomSheetBehaviorActivity.java45 mBehavior = BottomSheetBehavior.from(mBottomSheet);
H A DBottomSheetDialogTest.java69 BottomSheetBehavior<FrameLayout> behavior = BottomSheetBehavior.from(bottomSheet);
107 BottomSheetBehavior<FrameLayout> behavior = BottomSheetBehavior.from(bottomSheet);
138 BottomSheetBehavior<FrameLayout> behavior = BottomSheetBehavior.from(bottomSheet);
200 BottomSheetBehavior behavior = BottomSheetBehavior.from(view);
220 BottomSheetBehavior.from(view).setState(state);
229 return BottomSheetBehavior.from(view) != null;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDividerPresenter.java47 View headerView = LayoutInflater.from(parent.getContext())
H A DListRowView.java42 LayoutInflater inflater = LayoutInflater.from(context);
/frameworks/support/v7/palette/src/androidTest/java/android/support/v7/graphics/
H A DMaxColorsTest.java51 Palette newPalette = Palette.from(loadSampleBitmap())
H A DBucketTests.java46 Palette.from(sample).generate();
53 Palette p = Palette.from(loadSampleBitmap()).generate();
65 Palette p = Palette.from(swatches);
126 final Palette palette = Palette.from(bitmap).generate();
141 final Palette palette = Palette.from(bitmap)
169 // Now generate a palette from the bitmap
170 final Palette palette = Palette.from(bitmap).generate();
/frameworks/av/media/libstagefright/foundation/
H A DMetaData.cpp35 MetaData::MetaData(const MetaData &from) argument
37 mItems(from.mItems) {
244 MetaData::typed_data::typed_data(const typed_data &from) argument
245 : mType(from.mType),
248 void *dst = allocateStorage(from.mSize);
250 memcpy(dst, from.storage(), mSize);
255 const MetaData::typed_data &from) {
256 if (this != &from) {
258 mType = from.mType;
259 void *dst = allocateStorage(from
254 operator =( const MetaData::typed_data &from) argument
[all...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java47 mInflater = TransitionInflater.from(this);
53 TransitionInflater inflater = TransitionInflater.from(this);
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp19 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:mcld::NameMap
78 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
/frameworks/base/cmds/app_process/
H A DAndroid.mk4 # bad apps. This prevents a library from having a mismatch when resolving
5 # new/delete from an app shared library.
38 # Create a symlink from app_process to app_process32 or 64
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPageIndicator.java104 private void animate(int from, int to) { argument
105 if (DEBUG) Log.d(TAG, "Animating from " + Integer.toHexString(from) + " to "
107 int fromIndex = from >> 1;
114 boolean fromTransition = (from & 1) != 0;
115 boolean isAState = fromTransition ? from > to : from < to;
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java42 * Sample activity from which ItemTouchHelper demo activities inherit.
76 return new ConfigViewHolder(LayoutInflater.from(parent.getContext())
207 LayoutInflater.from(parent.getContext())
270 public void move(int from, int to) { argument
271 String prev = mItems.remove(from);
272 mItems.add(to > from ? to - 1 : to, prev);
273 notifyItemMoved(from, to);
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java42 * Sample activity from which ItemTouchHelper demo activities inherit.
76 return new ConfigViewHolder(LayoutInflater.from(parent.getContext())
207 LayoutInflater.from(parent.getContext())
270 public void move(int from, int to) { argument
271 String prev = mItems.remove(from);
272 mItems.add(to > from ? to - 1 : to, prev);
273 notifyItemMoved(from, to);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
H A DItemTouchHelperTest.java197 if (move.from == vh) {
247 RecyclerView.ViewHolder from, to; field in class:ItemTouchHelperTest.MoveRecord
249 MoveRecord(RecyclerView.ViewHolder from, RecyclerView.ViewHolder to) { argument
250 this.from = from;
252 fromPos = from.getAdapterPosition();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DNetworkDetail.java62 // True if the SSID is potentially from a hidden network
84 * 802.11 Standard (calculated from Capabilities and Supported Rates)
175 bssLoad.from(ie);
178 htOperation.from(ie);
181 vhtOperation.from(ie);
184 interworking.from(ie);
187 roamingConsortium.from(ie);
190 vsa.from(ie);
193 extendedCapabilities.from(ie);
196 trafficIndicationMap.from(i
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java74 protected PackageDexOptimizer(PackageDexOptimizer from) { argument
75 this.mInstaller = from.mInstaller;
76 this.mInstallLock = from.mInstallLock;
77 this.mDexoptWakeLock = from.mDexoptWakeLock;
78 this.mSystemReady = from.mSystemReady;
371 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) { argument
372 super(from);
/frameworks/native/libs/input/
H A DInput.cpp39 void InputEvent::initialize(const InputEvent& from) { argument
40 mDeviceId = from.mDeviceId;
41 mSource = from.mSource;
76 void KeyEvent::initialize(const KeyEvent& from) { argument
77 InputEvent::initialize(from);
78 mAction = from.mAction;
79 mFlags = from.mFlags;
80 mKeyCode = from.mKeyCode;
81 mScanCode = from.mScanCode;
82 mMetaState = from
[all...]
/frameworks/base/core/java/android/widget/
H A DSimpleAdapter.java37 * defines the views used to display the row, and a mapping from keys in the Map to specific
78 * "from"
81 * @param from A list of column names that will be added to the Map associated with each
83 * @param to The views that should display column in the "from" parameter. These should all be
85 * in the from parameter.
88 @LayoutRes int resource, String[] from, @IdRes int[] to) {
91 mFrom = from;
156 * {@code null} to use the theme from the adapter's context
167 mDropDownInflater = LayoutInflater.from(context);
189 final String[] from
87 SimpleAdapter(Context context, List<? extends Map<String, ?>> data, @LayoutRes int resource, String[] from, @IdRes int[] to) argument
[all...]
H A DSimpleCursorTreeAdapter.java25 * An easy adapter to map columns from a cursor to TextViews or ImageViews
48 * The View IDs that will display a group's data fetched from the
59 * The View IDs that will display a child's data fetched from the
84 * @param groupTo The group views (from the group layouts) that should
85 * display column in the "from" parameter. These should all be
87 * given the values of the first N columns in the from parameter.
97 * @param childTo The child views (from the child layouts) that should
98 * display column in the "from" parameter. These should all be
100 * given the values of the first N columns in the from parameter.
125 * @param groupTo The group views (from th
212 bindView(View view, Context context, Cursor cursor, int[] from, int[] to) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DBoundsAnimationController.java104 // True if this this animation was cancelled and will be replaced the another animation from
111 // Depending on whether we are animating from
116 BoundsAnimator(AnimateBoundsUser target, Rect from, Rect to, argument
120 mFrom = from;
127 // If we are animating from smaller to larger, we want to change the task bounds
129 // larger. Likewise if we are going from bigger to smaller, we want to wait until
130 // the end so we don't have to upscale from the smaller finished size.
156 + mTmpRect + " from=" + mFrom + " mTo=" + mTo + " value=" + value
256 * from the hierarchy and is not valid anymore.
279 void animateBounds(final AnimateBoundsUser target, Rect from, Rec argument
[all...]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DLayoutInflaterFactoryTestCase.java65 final LayoutInflater inflater = LayoutInflater.from(getActivity());
77 final LayoutInflater inflater = LayoutInflater.from(getActivity());
93 LayoutInflater inflater = LayoutInflater.from(getActivity());
183 LayoutInflater inflater = LayoutInflater.from(getActivity());
197 LayoutInflater inflater = LayoutInflater.from(getActivity());
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp61 void ARTPAssembler::CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from) { argument
63 CHECK(from->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
68 to->setInt32Data(from->int32Data());
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileAdapter.java184 LayoutInflater inflater = LayoutInflater.from(context);
345 private boolean move(int from, int to, View v) { argument
346 if (to == from) {
349 CharSequence fromLabel = mTiles.get(from).state.label;
350 move(from, to, mTiles);
357 from);
360 } else if (from >= mEditIndex) {
408 private <T> void move(int from, int to, List<T> list) { argument
409 list.add(to, list.remove(from));
410 notifyItemMoved(from, t
[all...]
/frameworks/data-binding/extensions/library/
H A Dbuild.gradle92 from 'build/docs/javadoc'
98 from android.sourceSets.main.java.srcDirs
174 from "$buildDir/outputs/aar/library-release.aar"

Completed in 635 milliseconds

1234567891011>>