Searched defs:view (Results 1 - 25 of 734) sorted by relevance

1234567891011>>

/external/chromium/webkit/glue/
H A Dwebview_unittest.cc15 WebView* view = test_shell_->webView(); local
16 ASSERT_TRUE(view != 0);
18 view->setIsActive(true);
19 EXPECT_TRUE(view->isActive());
21 view->setIsActive(false);
22 EXPECT_FALSE(view->isActive());
24 view->setIsActive(true);
25 EXPECT_TRUE(view->isActive());
/external/chromium_org/chrome/browser/ui/views/
H A Dnative_focus_tracker_views_aura.cc12 gfx::NativeView view) {
13 while (view) {
15 BrowserView::GetBrowserViewForNativeWindow(view);
18 view = view->parent();
11 GetBrowserForNativeView( gfx::NativeView view) argument
H A Dnative_focus_tracker_views_win.cc11 gfx::NativeView view) {
12 HWND root = GetAncestor(view, GA_ROOT);
10 GetBrowserForNativeView( gfx::NativeView view) argument
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dopaque_browser_frame_view_platform_specific.cc14 OpaqueBrowserFrameView* view,
13 Create( OpaqueBrowserFrameView* view, OpaqueBrowserFrameViewLayout* layout) argument
/external/chromium_org/ui/v2/src/
H A Dview_private.cc9 ViewPrivate::ViewPrivate(View* view) : view_(view) {} argument
/external/chromium/chrome/browser/ui/views/
H A Dkeyboard_overlay_delegate.h21 HtmlDialogView* view() { function in class:KeyboardOverlayDelegate
44 // The view associated with this delegate.
H A Dfirst_run_bubble.h29 void set_view(FirstRunBubbleViewBase* view) { view_ = view; } argument
49 // The view inside the FirstRunBubble.
/external/chromium_org/ash/test/
H A Dapp_list_controller_test_api.cc22 return view()->app_list_main_view()->contents_view()->
26 app_list::AppListView* AppListControllerTestApi::view() { function in class:ash::test::AppListControllerTestApi
/external/eigen/bench/btl/data/
H A Dgnuplot_common_settings.hh32 set view 60, 30, 1, 1 variable
/external/chromium/chrome/browser/chromeos/status/
H A Dclock_menu_button_browsertest.cc32 BrowserView* view = static_cast<BrowserView*>(browser()->window()); local
33 return static_cast<StatusAreaView*>(view->
H A Dinput_method_menu_button_browsertest.cc31 BrowserView* view = static_cast<BrowserView*>(browser()->window()); local
32 return static_cast<StatusAreaView*>(view->
/external/chromium_org/chrome/browser/extensions/
H A Dextension_view_host.h32 // The ExtensionHost for an extension that backs a view in the browser UI. For
58 PlatformExtensionView* view() { return view_.get(); } function in class:extensions::ExtensionViewHost
135 // Optional view that shows the rendered content in the UI.
/external/chromium_org/chrome/browser/
H A Dplatform_util_aura.cc16 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { argument
17 return view->GetToplevelWindow();
20 gfx::NativeView GetParent(gfx::NativeView view) { argument
21 return view->parent();
41 bool IsVisible(gfx::NativeView view) { argument
42 return view->IsVisible();
H A Dplatform_util_common_linux.cc11 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { argument
14 GtkWidget* toplevel = gtk_widget_get_ancestor(view, GTK_TYPE_WINDOW);
18 gfx::NativeView GetParent(gfx::NativeView view) { argument
19 return gtk_widget_get_parent(view);
30 bool IsVisible(gfx::NativeView view) { argument
31 return gtk_widget_get_visible(view);
/external/chromium_org/chrome/browser/ui/gtk/notifications/
H A Dballoon_view_host_gtk.cc26 content::RenderWidgetHostView* view = host->GetView(); local
27 if (view)
28 view->SetSize(new_size);
/external/chromium_org/chrome/browser/ui/views/notifications/
H A Dballoon_view_host.h26 views::View* view() { function in class:BalloonViewHost
34 // Initialize the view, parented to |parent|, and show it.
38 // The views-specific host view. Pointer owned by the views hierarchy.
41 // The handle to the parent view.
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentVideoViewClient.java7 import android.view.View;
17 * The implementer is responsible for displaying the Android view when
22 * Called when the video view is ready to be shown. Must be implemented.
23 * @param view The view to show.
25 public void onShowCustomView(View view); argument
28 * Called when it's time to destroy the video view. Must be implemented.
33 * Allows the embedder to replace the view indicating that the video is loading.
34 * If null is returned, the default video loading view is used.
H A DPowerSaveBlocker.java12 private static void applyBlock(ViewAndroid view) { argument
13 view.incrementKeepScreenOnCount();
17 private static void removeBlock(ViewAndroid view) { argument
18 view.decrementKeepScreenOnCount();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleMedia.cpp45 FrameView* view = m_frame ? m_frame->view() : 0; local
46 if (view)
47 return view->mediaType();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBuffer.cpp70 void ArrayBuffer::addView(ArrayBufferView* view) argument
72 view->m_buffer = this;
73 view->m_prevView = 0;
74 view->m_nextView = m_firstView;
76 m_firstView->m_prevView = view;
77 m_firstView = view;
80 void ArrayBuffer::removeView(ArrayBufferView* view) argument
82 ASSERT(this == view->m_buffer);
83 if (view->m_nextView)
84 view
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_sampler.c34 * Initialize a pipe_sampler_view. 'view' is considered to have
38 default_template(struct pipe_sampler_view *view, argument
43 memset(view, 0, sizeof(*view));
48 view->format = format;
49 view->u.tex.first_level = 0;
50 view->u.tex.last_level = texture->last_level;
51 view->u.tex.first_layer = 0;
52 view->u.tex.last_layer = texture->target == PIPE_TEXTURE_3D ?
54 view
88 u_sampler_view_default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
100 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_stateobj_tex.h25 nv50_tic_entry(struct pipe_sampler_view *view) argument
27 return (struct nv50_tic_entry *)view;
/external/chromium_org/ui/gfx/android/
H A Dview_configuration.cc33 ScopedJavaLocalRef<jobject> view = local
35 return Java_ViewConfiguration_getScaledMaximumFlingVelocity(env, view.obj());
40 ScopedJavaLocalRef<jobject> view = local
42 return Java_ViewConfiguration_getScaledMinimumFlingVelocity(env, view.obj());
47 ScopedJavaLocalRef<jobject> view = local
49 return Java_ViewConfiguration_getScaledTouchSlop(env, view.obj());
/external/chromium_org/ui/snapshot/
H A Dsnapshot_android.cc15 bool GrabViewSnapshot(gfx::NativeView view, argument
19 view->GetWindowAndroid(), png_representation, snapshot_bounds);
/external/chromium_org/ui/views/controls/
H A Dslider_unittest.cc13 #include "ui/views/view.h"
17 void ClickAt(views::View* view, int x, int y) { argument
21 view->OnMousePressed(press);
24 view->OnMouseReleased(release);
33 View* view = slider.get(); local
34 gfx::Size size = view->GetPreferredSize();
35 view->SetSize(size);
37 ClickAt(view, 0, 0);
40 ClickAt(view, view
46 View* view = slider.get(); local
62 View* view = slider.get(); local
[all...]

Completed in 506 milliseconds

1234567891011>>