Searched defs:view (Results 176 - 200 of 738) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/views/
H A Dnative_widget_view_manager.cc98 views::internal::NativeWidgetDelegate* delegate, View* view)
100 view_(view) {
138 void NativeWidgetViewManager::OnViewDestroyed(View* view) { argument
139 DCHECK_EQ(view, view_);
140 view->RemoveObserver(this);
144 void NativeWidgetViewManager::OnViewBoundsChanged(View* view, argument
147 GetWidget()->SetBounds(gfx::Rect(view->bounds().size()));
150 void NativeWidgetViewManager::OnViewInputEvent(View* view, argument
97 NativeWidgetViewManager( views::internal::NativeWidgetDelegate* delegate, View* view) argument
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc13 #include "ppapi/cpp/view.h"
37 virtual void DidChangeView(const pp::View& view) { argument
38 width_ = view.GetRect().width();
39 height_ = view.GetRect().height();
/external/chromium_org/ppapi/tests/
H A Dtest_view.cc16 // When waiting for view changed events, wait no longer than this.
29 void TestView::DidChangeView(const pp::View& view) { argument
30 last_view_ = view;
31 page_visibility_log_.push_back(view.IsPageVisible());
69 // We know we got a view changed event if something was appended to the log.
114 // Didn't get a view changed event that changed visibility (though there
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DViewportStyleResolver.cpp188 FrameView* view = m_document->view(); local
189 float width = view ? view->width() : 0;
190 float height = view ? view->height() : 0;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DFocusEvent.cpp53 FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
54 : UIEvent(type, canBubble, cancelable, view, detail)
H A DGestureEvent.cpp33 PassRefPtrWillBeRawPtr<GestureEvent> GestureEvent::create(PassRefPtrWillBeRawPtr<AbstractView> view, const PlatformGestureEvent& event) argument
68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) argument
91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
H A DTextEvent.cpp39 PassRefPtrWillBeRawPtr<TextEvent> TextEvent::create(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, TextEventInputType inputType) argument
41 return adoptRefWillBeNoop(new TextEvent(view, data, inputType));
44 PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, bool shouldSmartReplace) argument
46 return adoptRefWillBeNoop(new TextEvent(view, data, nullptr, shouldSmartReplace, false));
49 PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtrWillBeRawPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle) argument
51 return adoptRefWillBeNoop(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle));
54 PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForDrop(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
56 return adoptRefWillBeNoop(new TextEvent(view, data, TextEventInputDrop));
66 TextEvent::TextEvent(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, TextEventInputType inputType) argument
67 : UIEvent(EventTypeNames::textInput, true, true, view,
76 TextEvent(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment, bool shouldSmartReplace, bool shouldMatchStyle) argument
91 initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) argument
[all...]
H A DTouchEvent.cpp44 PassRefPtrWillBeRawPtr<AbstractView> view,
46 : UIEventWithKeyState(type, true, cancelable, view, 0,
60 PassRefPtrWillBeRawPtr<AbstractView> view,
71 initUIEvent(type, true, cancelable, view, 0);
99 if (!cancelable() && view() && view()->frame()) {
100 view()->frame()->console().addMessage(ConsoleMessage::create(JSMessageSource, WarningMessageLevel,
42 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
58 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int, int, int, int, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h47 const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view,
50 return adoptRefWillBeNoop(new TouchEvent(touches, targetTouches, changedTouches, type, view,
45 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
H A DWheelEvent.cpp62 PassRefPtrWillBeRawPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation,
64 : MouseEvent(EventTypeNames::wheel, true, true, view, 0, screenLocation.x(), screenLocation.y(),
100 PassRefPtrWillBeRawPtr<WheelEventDispatchMediator> WheelEventDispatchMediator::create(const PlatformWheelEvent& event, PassRefPtrWillBeRawPtr<AbstractView> view) argument
102 return adoptRefWillBeNoop(new WheelEventDispatchMediator(event, view));
105 WheelEventDispatchMediator::WheelEventDispatchMediator(const PlatformWheelEvent& event, PassRefPtrWillBeRawPtr<AbstractView> view) argument
111 deltaMode(event), view, event.globalPosition(), event.position(), local
61 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DLayoutState.cpp36 LayoutState::LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView& view) argument
43 , m_renderer(view)
45 ASSERT(!view.layoutState());
46 view.pushLayoutState(*this);
52 , m_next(renderer.view()->layoutState())
55 renderer.view()->pushLayoutState(*this);
59 FloatPoint fixedOffset = renderer.view()->localToAbsolute(FloatPoint(), IsFixed);
107 , m_next(root.view()->layoutState())
117 root.view()->pushLayoutState(*this);
126 if (m_renderer.view()
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DPageWidgetDelegate.cpp53 return rootFrame->view();
58 return toLocalFrame(page->mainFrame())->view();
63 RefPtr<FrameView> view = rootFrameView(page, rootFrame); local
64 if (!view)
94 FrameView* view = rootFrameView(page, rootFrame); local
95 if (view) {
97 view->paint(&gc, dirtyRect);
117 if (!frame || !frame->view())
122 if (!frame || !frame->view())
127 if (!frame || !frame->view())
[all...]
H A DWebDevToolsFrontendImpl.cpp47 WebView* view,
51 return new WebDevToolsFrontendImpl(toWebViewImpl(view), client);
46 create( WebView* view, WebDevToolsFrontendClient* client, const WebString& applicationLocale) argument
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_symbols.cpp29 bool ElfSymbols::Init(const ElfView* view) { argument
31 ElfView::DynamicIterator dyn(view);
33 uintptr_t dyn_addr = dyn.GetAddress(view->load_bias());
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state_sampler.c65 const struct pipe_sampler_view* view,
167 i915->fragment_sampler_views[unit], /* sampler view */
190 const struct pipe_sampler_view* view)
192 if ( (view->swizzle_r != PIPE_SWIZZLE_RED ||
193 view->swizzle_g != PIPE_SWIZZLE_GREEN ||
194 view->swizzle_b != PIPE_SWIZZLE_BLUE ||
195 view->swizzle_a != PIPE_SWIZZLE_ALPHA ) &&
247 if ( view->swizzle_r == PIPE_SWIZZLE_RED &&
248 view->swizzle_g == PIPE_SWIZZLE_RED &&
249 view
189 translate_texture_format(enum pipe_format pipeFormat, const struct pipe_sampler_view* view) argument
294 update_map(struct i915_context *i915, uint unit, const struct i915_texture *tex, const struct i915_sampler_state *sampler, const struct pipe_sampler_view* view, uint state[2]) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_tex.c82 struct nv50_tic_entry *view; local
86 view = MALLOC_STRUCT(nv50_tic_entry);
87 if (!view)
90 view->pipe = *templ;
91 view->pipe.reference.count = 1;
92 view->pipe.texture = NULL;
93 view->pipe.context = pipe;
95 view->id = -1;
97 pipe_resource_reference(&view->pipe.texture, texture);
99 tic = &view
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_objects.c125 struct pipe_sampler_view *view)
129 if (!view)
132 assert(view->texture == rb_resource->resource);
136 rb_view->base = *view;
141 rb_view->sampler_view = view;
123 rbug_sampler_view_create(struct rbug_context *rb_context, struct rbug_resource *rb_resource, struct pipe_sampler_view *view) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c126 struct pipe_sampler_view *view)
128 if (!view)
130 return (tc->texture == view->texture &&
131 tc->format == view->format &&
132 tc->swizzle_r == view->swizzle_r &&
133 tc->swizzle_g == view->swizzle_g &&
134 tc->swizzle_b == view->swizzle_b &&
135 tc->swizzle_a == view->swizzle_a);
139 * Specify the sampler view to cache.
143 struct pipe_sampler_view *view)
125 sp_tex_tile_is_compat_view(struct softpipe_tex_tile_cache *tc, struct pipe_sampler_view *view) argument
142 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc, struct pipe_sampler_view *view) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_sampler_view.c65 boolean view = TRUE; local
73 /* Is a view needed */
78 * results as a view.
81 view = FALSE;
84 view = FALSE;
87 view = TRUE;
91 if (view) {
98 SVGA_DBG(DEBUG_VIEWS, "svga: Sampler view: reuse %p, %u %u, last %u\n",
117 /* No view needed just use the whole texture */
118 if (!view) {
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DOverView.cpp74 bool is_overview(SkView* view) { argument
76 return view->doQuery(&isOverview);
97 SkView* view = (*fFactories[i])(); local
98 view->setVisibleP(true);
99 this->attachChildToBack(view)->unref();
100 view->setLoc(locX, locY);
101 view->setSize(kWidth, kHeight);
H A DSampleCamera.cpp70 Sk3DView view; local
71 view.rotateX(fRX);
72 view.rotateY(fRY);
73 view.applyToCanvas(canvas);
77 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0;
/external/chromium_org/third_party/skia/src/views/
H A DSkViewInflate.cpp29 SkView* view = this->createView(dom, child); local
30 if (view)
32 this->rInflate(dom, child, view);
33 parent->attachChildToFront(view)->unref();
53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node) argument
55 // called after all of view's children have been instantiated.
58 view->inflate(dom, node);
112 SkView* view; local
113 return fIDs.find(id, &view) ? view
123 addIDStr(SkTDArray<IDStr>* list, SkView* view, const char* str) argument
[all...]
/external/chromium_org/third_party/skia/tools/
H A DiOSShell.cpp52 SkView* view = iter.next(); local
53 view->setSize(this->width(), this->height());
/external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
H A Dtouch_drawing_plugin.cc27 #include "ppapi/cpp/view.h"
93 virtual void DidChangeView(const pp::View& view) { argument
94 paint_manager_.SetSize(view.GetRect().size());
/external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
H A DAutofillPopup.java10 import android.view.View;
123 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument

Completed in 449 milliseconds

1234567891011>>