/external/chromium/chrome/browser/ui/cocoa/ |
D | animatable_view.mm | 65 - (void)setHeight:(CGFloat)newHeight { 69 int height = floor(newHeight); 70 [resizeDelegate_ resizeView:self newHeight:height]; 73 - (void)animateToNewHeight:(CGFloat)newHeight 78 finalHeight:newHeight
|
D | animatable_view.h | 43 - (void)setHeight:(CGFloat)newHeight; 47 - (void)animateToNewHeight:(CGFloat)newHeight
|
D | speech_input_window_controller.mm | 71 CGFloat newHeight = cancelSize.height + kBubbleControlVerticalSpacing; 90 newHeight += size.height; 103 newHeight += textSize.height + kBubbleControlVerticalSpacing; 109 newHeight += size.height; 114 newHeight + 3 * kBubbleControlVerticalSpacing);
|
D | browser_window_controller_unittest.mm | 357 [controller_ resizeView:infobar newHeight:60]; 361 [controller_ resizeView:toolbar newHeight:64]; 365 [controller_ resizeView:download newHeight:30]; 369 [controller_ resizeView:infobar newHeight:0]; 370 [controller_ resizeView:toolbar newHeight:39]; 406 [controller_ resizeView:bookmark newHeight:40]; 410 [controller_ resizeView:infobar newHeight:60]; 414 [controller_ resizeView:toolbar newHeight:64]; 418 [controller_ resizeView:download newHeight:30]; 424 [controller_ resizeView:bookmark newHeight:0]; [all …]
|
D | view_resizer.h | 19 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
|
D | view_resizer_pong.h | 19 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
|
D | view_resizer_pong.mm | 13 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height {
|
D | browser_window_controller_private.mm | 495 CGFloat newHeight = 498 CGFloat deltaH = newHeight - toolbarFrame.size.height; 503 toolbarFrame.size.height = newHeight;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
D | ButtonPropertyEditorPresentationImpl.java | 167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) { in setBounds() argument 171 if (newY + newHeight < 0) { in setBounds() 190 control.setData("oldHeight", newHeight); in setBounds() 195 if (oldWidth == newWidth && oldHeight == newHeight) { in setBounds() 201 control.setBounds(newX, newY, newWidth, newHeight); in setBounds()
|
/external/webkit/Source/WebCore/platform/image-decoders/qt/ |
D | ImageFrameQt.cpp | 92 bool ImageFrame::setSize(int newWidth, int newHeight) in setSize() argument 98 m_size = IntSize(newWidth, newHeight); in setSize() 100 m_pixmap = QPixmap(newWidth, newHeight); in setSize()
|
/external/webkit/Source/WebCore/platform/image-decoders/cg/ |
D | ImageDecoderCG.cpp | 63 bool ImageFrame::setSize(int newWidth, int newHeight) in setSize() argument 66 size_t backingStoreSize = newWidth * newHeight * sizeof(PixelData); in setSize() 73 m_size = IntSize(newWidth, newHeight); in setSize()
|
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/ |
D | SDL_riscossprite.c | 218 int newWidth, newHeight; in WIMP_ModeChanged() local 232 newHeight = (currHeight >> oldYeig) << this->hidden->yeig; in WIMP_ModeChanged() 236 if (currHeight <= newHeight) in WIMP_ModeChanged() 238 extent[1] = -newHeight; in WIMP_ModeChanged()
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/ |
D | AwtPanel.java | 45 private int newHeight = 1; field in AwtPanel 62 if (newWidth != newWidth2 || newHeight != newHeight2){ in AwtPanel() 64 newHeight = newHeight2; in AwtPanel() 66 System.out.println("EDT: componentResized " + newWidth + ", " + newHeight); in AwtPanel() 266 reshapeInThread(newWidth, newHeight); in postFrame()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | DragImageGtk.cpp | 49 int newHeight = scale.height() * cairo_image_surface_get_height(image); in scaleDragImage() local 50 …caledSurface = cairo_surface_create_similar(image, CAIRO_CONTENT_COLOR_ALPHA, newWidth, newHeight); in scaleDragImage()
|
/external/webkit/Source/WebCore/platform/image-decoders/skia/ |
D | ImageDecoderSkia.cpp | 87 bool ImageFrame::setSize(int newWidth, int newHeight) in setSize() argument 92 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight); in setSize()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderVideo.cpp | 173 int newHeight = renderBox.width() * elementSize.height() / elementSize.width(); in videoBox() local 174 if (renderBox.height() - newHeight > 2) in videoBox() 175 renderBox.setHeight(newHeight); in videoBox()
|
D | RenderFrameSet.cpp | 580 int newHeight = yPos - borderThickness; in positionFrames() local 584 int dHeight = (height() - newHeight) / rows; in positionFrames() 605 setHeight(max(height(), newHeight)); in positionFrames()
|
D | RenderFlexibleBox.cpp | 884 int newHeight = blockChild->heightForLineCount(numVisibleLines); in applyLineClamp() local 885 if (newHeight == child->height()) in applyLineClamp() 889 child->setOverrideSize(newHeight); in applyLineClamp()
|
D | RenderBox.cpp | 1512 int newHeight = height(); in repaintDuringLayoutIfMoved() local 1519 m_frameRect = IntRect(newX, newY, newWidth, newHeight); in repaintDuringLayoutIfMoved() 2055 int newHeight = block->computeContentBoxLogicalHeight(block->contentHeight()); in computeReplacedLogicalHeightUsing() local 2057 return computeContentBoxLogicalHeight(logicalHeight.calcValue(newHeight)); in computeReplacedLogicalHeightUsing() 2112 int newHeight = block->computeContentBoxLogicalHeight(block->contentLogicalHeight()); in availableLogicalHeightUsing() local 2114 return computeContentBoxLogicalHeight(newHeight); in availableLogicalHeightUsing()
|
/external/webkit/Source/WebCore/platform/image-decoders/ |
D | ImageDecoder.cpp | 195 bool ImageFrame::setSize(int newWidth, int newHeight) in setSize() argument 199 m_backingStore.resize(newWidth * newHeight); in setSize() 201 m_size = IntSize(newWidth, newHeight); in setSize()
|
D | ImageDecoder.h | 118 bool setSize(int newWidth, int newHeight);
|
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/ |
D | LwjglCanvas.java | 211 int newHeight = Math.max(canvas.getHeight(), 1); in runLoop() local 212 if (width != newWidth || height != newHeight){ in runLoop() 214 height = newHeight; in runLoop()
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
D | extension_infobar_controller.mm | 234 CGFloat newHeight = [self clampedExtensionViewHeight] + kBottomBorderHeightPx; 236 infoBarFrame.size.height = newHeight; 239 [view animateToNewHeight:newHeight duration:kAnimationDuration];
|
/external/chromium/chrome/browser/ui/cocoa/infobars/ |
D | infobar_container_controller.mm | 159 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height { 245 [resizeDelegate_ resizeView:[self view] newHeight:[self desiredHeight]];
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebVideoFullscreenController.mm | 262 double newHeight = frameToConstrain->size.width / originalRatio; 263 double diff = frameToConstrain->size.height - newHeight; 264 frameToConstrain->size.height = newHeight;
|