OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
38
readonly attribute long
naturalWidth
;
HTMLImageElement.h
47
int
naturalWidth
() const;
HTMLImageElement.cpp
278
int HTMLImageElement::
naturalWidth
() const
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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);
ImageView.js
91
{ name: WebInspector.UIString("Dimensions"), value: WebInspector.UIString("%d × %d", imagePreviewElement.
naturalWidth
, imagePreviewElement.naturalHeight) },
ScreencastView.js
167
this._imageZoom = this._imageElement.
naturalWidth
? this._canvasElement.offsetWidth / this._imageElement.
naturalWidth
: 1;
549
this._context.drawImage(this._imageElement, 0, this._screenOffsetTop * this._screenZoom, this._imageElement.
naturalWidth
* this._imageZoom, this._imageElement.naturalHeight * this._imageZoom);
[
all
...]
ElementsPanel.js
493
* @return {{ offsetWidth: number, offsetHeight: number,
naturalWidth
: number, naturalHeight: number }}
498
return { offsetWidth: this.offsetWidth, offsetHeight: this.offsetHeight,
naturalWidth
: this.
naturalWidth
, naturalHeight: this.naturalHeight };
[
all
...]
/packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java
426
int
naturalWidth
, naturalHeight;
428
naturalWidth
= displaySize.x;
431
naturalWidth
= displaySize.y;
434
return
naturalWidth
< naturalHeight;
[
all
...]
Completed in 4030 milliseconds