/external/chromium_org/mojo/examples/wm_flow/wm/ |
frame_controller.cc | 8 #include "mojo/services/public/cpp/view_manager/view.h" 32 virtual void Installed(views::View* host) OVERRIDE { 36 virtual void Layout(views::View* host) OVERRIDE { 52 virtual gfx::Size GetPreferredSize(const views::View* host) const OVERRIDE { 75 FrameController::FrameController(mojo::View* view, mojo::View** app_view) 76 : view_(view), 77 app_view_(mojo::View::Create(view->view_manager())) [all...] |
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/ |
view_private.h | 10 #include "mojo/services/public/cpp/view_manager/view.h" 16 explicit ViewPrivate(View* view); 19 static View* LocalCreate(); 35 void LocalAddChild(View* child) { 38 void LocalRemoveChild(View* child) { 41 void LocalReorder(View* relative, OrderDirection direction) { 50 View* view_;
|
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/ |
var_array_buffer.cc | 112 virtual void DidChangeView(const pp::View& view) { 113 if (size_ != view.GetRect().size()) { 114 size_ = view.GetRect().size(); 117 pp::Graphics2D(this, view.GetRect().size(), is_always_opaque);
|
/external/chromium_org/ppapi/c/ |
ppp_instance.h | 115 * <code>DidChangeView() is called when the position, size, or other view 118 void (*DidChangeView)(PP_Instance instance, PP_Resource view);
|
/external/chromium_org/ppapi/examples/threading/ |
threading.cc | 30 virtual void DidChangeView(const pp::View& view) {
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXScrollView.cpp | 37 AXScrollView::AXScrollView(ScrollView* view) 38 : m_scrollView(view) 54 PassRefPtr<AXScrollView> AXScrollView::create(ScrollView* view) 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/rendering/ |
ImageQualityController.cpp | 140 if (frame->view() && frame->view()->inLiveResize()) { 189 bool frameViewIsCurrentlyInLiveResize = frame->view() && frame->view()->inLiveResize();
|
RenderHTMLCanvas.cpp | 45 view()->frameView()->setIsVisuallyNonEmpty();
|
SubtreeLayoutScope.cpp | 42 RELEASE_ASSERT(m_root.document().view()->isInPerformLayout());
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
FileSystemView.js | 39 this.element.classList.add("file-system-view"); 40 this.element.classList.add("storage-view"); 71 * @type {!WebInspector.View} 79 * @param {!WebInspector.View} view 81 showView: function(view) 83 if (this._visibleView === view) 87 this._visibleView = view; 88 view.show(this.mainElement());
|
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
crazy_linker_elf_relro.h | 51 // |load_address|. |view| must point to a mapped ELF binary for the current 54 bool CopyFromRelocated(const ElfView* view,
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_surface.h | 42 u_surface_default_template(struct pipe_surface *view,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/ |
tr_dump_state.h | 68 void trace_dump_sampler_view_template(const struct pipe_sampler_view *view,
|
/external/chromium_org/third_party/skia/include/views/ |
SkViewInflate.h | 25 as a view, otherwise assume root is that view, and just "inflate" it. 32 /** Given an id attribute value, return the corresponding view, or null 43 Do not call "inflate" on the view, just return it. This will 47 /** Base implementation calls view->inflate(dom, node). Subclasses may override this 48 to perform additional initializations to view, either before or after calling 51 virtual void inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node);
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/ |
graph-view_unittest.js | 24 test('graph-view:generateLines_', function() { 35 inspect(lines, 'lines generated by graph view:\n');
|
/external/chromium_org/ui/android/java/src/org/chromium/ui/ |
DropdownPopupWindow.java | 9 import android.view.View; 10 import android.view.View.MeasureSpec; 11 import android.view.View.OnLayoutChangeListener; 12 import android.view.ViewGroup; 27 private final View mAnchorView; 39 * @param viewAndroidDelegate View delegate used to add and remove views. 52 public void onLayoutChange(View v, int left, int top, int right, int bottom [all...] |
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/ |
ViewAndroid.java | 7 import android.view.View; 12 * From the Chromium architecture point of view, ViewAndroid and its native counterpart 13 * serve purpose of representing Android view where Chrome expects to have a cross platform 14 * handle to the system view type. As Views are Java object on Android, this ViewAndroid 16 * it to be flexibly glued to an actual Android Java View at runtime. 27 private View mKeepScreenOnView; 30 * Constructs a View object.
|
/external/chromium_org/ui/base/ |
layout.h | 51 // Returns the ScaleFactor used by |view|. 52 UI_BASE_EXPORT float GetScaleFactorForNativeView(gfx::NativeView view);
|
/external/chromium_org/ui/events/test/ |
cocoa_test_event_utils.h | 29 // |view|'s midpoint. 30 std::pair<NSEvent*, NSEvent*> MouseClickInView(NSView* view,
|
/external/chromium_org/ui/views/ |
border.h | 22 class View; 28 // The border class is used to display a border around a view. 29 // To set a border on a view, just call SetBorder on the view, for example: 30 // view->SetBorder(Border::CreateSolidBorder(1, SkColorSetRGB(25, 25, 112)); 31 // Once set on a view, the border is owned by the view. 35 // border (by calling View::GetLocalBoundsExcludingBorder) when doing layout and 73 // Renders the border for the specified view. 74 virtual void Paint(const View& view, gfx::Canvas* canvas) = 0 [all...] |
/external/chromium_org/ui/views/controls/button/ |
label_button_border.h | 27 virtual void Paint(const View& view, gfx::Canvas* canvas) OVERRIDE;
|
/external/chromium_org/ui/views/controls/ |
glow_hover_controller.h | 20 class View; 29 // invokes SchedulePaint() back on the View as necessary. 37 explicit GlowHoverController(views::View* view); 43 // Sets the location of the hover, relative to the View passed to the 72 // View we're drawing to. 73 views::View* view_; 78 // Location of the glow, relative to view.
|
/external/chromium_org/ui/views/focus/ |
focus_search.h | 8 #include "ui/views/view.h" 15 // next view to focus. 29 // - |root| is the root of the view hierarchy to traverse. Focus will be 32 // to the first view within this root when the traversal reaches 34 // view to FindNextFocusableView you will always get a valid view 35 // out, even if it's the same view. 39 FocusSearch(View* root, bool cycle, bool accessibility_mode); 42 // Finds the next view that should be focused and returns it. If a 43 // FocusTraversable is found while searching for the focusable view, [all...] |
/external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/ |
AccessibilityScrollAction.java | 19 import android.view.accessibility.AccessibilityNodeInfo;
|
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/ |
UiAutomationContext.java | 21 import android.view.accessibility.AccessibilityNodeInfo;
|