Searched refs:mView (Results 51 - 75 of 122) sorted by relevance

12345

/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DRSTest_v14.java46 private RSTestView mView; field in class:RSTest_v14
56 mView = new RSTestView(this);
57 setContentView(mView);
65 mView.resume();
73 mView.pause();
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
H A DRSTest_v16.java46 private RSTestView mView; field in class:RSTest_v16
56 mView = new RSTestView(this);
57 setContentView(mView);
65 mView.resume();
73 mView.pause();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java32 private final PhoneStatusBarView mView; field in class:PhoneStatusBarTransitions
40 mView = view;
41 final Resources res = mView.getContext().getResources();
46 mLeftSide = mView.findViewById(R.id.notification_icon_area);
47 mStatusIcons = mView.findViewById(R.id.statusIcons);
48 mSignalCluster = mView.findViewById(R.id.signal_cluster);
49 mBattery = mView.findViewById(R.id.battery);
50 mClock = mView.findViewById(R.id.clock);
H A DNavigationBarTransitions.java32 private final NavigationBarView mView; field in class:NavigationBarTransitions
39 mView = view;
66 final View navButtons = mView.getCurrentView().findViewById(R.id.nav_buttons);
67 final View lowLights = mView.getCurrentView().findViewById(R.id.lights_out);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatBackgroundHelper.java33 private final View mView; field in class:AppCompatBackgroundHelper
40 mView = view;
45 TypedArray a = mView.getContext().obtainStyledAttributes(attrs,
56 ViewCompat.setBackgroundTintList(mView,
60 ViewCompat.setBackgroundTintMode(mView,
109 if (mView.getBackground() != null) {
111 TintManager.tintViewBackground(mView, mBackgroundTint);
113 TintManager.tintViewBackground(mView, mInternalBackgroundTint);
H A DAppCompatTextHelper.java34 private final TextView mView; field in class:AppCompatTextHelper
37 mView = view;
41 Context context = mView.getContext();
64 final ColorStateList textColors = mView.getTextColors();
83 mView.setTextColor(ThemeUtils.createDisabledStateList(
97 mView.setTransformationMethod(allCaps
98 ? new AllCapsTransformationMethod(mView.getContext())
H A DAppCompatCompoundButtonHelper.java35 private final CompoundButton mView; field in class:AppCompatCompoundButtonHelper
53 mView = view;
58 TypedArray a = mView.getContext().obtainStyledAttributes(attrs, R.styleable.CompoundButton,
65 mView.setButtonDrawable(mTintManager.getDrawable(resourceId));
69 CompoundButtonCompat.setButtonTintList(mView,
73 CompoundButtonCompat.setButtonTintMode(mView,
116 Drawable buttonDrawable = CompoundButtonCompat.getButtonDrawable(mView);
130 buttonDrawable.setState(mView.getDrawableState());
132 mView.setButtonDrawable(buttonDrawable);
140 Drawable buttonDrawable = CompoundButtonCompat.getButtonDrawable(mView);
[all...]
/frameworks/base/core/java/android/widget/
H A DToast.java353 View mView; field in class:Toast.TN
392 if (localLOGV) Log.v(TAG, "HANDLE SHOW: " + this + " mView=" + mView
394 if (mView != mNextView) {
397 mView = mNextView;
398 Context context = mView.getContext().getApplicationContext();
399 String packageName = mView.getContext().getOpPackageName();
401 context = mView.getContext();
406 final Configuration config = mView.getContext().getResources().getConfiguration();
420 if (mView
[all...]
H A DAccessibilityIterators.java119 private TextView mView; field in class:AccessibilityIterators.PageTextSegmentIterator
132 mView = view;
144 if (!mView.getGlobalVisibleRect(mTempRect)) {
152 final int pageHeight = mTempRect.height() - mView.getTotalPaddingTop()
153 - mView.getTotalPaddingBottom();
173 if (!mView.getGlobalVisibleRect(mTempRect)) {
181 final int pageHeight = mTempRect.height() - mView.getTotalPaddingTop()
182 - mView.getTotalPaddingBottom();
/frameworks/base/core/java/com/android/internal/widget/
H A DExploreByTouchHelper.java75 private final View mView; field in class:ExploreByTouchHelper
99 mView = forView;
181 final ViewParent parent = mView.getParent();
187 return parent.requestSendAccessibilityEvent(mView, event);
274 onInitializeAccessibilityEvent(mView, event);
303 event.setPackageName(mView.getContext().getPackageName());
304 event.setSource(mView, virtualViewId);
335 final AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(mView);
336 onInitializeAccessibilityNodeInfo(mView, node);
349 node.addChild(mView, virtualViewId
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DExploreByTouchHelper.java76 private final View mView; field in class:ExploreByTouchHelper
97 mView = forView;
180 final ViewParent parent = mView.getParent();
186 return ViewParentCompat.requestSendAccessibilityEvent(parent, mView, event);
275 ViewCompat.onInitializeAccessibilityEvent(mView, event);
304 event.setPackageName(mView.getContext().getPackageName());
307 record.setSource(mView, virtualViewId);
338 final AccessibilityNodeInfoCompat node = AccessibilityNodeInfoCompat.obtain(mView);
339 ViewCompat.onInitializeAccessibilityNodeInfo(mView, node);
349 node.addChild(mView, childVirtualViewI
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistManager.java57 private AssistOrbContainer mView; field in class:AssistManager
68 mView.post(mHideRunnable);
73 mView.post(mHideRunnable);
80 mView.removeCallbacks(this);
81 mView.show(false /* show */, true /* animate */);
107 if (mView != null) {
108 visible = mView.isShowing();
109 mWindowManager.removeView(mView);
112 mView = (AssistOrbContainer) LayoutInflater.from(mContext).inflate(
114 mView
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationViewWrapper.java32 protected final View mView; field in class:NotificationViewWrapper
51 mView = view;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHardwareCanvasTextureViewActivity.java73 private final TextureView mView; field in class:HardwareCanvasTextureViewActivity.RenderingThread
78 mView = view;
79 mSurface = new Surface(mView.getSurfaceTexture());
101 if (x + 20.0f + speedX >= mView.getWidth() || x + speedX <= 0.0f) {
104 if (y + 20.0f + speedY >= mView.getHeight() || y + speedY <= 0.0f) {
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java53 final View mView; field in class:ViewPropertyAnimator
127 * done by posting it onto mView), at which time the pending list is cleared and the properties
252 mView = view;
414 mView.removeCallbacks(mAnimationStarter);
435 mView.removeCallbacks(mAnimationStarter);
777 mView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
778 if (mView.isAttachedToWindow()) {
779 mView.buildLayer();
783 final int currentLayerType = mView.getLayerType();
787 mView
[all...]
H A DGhostView.java33 private final View mView; field in class:GhostView
39 mView = view;
40 mView.mGhostView = this;
41 final ViewGroup parent = (ViewGroup) mView.getParent();
42 mView.setTransitionVisibility(View.INVISIBLE);
50 mView.mRecreateDisplayList = true;
51 RenderNode renderNode = mView.updateDisplayListIfDirty();
67 if (mView.mGhostView == this) {
69 mView.setTransitionVisibility(inverseVisibility);
77 mView
[all...]
H A DViewPropertyAnimatorRT.java36 private final View mView; field in class:ViewPropertyAnimatorRT
41 mView = view;
88 animator.setTarget(mView);
115 if (!mView.isHardwareAccelerated()) {
/frameworks/support/design/src/android/support/design/widget/
H A DSnackbar.java174 private final SnackbarLayout mView; field in class:Snackbar
183 mView = (SnackbarLayout) inflater.inflate(R.layout.design_layout_snackbar, mParent, false);
281 final TextView tv = mView.getActionView();
307 final TextView tv = mView.getActionView();
318 final TextView tv = mView.getActionView();
330 final TextView tv = mView.getMessageView();
373 return mView;
407 return mView.isShown();
423 if (mView.getParent() == null) {
424 final ViewGroup.LayoutParams lp = mView
[all...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DSurfaceAndTextureViews.java41 SimpleView mView; field in class:SurfaceAndTextureViews
54 mView = new SimpleView(this);
55 mView.setId(0);
56 mView.setLayoutParams(new LayoutParams(SMALL_SIZE, SMALL_SIZE));
57 container.addView(mView);
80 if (mView.getWidth() <= SMALL_SIZE) {
81 mView.setLayoutParams(new LayoutParams(SMALL_SIZE * 2, SMALL_SIZE));
84 mView.mColor = SimpleView.LARGE_COLOR;
88 mView.setLayoutParams(new LayoutParams(SMALL_SIZE, SMALL_SIZE));
91 mView
[all...]
/frameworks/support/design/eclair-mr1/android/support/design/widget/
H A DFloatingActionButtonEclairMr1.java101 mView.getResources(),
161 if (mIsHiding || mView.getVisibility() != View.VISIBLE) {
167 mView.getContext(), R.anim.design_fab_out);
179 mView.setVisibility(View.GONE);
182 mView.startAnimation(anim);
187 if (mView.getVisibility() != View.VISIBLE || mIsHiding) {
190 mView.clearAnimation();
191 mView.setVisibility(View.VISIBLE);
193 mView.getContext(), R.anim.design_fab_in);
196 mView
[all...]
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java258 private final View mView; field in class:SlideKitkat.SlideAnimatorListener
267 mView = view;
277 transitionPosition[0] = mView.getTranslationX();
278 transitionPosition[1] = mView.getTranslationY();
279 mView.setTag(R.id.lb_slide_transition_value, transitionPosition);
280 mProp.set(mView, mTerminalValue);
287 mProp.set(mView, mTerminalValue);
289 mView.setVisibility(mFinalVisibility);
294 mPausedValue = mProp.get(mView);
295 mProp.set(mView, mEndValu
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java26 private WeakReference<View> mView; field in class:ViewPropertyAnimatorCompat
36 mView = new WeakReference<View>(view);
674 if ((view = mView.get()) != null) {
691 if ((view = mView.get()) != null) {
708 if ((view = mView.get()) != null) {
725 if ((view = mView.get()) != null) {
742 if ((view = mView.get()) != null) {
777 if ((view = mView.get()) != null) {
795 if ((view = mView.get()) != null) {
814 if ((view = mView
[all...]
/frameworks/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java48 mInterpolator = AnimationUtils.loadInterpolator(mView.getContext(),
99 ViewCompat.setElevation(mView, elevation);
108 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", translationZ)));
110 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", translationZ)));
113 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", 0f)));
115 mView.setStateListAnimator(stateListAnimator);
/frameworks/support/design/base/android/support/design/widget/
H A DFloatingActionButtonImpl.java36 final View mView; field in class:FloatingActionButtonImpl
40 mView = view;
66 final Resources resources = mView.getResources();
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneFallbackEventHandler.java45 View mView; field in class:PhoneFallbackEventHandler
57 mView = v;
81 final KeyEvent.DispatcherState dispatcher = mView.getKeyDispatcherState();
122 mView.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS);
149 mView.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS);
179 mView.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS);
207 final KeyEvent.DispatcherState dispatcher = mView.getKeyDispatcherState();

Completed in 687 milliseconds

12345