Searched +refs:frame +refs:height (Results 226 - 250 of 372) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGResourceFilter.cpp103 scaledSize.scale(scale.width(), scale.height());
104 float scaledArea = scaledSize.width() * scaledSize.height();
163 scale.setHeight(filterElement().filterResY() / absoluteFilterBoundaries.height());
171 tempSourceRect.scale(scale.width(), scale.height());
201 effectiveTransform.scale(scale.width(), scale.height());
205 RenderingMode renderingMode = renderer.frame().settings().acceleratedFiltersEnabled() ? Accelerated : Unaccelerated;
288 context->scale(FloatSize(1 / filterData->filter->filterResolution().width(), 1 / filterData->filter->filterResolution().height()));
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DjkCanvWave.c62 int height; member in struct:WaveItem
70 int frame; member in struct:WaveItem
128 {TK_CONFIG_INT, "-height", (char *) NULL, (char *) NULL,
129 "100", Tk_Offset(WaveItem, height), 0},
152 {TK_CONFIG_BOOLEAN, "-frame", (char *) NULL, (char *) NULL,
153 "no", Tk_Offset(WaveItem, frame), TK_CONFIG_NULL_OK},
206 int x, int y, int width, int height);
280 wavePtr->height = 100;
290 wavePtr->frame = 0;
429 int yh = wavePtr->height /
1200 int height = wavePtr->height; local
1244 DisplayWave(Tk_Canvas canvas, Tk_Item *itemPtr, Display *display, Drawable drawable, int x, int y, int width, int height) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityObject.cpp331 Frame* frame = node()->document().frame();
332 if (!frame)
335 Editor& editor = frame->editor();
343 if (unifiedTextCheckerEnabled(frame)) {
413 Document* doc = toFrameView(widget)->frame().document();
552 Frame* frame = this->frame(); local
553 if (!frame)
566 if (RefPtr<Range> searchStringRange = frame
592 Frame* frame = this->frame(); local
800 Frame* AccessibilityObject::frame() const function in class:WebCore::AccessibilityObject
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/
H A DTileGrid.cpp100 if (repaintRectInTileCoords.height() < 2 * tileSize.height() && repaintRectInTileCoords.width() < 2 * tileSize.width()) {
218 IntRect rect(tileIndex.x() * tileSize.width(), tileIndex.y() * tileSize.height(), tileSize.width(), tileSize.height());
238 topLeft.setY(clampedRect.y() / tileSize.height());
240 topLeft.setY(floorf((float)clampedRect.y() / tileSize.height()));
245 int bottomYRatio = ceil((float)clampedRect.maxY() / tileSize.height());
398 if (bounds.width() > boundsAtLastRevalidate.width() || bounds.height() > boundsAtLastRevalidate.height()) {
402 if (bounds.height() > boundsAtLastRevalidat
633 CGRect frame = CGRectMake(tileLayer->position().x(), tileLayer->position().y(), tileLayer->bounds().size().width(), tileLayer->bounds().size().height()); local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/ios/wak/
H A DWAKView.mm336 if (scrollView && !CGSizeEqualToSize(scrollViewSize, [documentView frame].size))
434 - (NSRect)frame
597 return [self convertRect:NSMakeRect(0.0f, 0.0f, size.width, size.height) toView:aView].size;
627 if (!CGRectContainsPoint([self frame], point))
757 CGRect frame = [self frame];
758 [description appendFormat:@"frame = (%g %g; %g %g)>", frame.origin.x, frame.origin.y, frame
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DDOM.mm292 WebCore::Frame* frame = core(self)->document().frame();
293 if (!frame)
295 return frame->script().bindingRootObject();
509 boundingBox.setHeight(boundingBox.height() - style.borderBottomWidth() - style.borderTopWidth());
555 WebCore::Frame* frame = node->document().frame();
556 if (!frame)
558 return createDragImageForNode(*frame, *node).autorelease();
609 WebCore::Frame* frame
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DWKAccessibilityWebPageObject.mm185 return [NSValue valueWithSize:NSMakeSize(s.width(), s.height())];
229 // Hit-test point comes in as bottom-screen coordinates. Needs to be normalized to the frame of the web page.
234 CGFloat screenHeight = [(NSScreen *)[[NSScreen screens] objectAtIndex:0] frame].size.height;
235 remotePosition.y = (screenHeight - remotePosition.y) - remoteSize.height;
239 // Re-center point into the web page's frame.
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLVideoElement.cpp175 return player()->naturalSize().height();
213 if (Frame* frame = document().frame())
214 canLoad = frame->loader().willLoadMediaElementURL(poster);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundle.cpp421 int InjectedBundle::numberOfPages(WebFrame* frame, double pageWidthInPixels, double pageHeightInPixels) argument
423 Frame* coreFrame = frame ? frame->coreFrame() : 0;
429 pageHeightInPixels = coreFrame->view()->height();
434 int InjectedBundle::pageNumberForElementById(WebFrame* frame, const String& id, double pageWidthInPixels, double pageHeightInPixels) argument
436 Frame* coreFrame = frame ? frame->coreFrame() : 0;
447 pageHeightInPixels = coreFrame->view()->height();
452 String InjectedBundle::pageSizeAndMarginsInPixels(WebFrame* frame, int pageIndex, int width, int height, in argument
461 isPageBoxVisible(WebFrame* frame, int pageIndex) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dtwind.rb24 # frame
25 $twind_buttons = TkFrame.new(base_frame) {|frame|
26 TkButton.new(frame) {
35 TkButton.new(frame) {
42 # frame
47 'width'=>'70', 'height'=>35, 'wrap'=>'word',
207 height 300
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dtwind.rb21 # frame ������
22 $twind_buttons = TkFrame.new(base_frame) {|frame|
23 TkButton.new(frame) {
33 TkButton.new(frame) {
40 # frame ������
45 'width'=>'70', 'height'=>35, 'wrap'=>'word',
208 height 300
H A Dtwind2.rb21 # frame ������
22 $twind2_buttons = TkFrame.new(base_frame) {|frame|
23 TkGrid(TkFrame.new(frame, :height=>2, :relief=>:sunken, :bd=>2),
26 TkButton.new(frame, :text=>'���������������',
29 TkButton.new(frame, :text=>'���������',
38 frame.grid_columnconfigure(0, :weight=>1)
42 # frame ������
47 # 'width'=>'70', 'height'=>35, 'wrap'=>'word',
48 'width'=>'70', 'height'
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dxmenu.c47 #include "frame.h"
153 static int update_frame_menubar P_ ((struct frame *));
154 static Lisp_Object xmenu_show P_ ((struct frame *, int, int, int, int,
240 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
242 static struct frame *
246 Lisp_Object tail, frame;
251 frame = XCAR (tail);
252 if (!GC_FRAMEP (frame))
254 f = XFRAME (frame);
737 relative for the edit window in frame
244 Lisp_Object tail, frame; local
1131 Lisp_Object x, y, frame, newpos; variable
1316 Lisp_Object frame; variable
1395 Lisp_Object frame; variable
1540 Lisp_Object frame; local
1665 Lisp_Object frame; local
3493 int ulx, uly, width, height; local
3658 &ulx, &uly, &width, &height); local
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DTextAutosizer.cpp121 // frame doesn't get scaled to less than overview scale), in CSS pixels.
123 for (Frame* frame = m_document->frame(); frame; frame = frame->tree().parent()) {
124 if (!frame->view()->isInChildFrameWithFrameFlattening())
125 windowInfo.minLayoutSize = windowInfo.minLayoutSize.shrunkTo(frame->view()->layoutSize());
144 int logicalWindowWidth = isHorizontalWritingMode(writingMode) ? windowInfo.windowSize.width() : windowInfo.windowSize.height();
145 int logicalLayoutWidth = isHorizontalWritingMode(writingMode) ? windowInfo.minLayoutSize.width() : windowInfo.minLayoutSize.height();
[all...]
H A DRenderThemeWin.cpp621 if (isVistaOrLater && o.frame().settings().applicationChromeMode()) {
745 // spin button of which height is less than 2px.
746 if (r.height() < 2)
749 upRect.setHeight(r.height() / 2);
752 downRect.setHeight(r.height() - upRect.height());
760 // If the width and height are both specified, then we have nothing to do.
761 if (!style.width().isIntrinsicOrAuto() && !style.height().isAuto())
770 if (style.height().isAuto())
786 if (renderer.frame()
[all...]
H A DRenderElement.cpp612 frame().selection().setNeedsSelectionUpdate();
868 bool repaintFixedBackgroundsOnScroll = !frame().settings().fixedBackgroundsPaintRelativeToDocument();
948 frame().eventHandler().scheduleCursorUpdate();
992 if (m_style->hasFixedBackgroundImage() && !frame().settings().fixedBackgroundsPaintRelativeToDocument())
1135 if (size.width().isPercent() || size.height().isPercent())
1137 // If the image has neither an intrinsic width nor an intrinsic height, its size is determined as for 'contain'.
1138 if ((size.width().isAuto() || size.height().isAuto()) && image->isGeneratedImage())
1202 repaintUsingContainer(repaintContainer, LayoutRect(oldBounds.x(), oldBounds.y(), deltaLeft, oldBounds.height()));
1204 repaintUsingContainer(repaintContainer, LayoutRect(newBounds.x(), newBounds.y(), -deltaLeft, newBounds.height()));
1208 repaintUsingContainer(repaintContainer, LayoutRect(oldBounds.maxX(), newBounds.y(), deltaRight, newBounds.height()));
1252 LayoutUnit height = absoluteValue(newOutlineBox.height() - oldOutlineBox.height()); local
[all...]
H A DRenderTreeAsText.cpp209 r = IntRect(linesBox.x(), linesBox.y(), linesBox.width(), linesBox.height());
215 r = IntRect(0, 0, inlineFlow.linesBoundingBox().width(), inlineFlow.linesBoundingBox().height());
222 r = LayoutRect(cell.x(), cell.y() + cell.intrinsicPaddingBefore(), cell.width(), cell.height() - cell.intrinsicPaddingBefore() - cell.intrinsicPaddingAfter());
450 ts << " (layout overflow " << layoutOverflow.x().toInt() << "," << layoutOverflow.y().toInt() << " " << layoutOverflow.width().toInt() << "x" << layoutOverflow.height().toInt() << ")";
454 ts << " (visual overflow " << visualOverflow.x().toInt() << "," << visualOverflow.y().toInt() << " " << visualOverflow.width().toInt() << "x" << visualOverflow.height().toInt() << ")";
569 if (RenderView* root = view->frame().contentRenderer()) {
737 paintDirtyRect.setHeight(std::max<LayoutUnit>(paintDirtyRect.height(), rootLayer->renderBox()->layoutOverflowRect().maxY()));
848 Frame* frame = renderer->document().frame();
849 if (!frame)
875 externalRepresentation(Frame* frame, RenderAsTextBehavior behavior) argument
[all...]
H A DRenderLayerCompositor.cpp329 const Settings& settings = m_renderView.frameView().frame().settings();
425 Page* page = m_renderView.frameView().frame().page();
435 // but GraphicsLayer::flushCompositingState() will cross frame boundaries
450 AnimationUpdateBlock animationUpdateBlock(&frameView.frame().animation());
488 Frame& frame = m_renderView.frameView().frame(); local
489 for (Frame* subframe = frame.tree().firstChild(); subframe; subframe = subframe->tree().traverseNext(&frame)) {
624 for (Frame* frame = &m_renderView.frameView().frame(); fram
733 Frame& frame = m_renderView.frameView().frame(); local
784 Frame& frame = m_renderView.frameView().frame(); local
3246 Frame& frame = m_renderView.frameView().frame(); local
3366 Frame& frame = m_renderView.frameView().frame(); local
3410 Frame& frame = m_renderView.frameView().frame(); local
3459 Frame& frame = m_renderView.frameView().frame(); local
3623 scrollCoordinatedAncestorInParentOfFrame(Frame& frame) argument
4007 Frame& frame = m_renderView.frameView().frame(); local
4022 Frame& frame = m_renderView.frameView().frame(); local
[all...]
H A DRenderImage.cpp81 imageRect = IntRect(0, 0, width(), height());
90 lineExtentRect.setHeight(containingBlock->height());
100 lineExtentRect = IntRect(leftOffset - logicalLeft(), imageRect.y(), rightOffset - leftOffset, imageRect.height());
178 return IntSize(paddingWidth + imageSize.width() * style().effectiveZoom(), paddingHeight + imageSize.height() * style().effectiveZoom());
181 // Sets the image height and width to fit the alt text. Returns true if the
198 IntSize paddedTextSize(paddingWidth + std::min(ceilf(font.width(RenderBlock::constructTextRun(this, font, m_altText, style()))), maxAltTextWidth), paddingHeight + std::min(font.fontMetrics().height(), maxAltTextHeight));
283 IntSize containerSize(paintRect.width(), paintRect.height());
318 computeLogicalHeight(height(), 0, computedValues);
321 imageSizeChanged = width() != newWidth || height() != newHeight;
396 Page* page = frame()
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebHTMLView.mm356 invalidRectInFrameViewCoordinates.setY(frameView->frameRect().size().height() - invalidRectInFrameViewCoordinates.maxY());
1275 Frame* frame = core([self _frame]);
1276 if (frame)
1277 frame->eventHandler().mouseMoved(event);
1561 if (event != NULL && event.type == WebEventMouseDown && [self mouse:point inRect:[self frame]])
1595 if ([[self superview] mouse:point inRect:[self frame]])
1767 // If we are moving out of a view (or frame), let's pretend the mouse moved
1878 // AppKit's pagination code to use the correct height for the page content. Leaving printing
2325 - (BOOL)_beginPrintModeWithMinimumPageWidth:(CGFloat)minimumPageWidth height:(CGFloat)minimumPageHeight maximumPageWidth:(CGFloat)maximumPageWidth
2327 Frame* frame
[all...]
/macosx-10.10/WebKit-7600.1.25/ios/WebView/
H A DWebPDFViewPlaceholder.mm162 // depending upon which frame is trying to instantiate a representation for PDF.
392 bounds.size.height = roundf(bounds.size.height);
461 pageRect.size.height = roundf(pageRect.size.height * scalingFactor);
472 desiredHeight += pageRect.size.height + PAGE_HEIGHT_INSET;
509 // Call to the frame loader because this is where our security checks are made.
510 Frame* frame = core([_dataSource webFrame]);
511 frame->loader().loadFrameRequest(FrameLoadRequest(frame
[all...]
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLRenderingContext.cpp141 // Returns false if no clipping is necessary, i.e., x, y, width, height stay the same.
142 bool clip2D(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, argument
148 clip1D(y, height, sourceHeight, clippedY, clippedHeight);
149 return (*clippedX != x || *clippedY != y || *clippedWidth != width || *clippedHeight != height);
395 Frame* frame = document.frame(); local
396 if (!frame)
401 if (!frame->loader().client().allowWebGL(frame->settings().webGLEnabled())) {
426 if (!frame
829 reshape(int width, int height) argument
1353 compressedTexImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, ArrayBufferView* data) argument
1396 compressedTexSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, ArrayBufferView* data) argument
1436 copyTexImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Dint border) argument
1482 copyTexSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height) argument
3511 readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode&) argument
3608 renderbufferStorage(GC3Denum target, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height) argument
3655 scissor(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height) argument
3762 texImage2DBase(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels, ExceptionCode& ec) argument
3827 validateTexFunc(const char* functionName, TexFuncValidationFunctionType functionType, TexFuncValidationSourceType sourceType, GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, GC3Dint xoffset, GC3Dint yoffset) argument
3870 texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode& ec) argument
3923 drawImageIntoBuffer(Image* image, int width, int height, int deviceScaleFactor) argument
4080 texSubImage2DBase(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, const void* pixels, ExceptionCode& ec) argument
4132 texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode& ec) argument
4693 viewport(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height) argument
5221 validateTexFuncParameters(const char* functionName, TexFuncValidationFunctionType functionType, GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type) argument
5282 validateTexFuncData(const char* functionName, GC3Dint level, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, NullDisposition disposition) argument
5358 validateCompressedTexFuncData(const char* functionName, GC3Dsizei width, GC3Dsizei height, GC3Denum format, ArrayBufferView* pixels) argument
5430 validateCompressedTexDimensions(const char* functionName, GC3Denum target, GC3Dint level, GC3Dsizei width, GC3Dsizei height, GC3Denum format) argument
5464 validateCompressedTexSubDimensions(const char* functionName, GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, WebGLTexture* tex) argument
5977 Frame* frame = canvas()->document().frame(); local
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/Panels/
H A DWebAuthenticationPanel.m191 NSRect mainLabelFrame = [mainLabel frame];
192 NSRect realmFrame = [separateRealmLabel frame];
193 NSRect smallLabelFrame = [smallLabel frame];
203 NSRect windowFrame = [panel frame];
204 windowFrame.size.height -= deltaMargin;
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXWm.c405 CGFloat ratio = aspect.width/aspect.height;
470 if (w && NSMouseInRect(p, [w frame], NO)) {
533 wmPtr->height = -1;
538 wmPtr->parentHeight = winPtr->changes.height
851 "frame", "geometry", "grid", "group",
1695 * This procedure is invoked to process the "wm frame" Tcl command. See
1760 int width, height;
1775 height = wmPtr->reqGridHeight + (winPtr->changes.height
1779 height
1740 int width, height; local
2187 int i, width, height, isDefault = 0; local
2459 int width, height; local
2510 int width, height; local
2763 int width, height; local
3565 int x, y, width, height, min, max; local
3812 int x, y, width, height, flags; local
4685 NSRect frame; local
[all...]
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebView.cpp820 LONG height = windowRect.bottom - windowRect.top; local
821 if (width > 0 && height > 0 && (width != m_backingStoreSize.cx || height != m_backingStoreSize.cy)) {
825 m_backingStoreSize.cy = height;
975 double unionPixels = dirtyRect.width() * dirtyRect.height();
1039 // The backing store may have been destroyed if the window rect was set to zero height or zero width.
1189 if (frameView && frameView->frame().contentRenderer()) {
1215 BitBlt(windowDC, dirtyRect.x(), dirtyRect.y(), dirtyRect.width(), dirtyRect.height(), bitmapDC,
1241 Frame* frame = core(webView->topLevelFrame()); local
1242 ASSERT(frame);
[all...]

Completed in 1259 milliseconds

1234567891011>>