Searched defs:view (Results 276 - 300 of 738) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/mojo/services/html_viewer/
H A Dweblayertreeview_impl.h44 void set_view(View* view) { view_ = view; } argument
/external/chromium_org/mojo/services/public/cpp/view_manager/
H A Dview_observer.h12 #include "mojo/services/public/cpp/view_manager/view.h"
25 // -ing methods are called before changes are applied to the local view model.
26 // -ed methods are called after changes are applied to the local view model.
28 // If the change originated from another connection to the view manager, it's
31 // possible the view has already been destroyed on the service side.
46 virtual void OnViewReordering(View* view, argument
49 virtual void OnViewReordered(View* view, argument
53 virtual void OnViewDestroying(View* view) {} argument
54 virtual void OnViewDestroyed(View* view) {} argument
56 virtual void OnViewBoundsChanging(View* view, argument
59 OnViewBoundsChanged(View* view, const gfx::Rect& old_bounds, const gfx::Rect& new_bounds) argument
65 OnViewInputEvent(View* view, const EventPtr& event) argument
[all...]
/external/chromium_org/mojo/services/view_manager/
H A Ddisplay_manager.cc21 gfx::Rect ConvertRectToRoot(const ServerView* view, const gfx::Rect& bounds) { argument
23 while (view->parent()) {
24 origin += view->bounds().OffsetFromOrigin();
25 view = view->parent();
26 if (!view->visible())
32 void DrawViewTree(Pass* pass, const ServerView* view, gfx::Vector2d offset) { argument
33 if (!view->visible())
36 gfx::Rect node_bounds = view->bounds() + offset;
37 std::vector<const ServerView*> children(view
94 SchedulePaint(const ServerView* view, const gfx::Rect& bounds) argument
[all...]
H A Dserver_view.cc88 const ServerView* view = this; local
89 while (view && view->parent())
90 view = view->parent();
91 return view;
107 bool ServerView::Contains(const ServerView* view) const {
108 for (const ServerView* parent = view; parent; parent = parent->parent_) {
126 const ServerView* view = this; local
127 while (view
137 RemoveImpl(ServerView* view) argument
[all...]
/external/chromium_org/native_client_sdk/src/examples/api/input_event/
H A Dinput_event.cc127 void DidChangeView(const pp::View& view) { argument
130 << " x:" << view.GetRect().x()
131 << " y:" << view.GetRect().y()
132 << " width:" << view.GetRect().width()
133 << " height:" << view.GetRect().height()
135 << " IsFullscreen:" << view.IsFullscreen()
136 << " IsVisible:" << view.IsVisible()
137 << " IsPageVisible:" << view.IsPageVisible()
138 << " GetDeviceScale:" << view.GetDeviceScale()
139 << " GetCSSScale:" << view
[all...]
/external/chromium_org/ppapi/examples/2d/
H A Dpaint_manager_example.cc14 #include "ppapi/cpp/view.h"
76 virtual void DidChangeView(const pp::View& view) { argument
77 paint_manager_.SetSize(view.GetRect().size());
/external/chromium_org/ppapi/examples/audio/
H A Daudio.cc22 #include "ppapi/cpp/view.h"
65 virtual void DidChangeView(const pp::View& view) { argument
68 visible_ = view.IsPageVisible();
/external/chromium_org/ppapi/examples/input/
H A Dpointer_event_input.cc14 #include "ppapi/cpp/view.h"
94 virtual void DidChangeView(const pp::View& view) { argument
95 paint_manager_.SetSize(view.GetRect().size());
/external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
H A Dtest_runner_ppapi.c72 static void PppInstanceDidChangeView(PP_Instance instance, PP_Resource view) { argument
/external/chromium_org/ppapi/proxy/
H A Dplugin_dispatcher.h50 ViewData view; member in struct:ppapi::proxy::InstanceData
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DDesktop.java12 import android.view.KeyCharacterMap;
13 import android.view.KeyEvent;
14 import android.view.Menu;
15 import android.view.MenuItem;
16 import android.view.View;
17 import android.view.inputmethod.InputMethodManager;
175 public void onOverlayButtonPressed(View view) { argument
/external/chromium_org/remoting/client/plugin/
H A Dpepper_view.cc101 void PepperView::SetView(const pp::View& view) { argument
104 pp::Rect pp_size = view.GetRect();
106 float new_dips_to_device_scale = view.GetDeviceScale();
122 // If the view's DIP dimensions don't match the source then let the frame
148 // TODO(sergeyu): Use view.GetClipRect() here after bug 360240 is fixed.
150 view.IsVisible() ? webrtc::DesktopRect::MakeWH(
181 // current view size.
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollView.cpp37 AXScrollView::AXScrollView(ScrollView* view) argument
38 : m_scrollView(view)
54 PassRefPtr<AXScrollView> AXScrollView::create(ScrollView* view) argument
56 return adoptRef(new AXScrollView(view));
73 // If this is WebKit1 then the native scroll view needs to return the
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DKeyboardEvent.cpp104 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view) argument
106 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
115 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
122 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, argument
125 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
136 void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
143 initUIEvent(type, canBubble, cancelable, view, 0);
H A DKeyboardEvent.h63 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view) argument
65 return adoptRefWillBeNoop(new KeyboardEvent(platformEvent, view));
73 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, argument
77 return adoptRefWillBeNoop(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, location,
H A DWheelEvent.h69 const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view,
73 return adoptRefWillBeNoop(new WheelEvent(wheelTicks, rawDelta, deltaMode, view,
68 create(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/frame/
H A DLocalFrame.h92 FrameView* view() const;
204 inline FrameView* LocalFrame::view() const function in class:blink::LocalFrame
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLBodyElement.cpp240 if (FrameView* view = document.view())
241 return adjustScrollForAbsoluteZoom(view->scrollX(), document.frame()->pageZoomFactor());
266 FrameView* view = frame->view();
267 if (!view)
269 view->setScrollPosition(IntPoint(static_cast<int>(scrollLeft * frame->pageZoomFactor()), view->scrollY()));
287 if (FrameView* view = document.view())
324 FrameView* view = document.view(); local
333 FrameView* view = document.view(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DAutoscrollController.cpp96 if (FrameView* view = scrollable->frame()->view()) {
97 view->removePanScrollIcon();
98 view->setCursor(pointerCursor());
205 if (FrameView* view = scrollable->frame()->view())
206 view->addPanScrollIcon(lastKnownMousePosition);
248 if (FrameView* view = m_autoscrollRenderer->frame()->view())
249 updatePanScrollState(view, eventHandle
264 updatePanScrollState(FrameView* view, const IntPoint& lastKnownMousePosition) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerStackingNode.cpp93 ASSERT(renderer()->view());
94 return renderer()->view()->compositor();
156 // The renderers of top layer elements are children of the view, sorted in top layer stacking order.
158 RenderView* view = renderer()->view(); local
159 for (RenderObject* child = view->firstChild(); child; child = child->nextSibling()) {
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientationController.cpp51 WebScreenOrientationType ScreenOrientationController::computeOrientation(FrameView* view) argument
59 FloatRect rect = screenRect(view);
60 uint16_t rotation = screenOrientationAngle(view);
82 FrameView* view = frame()->view(); local
83 WebScreenOrientationType orientationType = screenOrientationType(view);
86 orientationType = computeOrientation(view);
91 m_orientation->setAngle(screenOrientationAngle(view));
108 unsigned short currentAngle = screenOrientationAngle(frame()->view());
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DDOMWebSocketTest.cpp556 RefPtr<ArrayBufferView> view = Uint8Array::create(8); local
565 m_websocket->send(view->buffer().get(), m_exceptionState);
575 RefPtr<ArrayBufferView> view = Uint8Array::create(8); local
588 m_websocket->send(view->buffer().get(), m_exceptionState);
597 RefPtr<ArrayBufferView> view = Uint8Array::create(8); local
611 m_websocket->send(view->buffer().get(), m_exceptionState);
619 RefPtr<ArrayBufferView> view = Uint8Array::create(8); local
623 EXPECT_CALL(channel(), send(Ref(*view->buffer()), 0, 8));
630 m_websocket->send(view->buffer().get(), m_exceptionState);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebInputEventConversionTest.cpp108 FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view(); local
134 WebTouchEventBuilder webTouchBuilder(view, documentRenderView, *touchEvent);
157 WebTouchEventBuilder webTouchBuilder(view, documentRenderView, *touchEvent);
174 WebTouchEventBuilder webTouchBuilder(view, documentRenderView, *touchEvent);
191 WebTouchEventBuilder webTouchBuilder(view, documentRenderView, *touchEvent);
211 WebTouchEventBuilder webTouchBuilder(view, documentRenderView, *touchEvent);
232 FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view(); local
249 PlatformMouseEventBuilder platformMouseBuilder(view, webMouseEven
441 FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view(); local
584 FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view(); local
642 FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view(); local
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relro.cpp110 bool SharedRelro::CopyFromRelocated(const ElfView* view, argument
116 size_t relro_offset = relro_start - view->load_address();
119 if (!relocations.Init(view, error))
H A Dcrazy_linker_elf_view.h63 DynamicIterator(const ElfView* view) { argument
64 dyn_ = view->dynamic();
65 dyn_limit_ = dyn_ + view->dynamic_count();

Completed in 338 milliseconds

<<11121314151617181920>>