HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 426 - 450 of 7837) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/ui/views/frame/
browser_window_property_manager_win.h 22 CreateBrowserWindowPropertyManager(BrowserView* view);
25 explicit BrowserWindowPropertyManager(BrowserView* view);
  /external/chromium_org/chrome/browser/ui/views/sync/
one_click_signin_bubble_view_unittest.cc 30 // Create a widget to host the anchor view.
61 OneClickSigninBubbleView* view = local
63 EXPECT_TRUE(view != NULL);
64 return view;
105 // Widget to host the anchor view of the bubble. Destroys itself when closed.
144 OneClickSigninBubbleView* view = local
149 // view so that it can be quit once the bubble is hidden.
150 views::ButtonListener* listener = view;
154 listener->ButtonPressed(view->ok_button_, event);
156 // View should no longer be showing. The message loop will exit once th
163 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
183 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
203 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
218 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
235 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
250 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
269 views::View* view = one_click_view; local
284 views::View* view = one_click_view; local
301 views::View* view = one_click_view; local
316 views::View* view = one_click_view; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
requestCookiesView.css 7 .request-cookies-view {
19 .request-cookies-view.visible {
23 .request-cookies-view .data-grid {
28 .request-cookies-view .data-grid .row-group {
resourceView.css 30 .resource-view {
35 .resource-view.visible {
39 .resource-view > * {
43 .resource-view.font {
51 .resource-view .script-view {
55 .resource-view.image > .image {
60 .resource-view.image > .info {
66 .resource-view.image img.resource-image-view {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_stateobj_tex.h 25 nv50_tic_entry(struct pipe_sampler_view *view)
27 return (struct nv50_tic_entry *)view;
  /external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViERenderer.java 14 import android.view.SurfaceHolder;
15 import android.view.SurfaceView;
  /external/chromium_org/ui/views/
cull_set.cc 19 bool CullSet::ShouldPaint(const View* view) const {
21 return (cull_set_->count(reinterpret_cast<intptr_t>(view)) > 0);
  /external/chromium_org/ui/views/layout/
layout_manager.cc 7 #include "ui/views/view.h"
14 void LayoutManager::Installed(View* host) {
17 void LayoutManager::Uninstalled(View* host) {
20 int LayoutManager::GetPreferredHeightForWidth(const View* host,
25 void LayoutManager::ViewAdded(View* host, View* view) {
28 void LayoutManager::ViewRemoved(View* host, View* view) {
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GlideAnimation.java 4 import android.view.View;
8 public boolean animate(Drawable previous, R current, View view, Target<R> target);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_stateobj_tex.h 25 nv50_tic_entry(struct pipe_sampler_view *view)
27 return (struct nv50_tic_entry *)view;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWindow.java 3 import android.view.Window;
4 import android.view.WindowManager;
  /frameworks/base/core/java/android/animation/
RevealAnimator.java 19 import android.view.RenderNodeAnimator;
20 import android.view.View;
23 * Reveals a View with an animated clipping circle.
24 * The clipping is implemented efficiently by talking to a private reveal API on View.
25 * This hidden class currently only accessed by the {@link android.view.View}.
31 private View mClipView;
33 public RevealAnimator(View clipView, int x, int y,
  /frameworks/base/core/java/android/transition/
ChangeText.java 25 import android.view.ViewGroup;
36 * text view to its new size before displaying the text that goes there.
64 * view at the end of the fade-out animation. This transition is typically
74 * end text into the affected target view(s). This transition is typically
77 * a sequence to fade out, then resize the view, then fade in.
129 if (transitionValues.view instanceof TextView) {
130 TextView textview = (TextView) transitionValues.view;
158 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) {
161 final TextView view = (TextView) endValues.view local
    [all...]
Rotate.java 21 import android.view.View;
22 import android.view.ViewGroup;
36 transitionValues.values.put(PROPNAME_ROTATION, transitionValues.view.getRotation());
41 transitionValues.values.put(PROPNAME_ROTATION, transitionValues.view.getRotation());
50 final View view = endValues.view; local
54 view.setRotation(startRotation);
55 return ObjectAnimator.ofFloat(view, View.ROTATION
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
ViewGroupChildren.java 17 package android.view;
23 import android.view.View;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListTakeFocusFromSide.java 24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.view.LayoutInflater;
63 public View getView(int position, View convertView, ViewGroup parent) {
64 TextView view; local
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
69 view = (TextView) convertView;
71 view.setText(mTitles[position])
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/
WindowManagerImpl.java 16 package com.android.layoutlib.bridge.android.view;
19 import android.view.Display;
20 import android.view.DisplayAdjustments;
21 import android.view.DisplayInfo;
22 import android.view.View;
23 import android.view.WindowManager;
47 public void addView(View arg0, android.view.ViewGroup.LayoutParams arg1) {
52 public void removeView(View arg0)
    [all...]
  /frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/
ShadowHelperApi21.java 22 import android.view.ViewGroup;
23 import android.view.View;
24 import android.view.ViewOutlineProvider;
32 public void getOutline(View view, Outline outline) {
33 outline.setRect(0, 0, view.getWidth(), view.getHeight());
65 public static void setZ(View view, float z)
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
BaseFragment.java 21 import android.view.View;
22 import android.view.ViewTreeObserver;
36 public void onViewCreated(View view, Bundle savedInstanceState) {
37 super.onViewCreated(view, savedInstanceState);
123 * and executed when view is created.
129 // if view is not created yet, delay until onViewCreated()
135 final View view = getView() local
    [all...]
BaseSupportFragment.java 23 import android.view.View;
24 import android.view.ViewTreeObserver;
38 public void onViewCreated(View view, Bundle savedInstanceState) {
39 super.onViewCreated(view, savedInstanceState);
125 * and executed when view is created.
131 // if view is not created yet, delay until onViewCreated()
137 final View view = getView() local
    [all...]
  /frameworks/support/v4/honeycomb/android/support/v4/view/
KeyEventCompatHoneycomb.java 17 package android.support.v4.view;
19 import android.view.KeyEvent;
VelocityTrackerCompatHoneycomb.java 17 package android.support.v4.view;
19 import android.view.VelocityTracker;
  /frameworks/support/v4/jellybean-mr2/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatJellybeanMr2.java 17 package android.support.v4.view.accessibility;
19 import android.view.accessibility.AccessibilityNodeInfo;
  /frameworks/support/v4/kitkat/android/support/v4/widget/
ListPopupWindowCompatKitKat.java 19 import android.view.View;
20 import android.view.View.OnTouchListener;
27 public static OnTouchListener createDragToOpenListener(Object listPopupWindow, View src) {
PopupWindowCompatKitKat.java 19 import android.view.View;
20 import android.view.View.OnTouchListener;
28 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,

Completed in 587 milliseconds

<<11121314151617181920>>