Searched defs:view (Results 1 - 25 of 369) 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());
H A Dwebframe_unittest.cc23 WebView* view = test_shell_->webView(); local
24 WebFrame* frame = view->mainFrame();
64 WebView* view = test_shell_->webView(); local
65 WebFrame* frame = view->mainFrame();
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/
H A Dmain.cpp29 QWebView *view = new QWebView(parent); local
30 view->load(QUrl("http://qt.nokia.com/"));
31 view->show();
/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/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->
H A Dpower_menu_button_browsertest.cc38 BrowserView* view = static_cast<BrowserView*>(browser()->window()); local
39 PowerMenuButton* power = static_cast<StatusAreaView*>(view->
/external/robolectric/src/main/java/android/view/animation/
H A DShadowAnimationBridge.java1 package android.view.animation;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestWindowTest.java1 package com.xtremelabs.robolectric.tester.android.view;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DTestOnLongClickListener.java3 import android.view.View;
9 public boolean onLongClick(View view) { argument
/external/webkit/Source/WebCore/css/
H A DStyleMedia.cpp44 FrameView* view = m_frame ? m_frame->view() : 0; local
45 if (view)
46 return view->mediaType();
/external/webkit/Source/WebCore/dom/
H A DCompositionEvent.h40 static PassRefPtr<CompositionEvent> create(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data) argument
42 return adoptRef(new CompositionEvent(type, view, data));
54 CompositionEvent(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data);
/external/webkit/Source/WebKit/android/jni/
H A DWebFrameView.h50 WebCore::FrameView* view() const { function in class:android::WebFrameView
/external/webkit/Source/WebKit2/UIProcess/API/C/gtk/
H A DWKView.cpp42 RefPtr<WebView> view = WebView::create(toImpl(contextRef), toImpl(pageGroupRef)); local
43 return toAPI(view.release().leakRef());
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebUndoClient.cpp35 void WebUndoClient::registerEditCommand(WebView* view, PassRefPtr<WebEditCommandProxy> prpCommand, WebPageProxy::UndoOrRedo undoOrRedo) argument
41 m_client.registerEditCommand(toAPI(view), toAPI(command.release().releaseRef()), (undoOrRedo == WebPageProxy::Undo) ? kWKViewUndo : kWKViewRedo, m_client.clientInfo);
44 void WebUndoClient::clearAllEditCommands(WebView* view) argument
49 m_client.clearAllEditCommands(toAPI(view), m_client.clientInfo);
52 bool WebUndoClient::canUndoRedo(WebView* view, WebPageProxy::UndoOrRedo undoOrRedo) argument
57 return m_client.canUndoRedo(toAPI(view), undoOrRedo, m_client.clientInfo);
60 void WebUndoClient::executeUndoRedo(WebView* view, WebPageProxy::UndoOrRedo undoOrRedo) argument
65 m_client.executeUndoRedo(toAPI(view), undoOrRedo, m_client.clientInfo);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DPixelDumpSupportGtk.cpp40 WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); local
41 GtkWidget* viewContainer = gtk_widget_get_parent(GTK_WIDGET(view));
/external/webkit/Tools/MiniBrowser/qt/
H A DBrowserView.cpp59 QGraphicsWKView* BrowserView::view() const function in class:BrowserView
/external/webkit/Tools/MiniBrowser/win/
H A DBrowserWindow.h46 const BrowserView& view() const { return m_browserView; } function in class:BrowserWindow
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestSubMenu.java1 package com.xtremelabs.robolectric.tester.android.view;
4 import android.view.MenuItem;
5 import android.view.SubMenu;
6 import android.view.View;
31 public SubMenu setHeaderView(View view) { argument
H A DTestWindowManager.java1 package com.xtremelabs.robolectric.tester.android.view;
3 import android.view.Display;
4 import android.view.View;
5 import android.view.WindowManager;
19 public void addView(View view, android.view.ViewGroup.LayoutParams layoutParams) { argument
20 views.add(view);
24 public void removeView(View view) { argument
25 views.remove(view);
29 public void updateViewLayout(View arg0, android.view
[all...]
/external/chromium/chrome/browser/ui/touch/frame/
H A Dkeyboard_container_view.cc14 // Make the provided view and all of its descendents unfocusable.
15 void MakeViewHierarchyUnfocusable(views::View* view) { argument
16 view->SetFocusable(false);
17 for (int i = 0; i < view->child_count(); ++i) {
18 MakeViewHierarchyUnfocusable(view->GetChildViewAt(i));
42 // TODO(bryeung): include a border between the keyboard and the client view
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_button_border.cc58 void InfoBarButtonBorder::Paint(const views::View& view, argument
60 const views::TextButton* mb = static_cast<const views::TextButton*>(&view);
72 const gfx::Rect& bounds = view.bounds();
/external/chromium/chrome/browser/ui/views/notifications/
H A Dballoon_view_host.h29 views::View* view() { function in class:BalloonViewHost
37 // Initialize the view, parented to |parent|, and show it.
45 // The platform-specific widget host view. Pointer is owned by the RVH.
48 // The views-specific host view. Pointer owned by the views hierarchy.
51 // The handle to the parent view.

Completed in 496 milliseconds

1234567891011>>