HomeSort by relevance Sort by last modified time
    Searched refs:contentRect (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
LayerPainterChromium.h 40 virtual void paint(SkCanvas*, const IntRect& contentRect, FloatRect& opaque) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
OpaqueRectTrackingContentLayerDelegateTest.cpp 52 virtual void paint(GraphicsContext& context, const IntRect& contentRect) OVERRIDE
54 m_callback(context, contentRect);
64 virtual void operator()(GraphicsContext& context, const IntRect& contentRect) OVERRIDE
67 IntRect top(contentRect.x(), contentRect.y(), contentRect.width(), contentRect.height() / 2);
68 IntRect bottom(contentRect.x(), contentRect.y() + contentRect.height() / 2, contentRect.width(), contentRect.height() / 2)
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_custom_window.h 25 - (id)initWithContentRect:(NSRect)contentRect;
  /sdk/emulator/opengl/tests/translator_tests/MacCommon/
setup_gl.m 22 NSRect contentRect = NSMakeRect(x, y, width, height);
23 NSView *glView = [[NSView alloc] initWithFrame:contentRect];
  /external/chromium_org/ui/aura/
root_window_mac.h 24 - (id)initWithContentRect:(NSRect)contentRect
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeMacSubWindow.m 47 NSRect contentRect = NSMakeRect(x, cocoa_y, width, height);
49 NSView *glView = [[EmuGLView alloc] initWithFrame:contentRect];
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfDocument.java 348 * @param contentRect The content rectangle. Must fit in the page.
350 public Builder setContentRect(Rect contentRect) {
351 if (contentRect != null && (contentRect.left < 0
352 || contentRect.top < 0
353 || contentRect.right > mPageInfo.mPageWidth
354 || contentRect.bottom > mPageInfo.mPageHeight)) {
355 throw new IllegalArgumentException("contentRect does not fit the page");
357 mPageInfo.mContentRect = contentRect;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderEmbeddedObject.cpp 154 FloatRect contentRect;
160 if (!getReplacementTextGeometry(paintOffset, contentRect, path, replacementTextRect, font, run, textWidth))
164 context->clip(contentRect);
179 bool RenderEmbeddedObject::getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth) const
181 contentRect = contentBoxRect();
182 contentRect.moveBy(roundedIntPoint(accumulatedOffset));
199 float x = (contentRect.size().width() / 2 - replacementTextRect.size().width() / 2) + contentRect.location().x();
200 float y = (contentRect.size().height() / 2 - replacementTextRect.size().height() / 2) + contentRect.location().y()
    [all...]
RenderVideo.cpp 152 IntRect contentRect = pixelSnappedIntRect(contentBoxRect());
153 if (elementSize.isEmpty() || contentRect.isEmpty())
156 LayoutRect renderBox = contentRect;
163 renderBox.move((contentRect.width() - renderBox.width()) / 2, 0);
168 renderBox.move(0, (contentRect.height() - renderBox.height()) / 2);
RenderEmbeddedObject.h 77 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth) const;
  /frameworks/base/core/jni/android/graphics/pdf/
PdfDocument.cpp 34 PageRecord(int width, int height, const SkRect& contentRect)
36 mContentRect = contentRect;
59 SkRect contentRect = SkRect::MakeLTRB(
61 PageRecord* page = new PageRecord(width, height, contentRect);
66 contentRect.width(), contentRect.height(), 0);
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzWindow.h 40 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag;
SDL_QuartzWindow.m 184 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag
196 return [ super initWithContentRect:contentRect styleMask:styleMask backing:backingType defer:flag ];
SDL_QuartzVideo.m 694 NSRect contentRect;
701 contentRect = NSMakeRect (0, 0, width, height);
805 initWithContentRect:contentRect
820 [ qz_window setContentSize:contentRect.size ];
822 [ window_view setFrameSize:contentRect.size ];
836 window_view = [ [ NSView alloc ] initWithFrame:contentRect ];
882 window_view = [ [ NSView alloc ] initWithFrame:contentRect ];
968 NSRect contentRect;
977 contentRect = NSMakeRect (0, 0, width, height);
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
framed_browser_window.h 38 - (id)initWithContentRect:(NSRect)contentRect
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.h 154 ARect contentRect;
251 * find the new content rect in android_app::contentRect.
  /external/chromium/chrome/browser/ui/cocoa/
cocoa_test_helper.h 27 - (id)initWithContentRect:(NSRect)contentRect;
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_window_controller_cocoa.h 148 - (NSRect)frameRectForContentRect:(NSRect)contentRect;
  /external/chromium_org/ui/base/test/
ui_cocoa_test_helper.h 25 - (id)initWithContentRect:(NSRect)contentRect;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGImage.cpp 225 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates());
226 if (!contentRect.isEmpty())
227 rects.append(contentRect);
  /frameworks/base/services/java/com/android/server/wm/
DisplayContent.java 360 * @param contentRect The bounds to apply at the top level.
362 boolean setStackBoxSize(Rect contentRect) {
365 change |= mStackBoxes.get(stackBoxNdx).setStackBoxSizes(contentRect, true);
  /external/chromium/chrome/browser/resources/
new_new_tab.js 913 var contentRect = main.getBoundingClientRect();
923 if ((!rtl && contentRect.right > attributionRect.left) ||
924 (rtl && attributionRect.right > contentRect.left)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityRenderObject.cpp 532 IntRect contentRect = pixelSnappedIntRect(m_renderer->absoluteClippedOverflowRect());
535 viewRect.intersect(contentRect);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 562 milliseconds

1 2