/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;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderHTMLCanvas.cpp | 60 LayoutRect contentRect = contentBoxRect(); 61 contentRect.moveBy(paintOffset); 65 bool clip = !contentRect.contains(paintRect); 69 paintInfo.context->clip(pixelSnappedIntRect(contentRect));
|
RenderEmbeddedObject.cpp | 139 FloatRect contentRect; 145 if (!getReplacementTextGeometry(paintOffset, contentRect, path, replacementTextRect, font, run, textWidth)) 149 context->clip(contentRect); 164 bool RenderEmbeddedObject::getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth) const 166 contentRect = contentBoxRect(); 167 contentRect.moveBy(roundedIntPoint(accumulatedOffset)); 184 float x = (contentRect.size().width() / 2 - replacementTextRect.size().width() / 2) + contentRect.location().x(); 185 float y = (contentRect.size().height() / 2 - replacementTextRect.size().height() / 2) + contentRect.location().y() [all...] |
RenderVideo.cpp | 163 LayoutRect contentRect = contentBoxRect(); 164 contentRect.moveBy(paintOffset); 166 bool clip = !contentRect.contains(rect); 169 context->clip(contentRect);
|
RenderEmbeddedObject.h | 76 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth) const;
|
RenderReplaced.cpp | 330 LayoutRect contentRect = contentBoxRect(); 335 return contentRect; 341 return contentRect; 343 LayoutRect finalRect = contentRect; 361 LayoutUnit xOffset = minimumValueForLength(style()->objectPosition().x(), contentRect.width() - finalRect.width(), view()); 362 LayoutUnit yOffset = minimumValueForLength(style()->objectPosition().y(), contentRect.height() - finalRect.height(), view());
|
RenderImage.cpp | 380 LayoutRect contentRect = contentBoxRect(); 381 contentRect.moveBy(paintOffset); 384 bool clip = !contentRect.contains(paintRect); 387 context->clip(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];
|
/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 | 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 | 162 - (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 | 227 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); 228 if (!contentRect.isEmpty()) 229 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/ |
AXRenderObject.cpp | 492 IntRect contentRect = pixelSnappedIntRect(m_renderer->absoluteClippedOverflowRect()); 495 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 | |