HomeSort by relevance Sort by last modified time
    Searched refs:naturalWidth (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls_draw_back_as_canvas.js 10 backImageCanvas.width = backImage.naturalWidth;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.idl 39 readonly attribute long naturalWidth;
HTMLImageElement.h 54 int naturalWidth() const;
HTMLImageElement.cpp 433 int HTMLImageElement::naturalWidth() const
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DOMPresentationUtils.js 143 var naturalWidth = precomputedDimensions ? precomputedDimensions.naturalWidth : imageElement.naturalWidth;
145 var offsetWidth = precomputedDimensions ? precomputedDimensions.offsetWidth : naturalWidth;
149 if (offsetHeight === naturalHeight && offsetWidth === naturalWidth)
152 description = WebInspector.UIString("%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)", offsetWidth, offsetHeight, naturalWidth, naturalHeight);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
ImageView.js 82 { name: WebInspector.UIString("Dimensions"), value: WebInspector.UIString("%d × %d", imagePreviewElement.naturalWidth, imagePreviewElement.naturalHeight) },
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/screencast/
ScreencastView.js 159 this._imageZoom = Math.min(dimensionsCSS.width / this._imageElement.naturalWidth, dimensionsCSS.height / (this._imageElement.naturalWidth * deviceSizeRatio));
164 this._screenZoom = this._imageElement.naturalWidth * this._imageZoom / metadata.deviceWidth;
497 this._context.drawImage(this._imageElement, 0, this._screenOffsetTop * this._screenZoom, this._imageElement.naturalWidth * this._imageZoom, this._imageElement.naturalHeight * this._imageZoom);
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 468 int naturalWidth, naturalHeight;
470 naturalWidth = displaySize.x;
473 naturalWidth = displaySize.y;
476 return naturalWidth < naturalHeight;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsPanel.js 528 * @return {!{offsetWidth: number, offsetHeight: number, naturalWidth: number, naturalHeight: number}}
534 return { offsetWidth: this.offsetWidth, offsetHeight: this.offsetHeight, naturalWidth: this.naturalWidth, naturalHeight: this.naturalHeight };
    [all...]

Completed in 406 milliseconds