/external/chromium/chrome/browser/ui/cocoa/ |
D | speech_input_window_controller.mm | 72 CGFloat newWidth = cancelSize.width; 74 newWidth += tryAgainSize.width; 91 newWidth = std::max(newWidth, size.width + 2 * kBubbleHorizontalMargin); 104 newWidth = std::max(newWidth, textSize.width); 110 newWidth = std::max(newWidth, size.width); 113 return NSMakeSize(newWidth + 2 * kBubbleHorizontalMargin,
|
D | dock_icon.mm | 56 int newWidth = kBadgeFraction * badgeRect.size.width; 57 badgeRect.origin.x = badgeRect.size.width - newWidth; 58 badgeRect.size.width = newWidth;
|
/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 231 newWidth = (currWidth >> oldXeig) << this->hidden->xeig; in WIMP_ModeChanged() 243 if (currWidth <= newWidth) in WIMP_ModeChanged() 245 extent[2] = newWidth; in WIMP_ModeChanged()
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/ |
D | AwtPanel.java | 44 private int newWidth = 1; field in AwtPanel 62 if (newWidth != newWidth2 || newHeight != newHeight2){ in AwtPanel() 63 newWidth = newWidth2; in AwtPanel() 66 System.out.println("EDT: componentResized " + newWidth + ", " + newHeight); in AwtPanel() 266 reshapeInThread(newWidth, newHeight); in postFrame()
|
/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 189 control.setData("oldWidth", newWidth); in setBounds() 195 if (oldWidth == newWidth && oldHeight == newHeight) { in setBounds() 201 control.setBounds(newX, newY, newWidth, newHeight); in setBounds()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | DragImageGtk.cpp | 48 int newWidth = scale.width() * cairo_image_surface_get_width(image); in scaleDragImage() local 50 …caledSurface = cairo_surface_create_similar(image, CAIRO_CONTENT_COLOR_ALPHA, newWidth, newHeight); in scaleDragImage()
|
D | RenderThemeGtk.cpp | 659 int newWidth = max(2, progressRect.width() / progressActivityBlocks); in calculateProgressRect() local 660 int movableWidth = progressRect.width() - newWidth; in calculateProgressRect() 661 progressRect.setWidth(newWidth); in calculateProgressRect()
|
/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/html/ |
D | HTMLTableColElement.cpp | 71 int newWidth = width().toInt(); in parseMappedAttribute() local 72 if (newWidth != col->width()) in parseMappedAttribute()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderVideo.cpp | 167 int newWidth = renderBox.height() * elementSize.width() / elementSize.height(); in videoBox() local 169 if (renderBox.width() - newWidth > 2) in videoBox() 170 renderBox.setWidth(newWidth); in videoBox()
|
D | RenderFrameSet.cpp | 579 int newWidth = maxWidth - borderThickness; in positionFrames() local 583 int dWidth = (width() - newWidth) / cols; in positionFrames() 606 setWidth(max(width(), newWidth)); in positionFrames()
|
D | RenderBox.cpp | 1511 int newWidth = width(); in repaintDuringLayoutIfMoved() local 1519 m_frameRect = IntRect(newX, newY, newWidth, newHeight); in repaintDuringLayoutIfMoved() 1526 void RenderBox::setVisibleWidth(int newWidth) { in setVisibleWidth() argument 1530 || m_visibleWidth == newWidth) in setVisibleWidth() 1533 m_visibleWidth = newWidth; in setVisibleWidth()
|
D | RenderBox.h | 468 void setVisibleWidth(int newWidth);
|
/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 | 210 int newWidth = Math.max(canvas.getWidth(), 1); in runLoop() local 212 if (width != newWidth || height != newHeight){ in runLoop() 213 width = newWidth; in runLoop()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
D | FlyoutControlComposite.java | 468 int newWidth = width; in handle_mouseMove() local 470 newWidth = event.x + RESIZE_WIDTH / 2; in handle_mouseMove() 472 newWidth = width - event.x + RESIZE_WIDTH / 2; in handle_mouseMove() 474 newWidth = event.y + RESIZE_WIDTH / 2; in handle_mouseMove() 476 newWidth = width - event.y + RESIZE_WIDTH / 2; in handle_mouseMove() 479 if (newWidth != width) { in handle_mouseMove() 480 m_preferences.setWidth(newWidth); in handle_mouseMove()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | ScriptsPanel.js | 695 …var newWidth = Number.constrain(window.innerWidth - x, Preferences.minScriptsSidebarWidth, window.… 696 this.setSidebarWidth(newWidth); 700 setSidebarWidth: function(newWidth) argument 702 this.sidebarElement.style.width = newWidth + "px"; 703 this.sidebarButtonsElement.style.width = newWidth + "px"; 704 this.viewsContainerElement.style.right = newWidth + "px"; 705 this.sidebarResizeWidgetElement.style.right = newWidth + "px"; 706 this.sidebarResizeElement.style.right = (newWidth - 3) + "px";
|
D | ElementsPanel.js | 1103 …var newWidth = Number.constrain(window.innerWidth - x, Preferences.minElementsSidebarWidth, window… 1104 this.setSidebarWidth(newWidth); 1108 setSidebarWidth: function(newWidth) argument 1110 this.sidebarElement.style.width = newWidth + "px"; 1111 this.contentElement.style.right = newWidth + "px"; 1112 this.sidebarResizeElement.style.right = (newWidth - 3) + "px";
|
/external/chromium/chrome/browser/ui/cocoa/wrench_menu/ |
D | wrench_menu_controller.mm | 189 CGFloat newWidth = size.width; 190 delta += newWidth - originalWidth;
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebVideoFullscreenController.mm | 257 double newWidth = originalRatio * frameToConstrain->size.height; 258 double diff = frameToConstrain->size.width - newWidth; 259 frameToConstrain->size.width = newWidth;
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bar_folder_controller_unittest.mm | 1058 CGFloat newWidth = NSWidth([toWindow frame]); 1059 EXPECT_LT(oldWidth + 30.0, newWidth);
|