Searched refs:view (Results 51 - 75 of 774) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/page/win/
H A DFrameCGWin.cpp42 static void drawRectIntoContext(IntRect rect, FrameView* view, GraphicsContext* gc) argument
44 IntSize offset = view->scrollOffset();
46 rect = view->convertToContainingWindow(rect);
50 view->paint(gc, rect);
55 PaintBehavior oldPaintBehavior = frame->view()->paintBehavior();
56 frame->view()->setPaintBehavior(oldPaintBehavior | PaintBehaviorFlattenCompositingLayers);
72 drawRectIntoContext(ir, frame->view(), &gc);
78 frame->view()->setPaintBehavior(oldPaintBehavior);
87 frame->view()->setPaintBehavior(PaintBehaviorSelectionOnly | (forceBlackText ? PaintBehaviorForceBlackText : 0));
92 frame->view()
[all...]
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_view.cc29 // This view needs to be focusable so it can act as the focused view for the
68 if (render_view_host()->view()) {
70 render_view_host()->view()->Show();
72 render_view_host()->view()->Hide();
80 RenderWidgetHostView* view = local
91 static_cast<RenderWidgetHostViewWin*>(view);
97 static_cast<RenderWidgetHostViewViews*>(view);
102 static_cast<RenderWidgetHostViewGtk*>(view);
109 host_->CreateRenderViewSoon(view);
[all...]
/external/skia/samplecode/
H A DOverView.cpp17 bool is_overview(SkView* view) { argument
19 return view->doQuery(&isOverview);
91 SkView* view = (*fFactories[i])(); local
92 view->setVisibleP(true);
93 this->attachChildToBack(view)->unref();
94 view->setLoc(locX, locY);
95 view->setSize(W, H);
/external/webkit/Source/WebCore/dom/
H A DScriptedAnimationController.cpp54 if (FrameView* fv = m_document->view())
66 if (FrameView* view = m_document->view())
67 view->scheduleAnimation();
127 if (FrameView* view = m_document->view())
128 view->scheduleAnimation();
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 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/chromium/src/
H A DDragScrollTimer.cpp89 void DragScrollTimer::triggerScroll(FrameView* view, const WebPoint& location) argument
91 if (!view)
97 m_view = view;
98 m_lastDistance = scrollDistanceFor(view, location);
106 IntSize DragScrollTimer::scrollDistanceFor(FrameView* view, const WebPoint& location) const argument
110 IntRect bounds(0, 0, view->visibleWidth(), view->visibleHeight());
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_view.css5 .timeline-view * {
10 .timeline-view {
19 .timeline-view > .control > .title {
27 .timeline-view > .control {
34 .timeline-view > .control > .controls {
38 .timeline-view > .control > span {
43 .timeline-view > .control > .controls > button,
44 .timeline-view > .control > .controls > label {
50 .timeline-view > .control > .spacer {
54 .timeline-view >
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A Daudits.css49 .audit-launcher-view {
63 .audit-launcher-view.visible {
67 .audit-launcher-view .audit-launcher-view-content {
79 .audit-launcher-view h1 {
87 .audit-launcher-view h1.no-audits {
94 .audit-launcher-view div.button-container {
100 .audit-launcher-view .flexible-space {
104 .audit-launcher-view div.audit-categories-container {
112 .audit-launcher-view butto
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dupdate_screen.cc68 // Remove pointer to this object from view.
69 if (view())
70 view()->set_controller(NULL);
88 view()->SetProgress(kBeforeDownloadProgress);
96 view()->ShowPreparingUpdatesInfo(true);
97 view()->ShowCurtain(false);
116 view()->ShowPreparingUpdatesInfo(false);
117 view()->ShowCurtain(false);
120 view()->SetProgress(kBeforeDownloadProgress + download_progress);
125 view()
[all...]
H A Duser_image_screen.cc43 DCHECK(view());
46 view()->OnImageSelected(
60 DCHECK(view());
61 view()->ShowCameraInitializing();
70 DCHECK(view());
74 view()->UpdateVideoFrame(frame);
78 DCHECK(view());
79 view()->ShowCameraError();
125 else if (view()->IsCapturing())
/external/chromium/chrome/browser/ui/views/
H A Ddetachable_toolbar_view.cc27 views::View* view,
29 ui::ThemeProvider* tp = view->GetThemeProvider();
33 view->width(), view->height());
36 view->width(), view->height());
43 double* roundness, views::View* view) {
47 SkDoubleToScalar(view->width() - horizontal_padding - 0.5),
48 SkDoubleToScalar(view->height() - vertical_padding - 0.5));
55 DetachableToolbarView* view) {
25 PaintBackgroundAttachedMode( gfx::Canvas* canvas, views::View* view, const gfx::Point& background_origin) argument
40 CalculateContentArea( double animation_state, double horizontal_padding, double vertical_padding, SkRect* rect, double* roundness, views::View* view) argument
54 PaintHorizontalBorder(gfx::Canvas* canvas, DetachableToolbarView* view) argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dnetwork_login_observer.cc31 void NetworkLoginObserver::CreateModalPopup(views::WindowDelegate* view) { argument
40 browser->window()->GetNativeHandle(), gfx::Rect(), view);
47 background_view->CreateModalPopup(view);
72 NetworkConfigView* view = NULL; local
97 view = new NetworkConfigView(wifi);
107 if (!view) {
119 view = new NetworkConfigView(vpn);
129 if (view)
130 CreateModalPopup(view);
/external/chromium/chrome/browser/ui/cocoa/
H A Durl_drop_target.h14 // Object which coordinates the dropping of URLs on a given view, sending data
24 // Initialize the given view, which must implement the |URLDropTarget| (below),
26 - (id)initWithView:(NSView<URLDropTarget>*)view;
28 // The owner view should implement the following methods by calling the
57 // The given URLs (an |NSArray| of |NSString|s) were dropped in the given view
58 // at the given point (in that view's coordinates).
59 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point;
61 // The given text was dropped in the given view at the given point (in that
62 // view's coordinates).
63 - (void)dropText:(NSString*)text inView:(NSView*)view a
[all...]
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dextension_infobar_gtk.cc22 delegate_->extension_host()->view()->SetContainer(this);
27 // This view is not owned by us, so unparent.
63 view_ = extension_host->view();
80 delegate_->extension_host()->view()->render_view_host()->view()
85 ExtensionViewGtk* view,
84 OnExtensionPreferredSizeChanged( ExtensionViewGtk* view, const gfx::Size& new_size) argument
/external/chromium/webkit/glue/
H A Ddom_operations.h52 bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view,
57 // |view|s main frame.
59 bool PauseAnimationAtTimeOnElementWithId(WebKit::WebView* view,
65 // |view|s main frame.
67 bool PauseTransitionAtTimeOnElementWithId(WebKit::WebView* view,
74 bool ElementDoesAutoCompleteForElementWithId(WebKit::WebView* view,
78 int NumberOfActiveAnimations(WebKit::WebView* view);
/external/javassist/sample/duplicate/
H A DViewer.java70 Viewer view = new Viewer();
71 f.addWindowListener(view);
72 f.add(view);
74 view.init();
75 view.start();
/external/webkit/Source/WebCore/rendering/
H A DRenderDataGrid.cpp209 RenderView* view = this->view(); local
210 if (!view)
219 return view->frameView()->convertFromRenderer(this, rect);
224 RenderView* view = this->view(); local
225 if (!view)
228 IntRect rect = view->frameView()->convertToRenderer(this, parentRect);
238 RenderView* view = this->view(); local
253 RenderView* view = this->view(); local
267 RenderView* view = this->view(); local
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebplugindatabase.c29 extern void webkit_web_settings_add_extra_plugin_directory(WebKitWebView* view, const gchar* directory);
33 WebKitWebView* view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
39 webkit_web_settings_add_extra_plugin_directory(view, TEST_PLUGIN_DIR);
40 g_object_ref_sink(G_OBJECT(view));
69 g_object_unref(view);
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKPrintingView.mm46 - (id)initWithFrameProxy:(WebKit::WebFrameProxy*)frame view:(NSView *)wkView
186 RetainPtr<WKPrintingView> view;
195 WKPrintingView *view = context->view.get();
198 if (context->callbackID == view->_expectedPrintCallback) {
199 ASSERT(![view _isPrintingPreview]);
200 ASSERT(view->_printedPagesData.isEmpty());
201 ASSERT(!view->_printedPagesPDFDocument);
203 view->_printedPagesData.append(data->bytes(), data->size());
204 view
[all...]
/external/chromium/chrome/browser/
H A Dplatform_util.h27 // Get the top level window for the native view. This can return NULL.
28 gfx::NativeWindow GetTopLevel(gfx::NativeView view);
30 // Get the direct parent of |view|, may return NULL.
31 gfx::NativeView GetParent(gfx::NativeView view);
39 // Returns true if the view is visible. The exact definition of this is
41 // whether the view has the visible attribute set.
42 bool IsVisible(gfx::NativeView view);
/external/chromium/chrome/browser/ui/views/infobars/
H A Dextension_infobar.cc33 // The horizontal margin between the menu and the Extension (HTML) view.
44 ExtensionView* extension_view = delegate->extension_host()->view();
54 GetDelegate()->extension_host()->view()->SetContainer(NULL);
66 GetDelegate()->extension_host()->view()->SetBounds(
84 AddChildView(extension_host->view());
109 void ExtensionInfoBar::OnExtensionMouseMove(ExtensionView* view) { argument
112 void ExtensionInfoBar::OnExtensionMouseLeave(ExtensionView* view) { argument
115 void ExtensionInfoBar::OnExtensionPreferredSizeChanged(ExtensionView* view) { argument
117 DCHECK_EQ(delegate->extension_host()->view(), view);
[all...]
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
H A Dscreenshot.js29 // ensures that exactly one view will have the matching URL.
32 var view = views[i];
33 if (view.location.href == viewTabUrl) {
34 view.setScreenshotUrl(screenshotUrl);
/external/replicaisland/src/com/replica/replicaisland/
H A DCustomToastSystem.java21 import android.view.Gravity;
22 import android.view.LayoutInflater;
23 import android.view.View;
/external/webkit/Source/WebCore/platform/brew/
H A DPopupMenuBrew.cpp54 void PopupMenuBrew::show(const IntRect& rect, FrameView* view, int index) argument
57 ChromeClientBrew* chromeClient = static_cast<ChromeClientBrew*>(view->frame()->page()->chrome()->client());
60 m_view = view;

Completed in 433 milliseconds

1234567891011>>