Searched refs:view (Results 126 - 150 of 1754) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/services/public/cpp/view_manager/
H A Dview_observer.h12 #include "mojo/services/public/cpp/view_manager/view.h"
25 // -ing methods are called before changes are applied to the local view model.
26 // -ed methods are called after changes are applied to the local view model.
28 // If the change originated from another connection to the view manager, it's
31 // possible the view has already been destroyed on the service side.
46 virtual void OnViewReordering(View* view, argument
49 virtual void OnViewReordered(View* view, argument
53 virtual void OnViewDestroying(View* view) {} argument
54 virtual void OnViewDestroyed(View* view) {} argument
56 virtual void OnViewBoundsChanging(View* view, argument
59 OnViewBoundsChanged(View* view, const gfx::Rect& old_bounds, const gfx::Rect& new_bounds) argument
65 OnViewInputEvent(View* view, const EventPtr& event) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/share/
H A DShareDialogAdapter.java13 import android.view.LayoutInflater;
14 import android.view.View;
15 import android.view.ViewGroup;
44 View view;
46 view = mInflater.inflate(R.layout.share_dialog_item, parent, false);
48 view = convertView;
50 TextView text = (TextView) view.findViewById(R.id.text);
51 ImageView icon = (ImageView) view.findViewById(R.id.icon);
55 return view;
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
H A DTranslateUtil.java10 import android.view.View;
29 View view = infoBar.getContentWrapper().findViewById(R.id.infobar_message);
30 if (view == null) {
34 TextView text = (TextView) view.findViewById(R.id.infobar_message);
62 View view = infoBar.getContentWrapper().findViewById(R.id.infobar_message);
63 if (view == null) {
66 String infoBarText = findInfoBarText(view);
70 private static String findInfoBarText(View view) { argument
71 TextView text = (TextView) view.findViewById(R.id.infobar_message);
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DWindowCallbackWrapper.java8 import android.view.ActionMode;
9 import android.view.ActionMode.Callback;
10 import android.view.KeyEvent;
11 import android.view.Menu;
12 import android.view.MenuItem;
13 import android.view.MotionEvent;
14 import android.view.View;
15 import android.view.Window;
16 import android.view.WindowManager.LayoutParams;
17 import android.view
112 onPreparePanel(int featureId, View view, Menu menu) argument
[all...]
H A DApiCompatibilityUtils.java17 import android.view.View;
18 import android.view.ViewGroup.MarginLayoutParams;
19 import android.view.ViewTreeObserver;
35 * Returns true if view's layout direction is right-to-left.
37 * @param view the View whose layout is being considered
39 public static boolean isLayoutRtl(View view) { argument
41 return view.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
75 * @see android.view.View#setLayoutDirection(int)
77 public static void setLayoutDirection(View view, int layoutDirection) { argument
79 view
88 setTextAlignment(View view, int textAlignment) argument
99 setTextDirection(View view, int textDirection) argument
154 setPaddingRelative(View view, int start, int top, int end, int bottom) argument
166 getPaddingStart(View view) argument
178 getPaddingEnd(View view) argument
245 postInvalidateOnAnimation(View view) argument
256 postOnAnimation(View view, Runnable action) argument
267 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
324 setBackgroundForView(View view, Drawable drawable) argument
336 removeOnGlobalLayoutListener( View view, ViewTreeObserver.OnGlobalLayoutListener listener) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dplatform_util.h37 // Get the top level window for the native view. This can return NULL.
38 gfx::NativeWindow GetTopLevel(gfx::NativeView view);
40 // Get the direct parent of |view|, may return NULL.
41 gfx::NativeView GetParent(gfx::NativeView view);
49 // Returns true if the view is visible. The exact definition of this is
51 // whether the view has the visible attribute set.
52 bool IsVisible(gfx::NativeView view);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DheapProfiler.css40 .heap-snapshot-view {
50 .heap-snapshot-view .pie-chart {
54 .heap-snapshot-view .data-grid {
58 .heap-snapshot-view .data-grid tr:empty {
63 .heap-snapshot-view .data-grid span.percent-column {
67 .heap-snapshot-view .console-formatted-object,
77 .heap-snapshot-view .console-formatted-string {
81 .heap-snapshot-view tr:not(.selected) .console-formatted-id {
85 .heap-snapshot-view .delimiter {
90 .heap-snapshot-view
[all...]
H A DrequestHeadersView.css7 .request-headers-view {
19 .request-headers-view.visible {
23 .request-headers-view .outline-disclosure > .parent {
28 .request-headers-view .outline-disclosure > .parent > .section {
32 .request-headers-view .outline-disclosure .children li {
36 .request-headers-view .outline-disclosure .caution {
42 .request-headers-view .outline-disclosure li.expanded .header-count {
46 .request-headers-view .outline-disclosure li .header-toggle {
50 .request-headers-view .outline-disclosure li .status-from-cache {
54 .request-headers-view
[all...]
/external/chromium_org/ui/views/animation/
H A Dbounds_animator.h28 // Bounds animator is responsible for animating the bounds of a view from the
33 // BoundsAnimator internally creates an animation for each view. If you need
35 // You can attach an AnimationDelegate to the individual animation for a view
41 explicit BoundsAnimator(View* view);
44 // Starts animating |view| from its current bounds to |target|. If there is
45 // already an animation running for the view it's stopped and a new one
46 // started. If an AnimationDelegate has been set for |view| it is removed
48 void AnimateViewTo(View* view, const gfx::Rect& target);
51 // target bounds. If |view| is not being animated this is the same as
53 void SetTargetBounds(View* view, cons
[all...]
/external/chromium_org/ui/views/
H A Ddrag_utils.cc21 gfx::NativeView view = widget->GetNativeView(); local
22 gfx::Display display = gfx::Screen::GetScreenFor(view)->
23 GetDisplayNearestWindow(view);
/external/droiddriver/src/com/google/android/droiddriver/instrumentation/
H A DInstrumentationInputInjector.java20 import android.view.InputEvent;
21 import android.view.KeyEvent;
22 import android.view.MotionEvent;
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DImageViewTargetFactory.java10 public <Z> Target<Z> buildTarget(ImageView view, Class<Z> clazz) { argument
12 return (Target<Z>) new BitmapImageViewTarget(view);
14 return (Target<Z>) new DrawableImageViewTarget(view);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimationUtils.java4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
6 import android.view.animation.TranslateAnimation;
H A DShadowViewStub.java3 import android.view.LayoutInflater;
4 import android.view.View;
5 import android.view.ViewGroup;
6 import android.view.ViewParent;
7 import android.view.ViewStub;
73 View view = factory.inflate(mLayoutResource, parent, false);
76 view.setId(mInflatedId);
85 parent.addView(view, index, layoutParams);
87 parent.addView(view, index);
90 mInflatedViewRef = new WeakReference<View>(view);
[all...]
/external/chromium_org/mojo/services/public/cpp/view_manager/tests/
H A Dview_manager_unittest.cc100 explicit BoundsChangeObserver(View* view) : view_(view) {} argument
105 virtual void OnViewBoundsChanged(View* view,
108 DCHECK_EQ(view, view_);
117 // Wait until the bounds of the supplied view change.
118 void WaitForBoundsToChange(View* view) { argument
119 BoundsChangeObserver observer(view);
120 view->AddObserver(&observer);
122 view->RemoveObserver(&observer);
145 size_t CountViews(const View* view) cons
159 WaitForTreeSizeToMatch(View* view, size_t tree_size) argument
208 OrderChangeObserver(View* view) argument
229 WaitForOrderChange(ViewManager* view_manager, View* view) argument
237 ViewTracker(View* view) argument
280 View* view = View::Create(parent_manager); local
286 Embed(ViewManager* view_manager, View* view) argument
369 View* view = View::Create(window_manager()); local
383 View* view = View::Create(window_manager()); local
397 View* view = View::Create(window_manager()); local
427 View* view = View::Create(window_manager()); local
443 View* view = View::Create(window_manager()); local
458 View* view = View::Create(window_manager()); local
485 View* view = View::Create(window_manager()); local
[all...]
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dfocus_ring_controller.cc14 #include "ui/views/view.h"
46 views::View* view = NULL; local
48 view = widget_->GetFocusManager()->GetFocusedView();
50 // No focus ring if no focused view or the focused view covers the whole
52 if (!view ||
53 view->ConvertRectToWidget(view->bounds()) ==
59 gfx::Rect view_bounds = view->GetContentsBounds();
62 if (view
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item.h19 // DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view|
23 gfx::NativeView view);
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dview_resizer.h13 // to their parents. When a controller needs to change a view's height, rather
18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dopaque_browser_frame_view_linux.cc17 OpaqueBrowserFrameView* view,
20 : view_(view),
64 OpaqueBrowserFrameView* view,
67 return new OpaqueBrowserFrameViewLinux(view, layout, profile);
16 OpaqueBrowserFrameViewLinux( OpaqueBrowserFrameView* view, OpaqueBrowserFrameViewLayout* layout, Profile* profile) argument
63 Create( OpaqueBrowserFrameView* view, OpaqueBrowserFrameViewLayout* layout, Profile* profile) argument
/external/chromium_org/content/browser/renderer_host/
H A Ddip_util.h19 // Returns scale factor of the display nearest to |view|.
21 CONTENT_EXPORT float GetScaleFactorForView(const RenderWidgetHostView* view);
26 const RenderWidgetHostView* view, const gfx::Point& point_in_pixel);
28 const RenderWidgetHostView* view, const gfx::Size& size_in_dip);
30 const RenderWidgetHostView* view, const gfx::Rect& rect_in_dip);
/external/chromium_org/content/shell/renderer/
H A Dshell_render_view_observer.cc35 RenderView* view = render_view(); local
37 ipc_echo_.reset(new IPCEcho(view->GetWebView()->mainFrame()->document(),
38 RenderThread::Get(), view->GetRoutingID()));
39 ipc_echo_->Install(view->GetWebView()->mainFrame());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleMedia.cpp44 FrameView* view = m_frame ? m_frame->view() : 0; local
45 if (view)
46 return view->mediaType();
/external/chromium_org/ui/base/cocoa/
H A Dnsgraphics_context_additions.h12 // When a view is not layer backed the pattern phase is relative to the origin
13 // of the window's content view. With a layer backed view the pattern phase is
14 // relative to the origin of the view.
16 // For layer backed view this method offsets the pattern phase to match the
19 forView:(NSView*)view;
/external/deqp/framework/platform/ios/
H A DtcuIOSApp.h32 tcuIOSApp* tcuIOSApp_create (void* view);
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DViewPropertyAnimation.java4 import android.view.View;
10 public void animate(View view); argument
41 public boolean animate(Drawable previous, Object current, View view, Target target) { argument
42 animator.animate(view);

Completed in 533 milliseconds

1234567891011>>