Searched defs:view (Results 126 - 150 of 369) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRemoteViews.java6 import android.view.View;
47 public void doUpdate(View view) {
48 ((TextView) view).setText(text);
56 @Override void doUpdate(final View view) {
57 view.setOnClickListener(new View.OnClickListener() {
61 pendingIntent.send(view.getContext(), 0, null);
75 public void doUpdate(View view) {
76 view.setVisibility(visibility);
85 public void doUpdate(View view) {
86 ((ImageView) view)
125 doUpdate(View view) argument
[all...]
H A DShadowToast.java4 import android.view.View;
25 private View view; field in class:ShadowToast
48 public void setView(View view) { argument
49 this.view = view;
54 return view;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDialogFragmentTest.java9 import android.view.LayoutInflater;
10 import android.view.View;
11 import android.view.ViewGroup;
200 public void onViewCreated(View view, Bundle savedInstanceState) { argument
202 super.onViewCreated(view, savedInstanceState);
H A DTestFragment.java7 import android.view.LayoutInflater;
8 import android.view.View;
9 import android.view.ViewGroup;
57 FrameLayout view = new FrameLayout(context);
58 view.addView(button);
60 onCreateViewReturnValue = view;
67 public void onViewCreated(View view, Bundle savedInstanceState) { argument
/external/webkit/Source/WebCore/bindings/js/
H A DPageScriptDebugServer.cpp193 setJavaScriptPaused(frame->view(), paused);
196 void PageScriptDebugServer::setJavaScriptPaused(FrameView* view, bool paused) argument
198 if (!view)
201 const HashSet<RefPtr<Widget> >* children = view->children();
/external/webkit/Source/WebCore/dom/
H A DKeyboardEvent.cpp61 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view) argument
63 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
71 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
74 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
86 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
93 initUIEvent(type, canBubble, cancelable, view, 0);
135 if (view() && view()->frame())
136 backwardCompatibilityMode = view()->frame()->eventHandler()->needsKeyboardEventDisambiguationQuirks();
H A DKeyboardEvent.h61 static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view) argument
63 return adoptRef(new KeyboardEvent(platformEvent, view));
65 static PassRefPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
69 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation,
H A DMouseEvent.h42 static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
47 return adoptRef(new MouseEvent(type, canBubble, cancelable, view, detail, screenX, screenY, pageX, pageY,
H A DWheelEvent.h41 float rawDeltaX, float rawDeltaY, Granularity granularity, PassRefPtr<AbstractView> view,
46 granularity, view, screenX, screenY, pageX, pageY,
40 create(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY, Granularity granularity, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
/external/webkit/Source/WebCore/platform/android/
H A DPopupMenuAndroid.cpp37 PopupReply(const IntRect& rect, android::WebViewCore* view, ListPopupMenuClient* client) argument
39 , m_viewImpl(view)
/external/webkit/Source/WebCore/platform/efl/
H A DScrollbarEfl.cpp90 void ScrollbarEfl::setParent(ScrollView* view) argument
95 Widget::setParent(view);
98 if (!view)
101 object = edje_object_add(view->evas());
103 EINA_LOG_ERR("Could not create edje object for view=%p (evas=%p)",
104 view, view->evas());
109 } else if (!view) {
133 evas_object_smart_member_add(object, view->evasObject());
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontHaiku.cpp77 BView* view = graphicsContext->platformContext(); local
81 view->SetHighColor(color);
82 view->SetFont(m_font);
90 view->DrawString(out, sizeof(out), BPoint(offset, point.y()));
/external/webkit/Source/WebCore/platform/gtk/
H A DPopupMenuGtk.cpp58 void PopupMenuGtk::show(const IntRect& rect, FrameView* view, int index) argument
71 GdkWindow* window = gtk_widget_get_window(GTK_WIDGET(view->hostWindow()->platformPageClient()));
74 m_menuPosition = view->contentsToWindow(rect.location());
/external/webkit/Source/WebCore/platform/haiku/
H A DRenderThemeHaiku.cpp117 BView* view = info.context->platformContext(); local
122 be_control_look->DrawCheckBox(view, rect, rect, base);
149 BView* view = info.context->platformContext(); local
154 be_control_look->DrawRadioButton(view, rect, rect, base);
H A DScrollbarThemeHaiku.cpp133 BView* view = context->platformContext(); local
137 be_control_look->DrawButtonFrame(view, drawRect, drawRect, buttonBgColor, panelBgColor);
138 be_control_look->DrawButtonBackground(view, drawRect, drawRect, buttonBgColor);
146 be_control_look->DrawArrowShape(view, drawRect, drawRect, ui_color(B_CONTROL_TEXT_COLOR), arrowDirection);
155 BView* view = context->platformContext(); local
159 be_control_look->DrawButtonFrame(view, drawRect, drawRect, buttonBgColor, panelBgColor);
160 be_control_look->DrawButtonBackground(view, drawRect, drawRect, buttonBgColor);
/external/webkit/Source/WebCore/platform/wx/
H A DScrollbarThemeWx.cpp175 void ScrollbarThemeWx::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect) argument
181 ScrollbarTheme::paintScrollCorner(view, context, cornerRect);
/external/webkit/Source/WebKit/chromium/src/
H A DWebPageSerializer.cpp194 bool WebPageSerializer::retrieveAllResources(WebView* view, argument
198 WebFrameImpl* mainFrame = static_cast<WebFrameImpl*>(view->mainFrame());
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_contextmenu.cpp43 Evas_Object* view; /**< the view object */ member in struct:_Ewk_Context_Menu
339 * Creates an empty context menu on view.
341 * @param view the view object
347 Ewk_Context_Menu* ewk_context_menu_new(Evas_Object* view, WebCore::ContextMenuController* controller) argument
350 EINA_SAFETY_ON_NULL_RETURN_VAL(view, 0);
360 menu->view = view;
363 evas_object_smart_callback_call(menu->view, "contextmen
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdomdomwindow.c66 static gboolean loadedCallback(WebKitDOMDOMWindow* view, WebKitDOMEvent* event, DomDomviewFixture* fixture) argument
74 static gboolean clickedCallback(WebKitDOMDOMWindow* view, WebKitDOMEvent* event, DomDomviewFixture* fixture) argument
87 g_assert(target == WEBKIT_DOM_EVENT_TARGET(view));
119 WebKitWebView* view = (WebKitWebView*)fixture->webView; local
120 g_assert(view);
121 WebKitDOMDocument* document = webkit_web_view_get_dom_document(view);
H A Dtestmimehandling.c100 static gboolean mime_type_policy_decision_requested_cb(WebKitWebView* view, WebKitWebFrame* frame, argument
108 g_assert(!webkit_web_view_can_show_mime_type(view, mime_type));
111 g_assert(webkit_web_view_can_show_mime_type(view, mime_type));
126 g_assert(webkit_web_view_can_show_mime_type(view, mime_type));
129 g_assert(webkit_web_view_can_show_mime_type(view, mime_type));
140 WebKitWebView* view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
141 g_object_ref_sink(G_OBJECT(view));
145 g_object_connect(G_OBJECT(view),
151 webkit_web_view_load_uri(view, effective_uri);
156 g_object_unref(view);
162 WebKitWebView* view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
[all...]
H A Dtestwebdatasource.c37 WebKitWebView* view; local
42 view = WEBKIT_WEB_VIEW(webkit_web_view_new());
43 g_object_ref_sink(view);
44 frame = webkit_web_view_get_main_frame(view);
55 g_object_unref(view);
58 static void notify_load_status_unreachable_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) argument
60 WebKitLoadStatus status = webkit_web_view_get_load_status (view);
61 WebKitWebFrame* frame = webkit_web_view_get_main_frame(view);
76 static void notify_load_status_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) argument
78 WebKitLoadStatus status = webkit_web_view_get_load_status (view);
120 WebKitWebView* view; local
142 notify_load_status_lifetime_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) argument
159 WebKitWebView* view; local
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPageClientQt.h53 : view(newView)
60 Q_ASSERT(view);
90 QWidget* view; member in class:WebCore::PageClientQWidget
116 QGraphicsItemOverlay(QGraphicsWidget* view, QWebPage* p) argument
117 :QGraphicsObject(view)
118 , q(view)
149 : view(newView)
160 Q_ASSERT(view);
164 view->setFlag(QGraphicsItem::ItemUsesExtendedStyleOption);
165 syncMetaMethod = view
213 QGraphicsWebView* view; member in class:WebCore::PageClientQGraphicsWidget
[all...]
H A DPopupMenuQt.cpp102 void PopupMenuQt::show(const IntRect& rect, FrameView* view, int index) argument
116 geometry.moveTopLeft(view->contentsToWindow(rect.location()));
/external/webkit/Source/WebKit/qt/tests/qwebview/
H A Dtst_qwebview.cpp161 QVERIFY(page != 0); // deleting view must not have deleted the page, since it's not a child of view
182 WebViewCrashTest(QWebView* view) argument
183 : m_view(view)
186 view->connect(view, SIGNAL(loadProgress(int)), this, SLOT(loading(int)));
206 QWebView view; local
207 WebViewCrashTest tester(&view);
209 view.load(url);
464 QWebView view; local
[all...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DEmbeddedWidget.cpp40 PassRefPtr<EmbeddedWidget> EmbeddedWidget::create(IWebEmbeddedView* view, Element* element, HWND parentWindow, const IntSize& size) argument
42 RefPtr<EmbeddedWidget> widget = adoptRef(new EmbeddedWidget(view, element));
169 // Take our element and get the clip rect from the enclosing layer and frame view.
171 FrameView* parentView = m_element->document()->view();
188 // clear it to prevent the web view window from being focused because that can

Completed in 418 milliseconds

1234567891011>>