Searched refs:newWidth (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DSidebar.js173 set width(newWidth)
175 if (newWidth === this.width)
178 newWidth = Math.max(this.minimumWidth, Math.min(newWidth, this.maximumWidth));
180 this._element.style.width = newWidth + "px";
290 var newWidth = event.pageX - this._element.totalOffsetLeft;
292 var newWidth = this._element.totalOffsetLeft + this._element.offsetWidth - event.pageX;
294 this.width = newWidth;
295 this.collapsed = (newWidth < (this.minimumWidth / 2));
H A DTimelineOverview.js239 var newWidth = Math.ceil(duration / this._secondsPerPixel); variable
242 this._updateElementWidth(this._scrollWidthSizer, newWidth);
292 _updateElementWidth: function(element, newWidth)
295 if (currentWidth !== newWidth)
296 element.style.width = newWidth + "px";
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTableColElement.cpp76 int newWidth = width().toInt(); local
77 if (newWidth != col->width())
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DDragImageGtk.cpp48 int newWidth = scale.width() * cairo_image_surface_get_width(image); local
50 cairo_surface_t* scaledSurface = cairo_surface_create_similar(image, CAIRO_CONTENT_COLOR_ALPHA, newWidth, newHeight);
H A DRenderThemeGtk.cpp708 int newWidth = std::max(2, progressRect.width() / progressActivityBlocks); local
709 int movableWidth = progressRect.width() - newWidth;
710 progressRect.setWidth(newWidth);
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Darrow.rb241 newWidth = (v.y+2-c.canvasy(y).round)/5
242 newWidth = 0 if newWidth < 0
243 newWidth = 20 if newWidth > 20
244 if newWidth != v.width
245 c.move('box3', 0, 5*(v.width-newWidth))
246 v.width = newWidth
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Darrow.rb239 newWidth = (v.y+2-c.canvasy(y).round)/5
240 newWidth = 0 if newWidth < 0
241 newWidth = 20 if newWidth > 20
242 if newWidth != v.width
243 c.move('box3', 0, 5*(v.width-newWidth))
244 v.width = newWidth
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Darrow.tcl228 set newWidth [expr {($v(y)+2-round([$c canvasy $y]))/5}]
229 if {$newWidth < 0} {
230 set newWidth 0
232 if {$newWidth > 20} {
233 set newWidth 20
235 if {$newWidth != $v(width)} {
236 $c move box3 0 [expr {5*($v(width)-$newWidth)}]
237 set v(width) $newWidth
/macosx-10.10/tcl-105/tk84/tk/library/demos/
H A Darrow.tcl228 set newWidth [expr {($v(y)+2-round([$c canvasy $y]))/5}]
229 if {$newWidth < 0} {
230 set newWidth 0
232 if {$newWidth > 20} {
233 set newWidth 20
235 if {$newWidth != $v(width)} {
236 $c move box3 0 [expr {5*($v(width)-$newWidth)}]
237 set v(width) $newWidth
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/
H A DImageDecoder.cpp198 bool ImageFrame::setSize(int newWidth, int newHeight) argument
201 size_t backingStoreSize = newWidth * newHeight;
206 m_size = IntSize(newWidth, newHeight);
H A DImageDecoder.h105 bool setSize(int newWidth, int newHeight);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKWebViewInternal.h91 - (void)_setViewportMetaTagWidth:(float)newWidth;
H A DWKWebView.mm655 - (void)_setViewportMetaTagWidth:(float)newWidth
657 _viewportMetaTagWidth = newWidth;
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebVideoFullscreenController.mm241 CGFloat newWidth = originalRatio * frameToConstrain->size.height;
242 CGFloat diff = frameToConstrain->size.width - newWidth;
243 frameToConstrain->size.width = newWidth;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dcool.tcl309 set newWidth [winfo width $c]
310 $c itemconf obj -height $newHeight -width $newWidth
311 set v(pps) [expr $newWidth / (double($v(end) - $v(start)) / $v(rate))]
312 set v(width) $newWidth
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DPageClientImplIOS.mm248 void PageClientImpl::didChangeViewportMetaTagWidth(float newWidth)
250 [m_webView _setViewportMetaTagWidth:newWidth];
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderImage.cpp317 LayoutUnit newWidth = computedValues.m_extent; local
321 imageSizeChanged = width() != newWidth || height() != newHeight;
/macosx-10.10/tcl-105/tk/tk/generic/ttk/
H A DttkTreeview.c821 int newWidth = n + c->width; local
822 if (newWidth < c->minWidth) {
826 c->width = newWidth;
905 static void ResizeColumns(Treeview *tv, int newWidth) argument
907 int delta = newWidth - (TreeWidth(tv) + tv->tree.slack);
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixWm.c343 int newWidth, int newHeight));
4430 UpdateSizeHints(winPtr, newWidth, newHeight)
4432 int newWidth;
4495 hintsPtr->max_width = hintsPtr->min_width = newWidth;
/macosx-10.10/vim-55/src/
H A Dgui_mac.c1789 unsigned short newWidth; local
1803 newWidth = NewContentRect.right - NewContentRect.left;
1805 gui_resize_shell(newWidth, newHeight);
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixWm.c345 int newWidth, int newHeight);
4780 int newWidth,
4842 hintsPtr->max_width = hintsPtr->min_width = newWidth;
4727 UpdateSizeHints( TkWindow *winPtr, int newWidth, int newHeight) argument

Completed in 541 milliseconds