Searched refs:view (Results 176 - 200 of 774) sorted by relevance

1234567891011>>

/external/chromium/webkit/glue/
H A Ddom_operations.cc196 bool GetAllSavableResourceLinksForCurrentPage(WebView* view, argument
199 WebFrame* main_frame = view->mainFrame();
241 bool PauseAnimationAtTimeOnElementWithId(WebView* view, argument
245 WebFrame* web_frame = view->mainFrame();
262 bool PauseTransitionAtTimeOnElementWithId(WebView* view, argument
266 WebFrame* web_frame = view->mainFrame();
283 bool ElementDoesAutoCompleteForElementWithId(WebView* view, argument
285 WebFrame* web_frame = view->mainFrame();
298 int NumberOfActiveAnimations(WebView* view) { argument
299 WebFrame* web_frame = view
[all...]
/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...]
H A Dewk_frame.cpp21 // Uncomment to view frame regions and debug messages
64 Evas_Object* view; member in struct:Ewk_Frame_Smart_Data
302 * by a view. Usually one operates on the view and not directly on the
317 * @param o frame object to get view from.
319 * @return view object or @c NULL if errors.
324 return sd->view;
341 if (sd->frame && sd->frame->view()) {
342 sd->frame->view()->setEdjeTheme(WTF::String(path));
1123 WebCore::FrameView* view local
1394 WebCore::FrameView* view = sd->frame->view(); local
1417 WebCore::FrameView* view = sd->frame->view(); local
1443 WebCore::FrameView* view = sd->frame->view(); local
1469 WebCore::FrameView* view = sd->frame->view(); local
1641 ewk_frame_init(Evas_Object* o, Evas_Object* view, WebCore::Frame* frame) argument
1974 ewk_frame_view_create_for_view(Evas_Object* o, Evas_Object* view) argument
2035 WebCore::FrameView* view = sd->frame->view(); local
[all...]
/external/webkit/Source/WebCore/html/
H A DImageDocument.cpp234 FrameView* view = frame()->view();
235 if (!view)
239 IntSize windowSize = IntSize(view->width(), view->height());
278 int scrollX = static_cast<int>(x / scale - (float)frame()->view()->width() / 2);
279 int scrollY = static_cast<int>(y / scale - (float)frame()->view()->height() / 2);
281 frame()->view()->setScrollPosition(IntPoint(scrollX, scrollY));
325 FrameView* view = frame()->view();
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp235 RenderView* view = static_cast<RenderView*>(renderLayer->renderer());
237 if (!view)
241 if (view->isRenderIFrame() && !m_contentLayer->isIFrame()) {
248 if (view->isPositioned() && view->style()->position() == FixedPosition) {
252 left = SkLength::convertLength(view->style()->left());
253 top = SkLength::convertLength(view->style()->top());
254 right = SkLength::convertLength(view->style()->right());
255 bottom = SkLength::convertLength(view->style()->bottom());
259 marginLeft = SkLength::convertLength(view
801 FrameView* view = layer->renderer()->frame()->view(); local
[all...]
/external/chromium/chrome/browser/
H A Dplatform_util_win.cc164 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { argument
165 return ::GetAncestor(view, GA_ROOT);
168 gfx::NativeView GetParent(gfx::NativeView view) { argument
169 return ::GetParent(view);
180 bool IsVisible(gfx::NativeView view) { argument
182 return ::IsWindowVisible(view) != 0;
/external/emma/core/java12/com/vladium/emma/report/
H A DReportDataModel.java40 IReportDataView view = m_views [viewType];
42 if (view != null)
43 return view;
49 throw new IllegalStateException ("source file data view requested for metadata with incomplete SourceFile debug info");
126 view = new ReportDataView (root);
128 m_views [viewType] = view;
129 return view;
/external/webkit/Tools/DumpRenderTree/mac/
H A DPixelDumpSupportMac.mm139 WebView* view = [mainFrame webView];
143 if ([view _isUsingAcceleratedCompositing])
146 NSSize webViewSize = [view frame].size;
162 [view displayRectIgnoringOpacity:column inContext:nsContext];
165 [view displayRectIgnoringOpacity:line inContext:nsContext];
171 // displayIfNeeded does not update the CA layers if the layer-hosting view was not marked as needing display, so
172 // we're at the mercy of CA's display-link callback to update layers in time. So we need to force a display of the view
176 [view display];
180 CGImageRef image = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming | kCGWindowImageShouldBeOpaque);
187 NSWindow *window = [view windo
[all...]
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp393 if (FrameView* view = m_frame->view()) {
394 IntPoint vPoint = view->windowToContents(event.event().pos());
451 if (ScrollView* scrollView = m_frame->view()) {
604 FrameView* view = m_frame->view();
605 if (!view)
609 HitTestResult result(view->windowToContents(event.pos()));
617 FrameView* view = m_frame->view(); local
836 FrameView* view = m_frame->view(); local
941 FrameView* view = static_cast<FrameView*>(widget); local
1083 FrameView* view = frame->view(); local
1100 FrameView* view = frame->view(); local
1321 FrameView* view = frame->view(); local
1472 FrameView* view = m_frame->view(); local
1751 FrameView* view = m_frame->view(); local
2105 FrameView* view = m_frame->view(); local
2200 FrameView* view = m_frame->view(); local
2239 FrameView* view = m_frame->view(); local
2327 FrameView* view = m_frame->view(); local
2348 FrameView* view = m_frame->view(); local
2650 FrameView* view = m_frame->view(); local
2923 FrameView* view = m_frame->view(); local
[all...]
/external/chromium/chrome/browser/chromeos/notifications/
H A Dballoon_view.cc47 // Top, Right margin for notification control view.
55 // overlays on top of renderer view.
61 explicit NotificationControlView(BalloonViewImpl* view) argument
62 : balloon_view_(view),
95 // The control view will never be resized, so just layout once.
218 AddChildView(html_contents_->view());
259 html_contents_->view()->SetBounds(0, 0, size.width(), size.height());
261 RenderWidgetHostView* view = html_contents_->render_view_host()->view(); local
262 if (view)
347 RenderWidgetHostView* view = html_contents_->render_view_host()->view(); local
[all...]
H A Dnotification_panel.h5 // Draws the view for the balloons.
98 virtual void SetActiveView(BalloonViewImpl* view);
135 // Update the notification's control view state.
149 // (that the view is associated with) becomes stale after a timeout.
150 void OnStale(BalloonViewImpl* view);
235 // True if the view is in visible in the ScrollView.
236 bool IsVisible(const BalloonViewImpl* view) const;
238 // True if the view is currently active.
239 bool IsActive(const BalloonViewImpl* view) const;
/external/chromium/chrome/browser/ui/cocoa/
H A Dconstrained_window_mac.h38 NSView* view) = 0;
73 NSView* view);
96 NSView* view);
H A Ddev_tools_controller.h20 // A class that handles updates of the devTools view within a browser window.
22 // the view, if there's no devTools contents to show.
25 // A view hosting docked devTools contents.
34 // This controller's view.
35 - (NSView*)view;
37 // The compiler seems to have trouble handling a function named "view" that
47 // Call when the devTools view is properly sized and the render widget host view
48 // should be put into the view hierarchy.
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_popup.h90 virtual void OnExtensionMouseMove(ExtensionView* view) { } argument
91 virtual void OnExtensionMouseLeave(ExtensionView* view) { } argument
92 virtual void OnExtensionPreferredSizeChanged(ExtensionView* view);
111 // The contained host for the view.
/external/replicaisland/src/com/replica/replicaisland/
H A DDiaryActivity.java25 import android.view.View;
26 import android.view.View.OnClickListener;
27 import android.view.animation.AnimationUtils;
/external/skia/src/views/
H A DSkViewPriv.cpp12 void SkView::Artist::draw(SkView* view, SkCanvas* canvas) argument
14 SkASSERT(view && canvas);
15 this->onDraw(view, canvas);
/external/webkit/Source/WebCore/dom/
H A DTouchEvent.h46 const AtomicString& type, PassRefPtr<AbstractView> view,
51 type, view, screenX, screenY, pageX, pageY,
57 PassRefPtr<AbstractView> view, int screenX, int screenY,
44 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DCorrectionPanel.mm64 void CorrectionPanel::show(WKView* view, CorrectionPanelInfo::PanelType type, const FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings)
68 if (!view)
73 m_view = view;
85 [spellChecker showCorrectionIndicatorOfType:indicatorType primaryString:replacementStringAsNSString alternativeStrings:alternativeStrings forStringInRect:boundingBoxOfReplacedString view:m_view.get() completionHandler:^(NSString* acceptedString) {
120 void CorrectionPanel::recordAutocorrectionResponse(WKView* view, NSCorrectionResponse response, const String& replacedString, const String& replacementString)
122 [[NSSpellChecker sharedSpellChecker] recordResponse:response toCorrection:replacementString forWord:replacedString language:nil inSpellDocumentWithTag:[view spellCheckerDocumentTag]];
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DFindController.cpp168 // Selection rect can be empty for matches that are currently obscured from view.
173 IntRect selectionRectInWindowCoordinates = selectedFrame->view()->contentsToWindow(selectionRect);
186 paintRect.move(selectedFrame->view()->frameRect().x(), selectedFrame->view()->frameRect().y());
187 paintRect.move(-selectedFrame->view()->scrollOffset());
190 selectedFrame->view()->setPaintBehavior(PaintBehaviorSelectionOnly | PaintBehaviorForceBlackText | PaintBehaviorFlattenCompositingLayers);
193 selectedFrame->view()->paint(graphicsContext.get(), paintRect);
194 selectedFrame->view()->setPaintBehavior(PaintBehaviorNormal);
204 IntRect textRectInSelectionRectCoordinates = selectedFrame->view()->contentsToWindow(enclosingIntRect(textRects[i]));
235 IntRect visibleRect = frame->view()
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dshutdown_button.cc46 virtual void Paint(gfx::Canvas* canvas, views::View* view) const {
47 views::TextButton* button = static_cast<views::TextButton*>(view);
49 hover_->Paint(canvas, view);
51 normal_->Paint(canvas, view);
/external/chromium/chrome/browser/chromeos/
H A Dnetwork_login_observer.h30 virtual void CreateModalPopup(views::WindowDelegate* view);
H A Dwm_overview_title.cc20 #include "views/view.h"
77 // Create a new view to be the host for the grid.
78 View* view = new View(); local
79 GridLayout* layout = new GridLayout(view);
80 view->SetLayoutManager(layout);
95 // Make the view the contents view for this widget.
96 SetContentsView(view);
/external/chromium/chrome/browser/extensions/
H A Dextension_host.h39 // privileges available to extensions. It may have a view to be shown in the
49 // Enable DOM automation in created render view hosts.
57 void set_view(ExtensionView* view) { view_.reset(view); } argument
58 const ExtensionView* view() const { return view_.get(); } function in class:ExtensionHost
59 ExtensionView* view() { return view_.get(); } function in class:ExtensionHost
61 const ExtensionViewMac* view() const { return view_.get(); } function in class:ExtensionHost
62 ExtensionViewMac* view() { return view_.get(); } function in class:ExtensionHost
64 const ExtensionViewGtk* view() const { return view_.get(); } function in class:ExtensionHost
65 ExtensionViewGtk* view() { retur function in class:ExtensionHost
[all...]
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dextension_infobar_gtk.h31 virtual void OnExtensionPreferredSizeChanged(ExtensionViewGtk* view,
/external/chromium/chrome/browser/ui/views/download/
H A Ddownload_shelf_view.h31 // DownloadShelfView is a view that contains individual views for each download,
47 void OpenedDownload(DownloadItemView* view);
82 // Removes a specified download view. The supplied view is deleted after
84 void RemoveDownloadView(views::View* view);
96 void AddDownloadView(DownloadItemView* view);
117 // Called when any view |view| gains or loses focus. If it's one of our
120 void SchedulePaintForDownloadItem(views::View* view);

Completed in 8173 milliseconds

1234567891011>>