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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
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/third_party/WebKit/Source/core/rendering/
RenderHTMLCanvas.cpp 56 LayoutRect contentRect = contentBoxRect();
57 contentRect.moveBy(paintOffset);
61 bool clip = !contentRect.contains(paintRect);
65 paintInfo.context->clip(pixelSnappedIntRect(contentRect));
RenderEmbeddedObject.cpp 137 FloatRect contentRect;
143 if (!getReplacementTextGeometry(paintOffset, contentRect, path, replacementTextRect, font, run, textWidth))
147 context->clip(contentRect);
162 bool RenderEmbeddedObject::getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth) const
164 contentRect = contentBoxRect();
165 contentRect.moveBy(roundedIntPoint(accumulatedOffset));
182 float x = (contentRect.size().width() / 2 - replacementTextRect.size().width() / 2) + contentRect.location().x();
183 float y = (contentRect.size().height() / 2 - replacementTextRect.size().height() / 2) + contentRect.location().y()
    [all...]
RenderEmbeddedObject.h 65 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth) const;
RenderVideo.cpp 161 LayoutRect contentRect = contentBoxRect();
162 contentRect.moveBy(paintOffset);
164 bool clip = !contentRect.contains(rect);
167 context->clip(contentRect);
RenderReplaced.cpp 308 LayoutRect contentRect = contentBoxRect();
313 return contentRect;
319 return contentRect;
321 LayoutRect finalRect = contentRect;
339 LayoutUnit xOffset = minimumValueForLength(style()->objectPosition().x(), contentRect.width() - finalRect.width());
340 LayoutUnit yOffset = minimumValueForLength(style()->objectPosition().y(), contentRect.height() - finalRect.height());
RenderImage.cpp 357 LayoutRect contentRect = contentBoxRect();
358 contentRect.moveBy(paintOffset);
361 bool clip = !contentRect.contains(paintRect);
364 context->clip(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;
  /frameworks/base/core/jni/android/graphics/pdf/
PdfDocument.cpp 35 PageRecord(int width, int height, const SkRect& contentRect)
40 mContentRect = contentRect;
67 SkRect contentRect = SkRect::MakeLTRB(
69 PageRecord* page = new PageRecord(width, height, contentRect);
74 contentRect.width(), contentRect.height(), NULL, 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 39 - (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_org/chrome/browser/ui/cocoa/panels/
panel_window_controller_cocoa.h 162 - (NSRect)frameRectForContentRect:(NSRect)contentRect;
  /external/chromium_org/ui/gfx/test/
ui_cocoa_test_helper.h 25 - (id)initWithContentRect:(NSRect)contentRect;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGImage.cpp 234 IntRect contentRect = enclosingIntRect(paintInvalidationRectInLocalCoordinates());
235 if (!contentRect.isEmpty())
236 rects.append(contentRect);
  /frameworks/base/services/core/java/com/android/server/wm/
DisplayContent.java 215 * @param contentRect The bounds to apply at the top level.
217 void resize(Rect contentRect) {
218 mContentRect.set(contentRect);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 484 IntRect contentRect = pixelSnappedIntRect(m_renderer->absoluteClippedOverflowRect());
487 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 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 598 milliseconds