Searched refs:from (Results 176 - 200 of 511) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/transition/
H A DScene.java88 * children from the sceneRoot container and will inflate and add
109 * children from the sceneRoot container and add the layout
175 LayoutInflater.from(mContext).inflate(mLayoutId, mSceneRoot);
260 * This is called by TransitionManager to determine whether it is safe for views from
261 * this scene to be removed from their parents when the scene is exited, which is
262 * used by {@link Fade} to fade these views out (the views must be removed from
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java167 mInflater = LayoutInflater.from(getBaseContext()).cloneInContext(this);
/frameworks/base/core/tests/coretests/src/android/view/
H A DInflateTest.java40 mInflater = LayoutInflater.from(mContext);
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
H A DDocumentHolderTest.java42 LayoutInflater inflater = LayoutInflater.from(context);
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DNekoDialog.java74 return new Holder(LayoutInflater.from(parent.getContext())
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileView.java87 View view = LayoutInflater.from(mContext).inflate(R.layout.qs_tile_label, null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DUserDetailView.java44 return (UserDetailView) LayoutInflater.from(context).inflate(
/frameworks/base/services/core/java/com/android/server/am/
H A DUserSwitchingDialog.java66 View view = LayoutInflater.from(getContext()).inflate(R.layout.user_switching_dialog, null);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextGammaActivity.java76 final LayoutInflater inflater = LayoutInflater.from(c);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DLoginActivityFromResources.java51 TransitionInflater inflater = TransitionInflater.from(this);
/frameworks/native/cmds/installd/
H A Dcommands.cpp158 << " is not active; migrating from " << source;
325 auto from = create_data_app_package_path(from_uuid, data_app_name); local
336 (char*) from.c_str(),
340 LOG(DEBUG) << "Copying " << from << " to " << to;
344 LOG(ERROR) << "Failed copying " << from << " to " << to
383 auto from = create_data_user_de_package_path(from_uuid, user, package_name); local
385 argv[6] = (char*) from.c_str();
388 LOG(DEBUG) << "Copying " << from << " to " << to;
391 LOG(ERROR) << "Failed copying " << from << " to " << to << " with status " << rc;
396 auto from local
1902 unlink_and_rename(const char* from, const char* to) argument
[all...]
/frameworks/opt/setupwizard/library/full-support/test/src/com/android/setupwizardlib/test/
H A DGlifRecyclerLayoutTest.java52 LayoutInflater inflater = LayoutInflater.from(mContext);
89 assertSame("Adapter got from GlifRecyclerLayout should be same as set",
H A DSetupWizardRecyclerLayoutTest.java52 LayoutInflater inflater = LayoutInflater.from(mContext);
89 assertSame("Adapter got from SetupWizardLayout should be same as set",
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DTemplateLayout.java35 * inflating this layout from XML, the {@code android:layout} and {@code suwContainer} attributes
88 final LayoutInflater inflater = LayoutInflater.from(getContext());
127 * views retrieved from findViewById, or other view operations that need to be done in code.
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
H A DGlifListLayoutTest.java67 LayoutInflater inflater = LayoutInflater.from(mContext);
92 assertSame("Adapter got from GlifListLayout should be same as set",
H A DSetupWizardListLayoutTest.java64 LayoutInflater inflater = LayoutInflater.from(mContext);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSubscriptionInfoUpdaterTest.java255 SubscriptionManager mSubscriptionManager = SubscriptionManager.from(mContext);
303 SubscriptionManager mSubscriptionManager = SubscriptionManager.from(mContext);
347 SubscriptionManager mSubscriptionManager = SubscriptionManager.from(mContext);
380 SubscriptionManager mSubscriptionManager = SubscriptionManager.from(mContext);
/frameworks/support/design/tests/src/android/support/design/widget/
H A DBottomSheetBehaviorTouchTest.java89 assertThat(mBehavior, is(sameInstance(BottomSheetBehavior.from(mBottomSheet))));
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlButtonPresenterSelector.java87 View v = LayoutInflater.from(parent.getContext())
H A DRowContainerView.java48 LayoutInflater inflater = LayoutInflater.from(context);
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java92 private static final String ALLOW_ATT_FROM = "from";
258 public static Diff diff(ZenModeConfig from, ZenModeConfig to) { argument
259 if (from == null) {
266 return from.diff(to);
424 final int from = safeInt(parser, ALLOW_ATT_FROM, -1);
430 } else if (isValidSource(from)) {
431 Slog.i(TAG, "Migrating existing shared 'from': " + sourceToString(from));
432 rt.allowCallsFrom = from;
433 rt.allowMessagesFrom = from;
1103 appendDiff(Diff d, String item, ZenRule from, ZenRule to) argument
1329 addLine(String item, String subitem, Object from, Object to) argument
1333 addLine(String item, Object from, Object to) argument
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkFactory.java121 ConnectivityManager.from(mContext).registerNetworkFactory(mMessenger, LOG_TAG);
128 ConnectivityManager.from(mContext).unregisterNetworkFactory(mMessenger);
/frameworks/base/core/java/com/android/internal/util/
H A DPreconditions.java165 public static @IntRange(from = 0) int checkArgumentNonnegative(final int value,
182 public static @IntRange(from = 0) int checkArgumentNonnegative(final int value) {
/frameworks/base/core/java/com/android/internal/view/menu/
H A DStandardMenuPopup.java118 final LayoutInflater inflater = LayoutInflater.from(context);
186 (FrameLayout) LayoutInflater.from(mContext).inflate(
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java68 * Borrowed from CursorWindowTest.java
94 // Now see if we can pull 2 rows from the adapter
116 // Now see if we can pull 2 rows from the adapter
124 // Now see if we can pull 5 rows from the adapter
135 // Now see if we can pull 2 rows from the adapter
173 * Test that you can safely construct with a null cursor *and* null to/from arrays.
183 * Test going from a null cursor to a non-null cursor *and* setting the to/from arrays
206 * Test going from one mapping to a different mapping
258 String[] from, in
257 TestSimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) argument
[all...]

Completed in 639 milliseconds

1234567891011>>