HomeSort by relevance Sort by last modified time
    Searched refs:offsetHeight (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /packages/apps/Gallery2/jni/filters/
geometry.c 116 static __inline__ void crop(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight, int offsetWidth, int offsetHeight){
120 if ((srcWidth > dstWidth + offsetWidth) || (srcHeight > dstHeight + offsetHeight)){
125 for (j = offsetHeight; j < offsetHeight + dstHeight; j++){
126 memcpy(destination + (j - offsetHeight) * new_row_width, source + j * row_width + offsetWidth * cpy_bytes, cpy_bytes * dstWidth );
154 void JNIFUNCF(ImageFilterGeometry, nativeApplyFilterCrop, jobject src, jint srcWidth, jint srcHeight, jobject dst, jint dstWidth, jint dstHeight, jint offsetWidth, jint offsetHeight) {
160 crop(source, srcWidth, srcHeight, destination, dstWidth, dstHeight, offsetWidth, offsetHeight);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVideo.h 73 virtual LayoutUnit offsetHeight() const OVERRIDE;
RenderVideo.cpp 270 LayoutUnit RenderVideo::offsetHeight() const
273 return block->offsetHeight();
274 return RenderMedia::offsetHeight();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Dialog.js 176 var positionY = box.y + (relativeToElement.offsetHeight - element.offsetHeight) / 2;
177 positionY = Number.constrain(positionY, 0, container.offsetHeight - element.offsetHeight);
SoftContextMenu.js 87 if (document.body.offsetHeight < this._contextMenuElement.offsetTop + this._contextMenuElement.offsetHeight)
88 this._contextMenuElement.style.top = (document.body.offsetHeight - this._contextMenuElement.offsetHeight) + "px";
SuggestBox.js 101 var totalHeight = container.offsetHeight;
325 this._rowCountPerViewport = Math.floor(this._element.offsetHeight / this._element.firstChild.offsetHeight);
SplitView.js 394 this._totalSize = this._isVertical ? this.element.offsetWidth : this.element.offsetHeight;
395 this._totalSizeOtherDimension = this._isVertical ? this.element.offsetHeight : this.element.offsetWidth;
427 this._resizerElementSize = this._isVertical ? this._resizerElement.offsetWidth : this._resizerElement.offsetHeight;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed_iframe.js 6 var msg = JSON.stringify({type:"size", size:document.body.offsetHeight});
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
FontView.js 110 var result = { width: this._dummyElement.offsetWidth, height: this._dummyElement.offsetHeight };
129 const containerHeight = this.element.offsetHeight - 30;
  /external/chromium_org/third_party/skia/tools/bug_chomper/res/third_party/
jquery.tablednd.js 152 if (e.offsetHeight == 0) {
242 var rowHeight = parseInt(row.offsetHeight)/2;
243 if (row.offsetHeight == 0) {
245 rowHeight = parseInt(row.firstChild.offsetHeight)/2;
  /external/skia/tools/bug_chomper/res/third_party/
jquery.tablednd.js 152 if (e.offsetHeight == 0) {
242 var rowHeight = parseInt(row.offsetHeight)/2;
243 if (row.offsetHeight == 0) {
245 rowHeight = parseInt(row.firstChild.offsetHeight)/2;
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
main.js 13 bounds.height = content.offsetHeight;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
Spectrum.js 309 this.slideHeight = this._sliderElement.offsetHeight;
311 this.dragHeight = this._draggerElement.offsetHeight;
312 this._dragHelperElementHeight = this._dragHelperElement.offsetHeight / 2;
313 this.slideHelperHeight = this.slideHelper.offsetHeight / 2;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DOMPresentationUtils.js 146 var offsetHeight = precomputedDimensions ? precomputedDimensions.offsetHeight : naturalHeight;
149 if (offsetHeight === naturalHeight && offsetWidth === naturalWidth)
150 description = WebInspector.UIString("%d \xd7 %d pixels", offsetWidth, offsetHeight);
152 description = WebInspector.UIString("%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)", offsetWidth, offsetHeight, naturalWidth, naturalHeight);
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview_animations.js 45 var height = el.offsetHeight;
65 var height = el.offsetHeight;
67 el.offsetHeight; // Should force an update of the computed style.
  /external/chromium_org/chrome/browser/resources/
about_memory.js 45 var height = el.offsetHeight;
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_app_browsertest.js 30 return elem.offsetWidth > 0 || elem.offsetHeight > 0;
  /external/chromium_org/tools/perf/measurements/
page_cycler.js 39 var unused = document.body.offsetHeight; // force layout
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
results.js 280 var percentage = 100 * mouseY / this.offsetHeight;
304 if (header.offsetTop - topPanel.scrollTop < header.offsetHeight)
305 topPanel.scrollTop = topPanel.scrollTop - header.offsetHeight;
results_unittests.js 38 equals(dashboard.offsetHeight, 15);
  /external/chromium_org/tools/page_cycler/common/
head.js 83 var unused = document.body.offsetHeight; // force layout
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 203 int offsetHeight = getBodyOffsetHeight(browser);
205 int delta = scrollHeight - offsetHeight;
238 "return document.getElementById('_wbp_tooltip_body').offsetHeight;");
248 return evaluateScriptInt(browser, "return document.body.offsetHeight;");
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScreencastView.js 614 this._canvasElement.height = window.devicePixelRatio * this._canvasElement.offsetHeight;
623 this._context.fillRect(0, this._screenOffsetTop * this._screenZoom + this._imageElement.naturalHeight * this._imageZoom, this._canvasElement.offsetWidth, this._canvasElement.offsetHeight);
739 var canvasHeight = this._canvasElement.offsetHeight;
754 var titleHeight = this._titleElement.offsetHeight + 4;
821 height: this.element.offsetHeight - bordersSize - gutterSize - WebInspector.ScreencastView._navBarHeight};
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
FilteredItemSelectionDialog.js 81 var preferredHeight = Math.max(relativeToElement.offsetHeight * 2 / 3, 204);
82 var height = Math.min(preferredHeight, container.offsetHeight - 2 * shadowPadding);
89 positionY = Math.max(shadow, Math.min(container.offsetHeight - height - 2 * shadowPadding, positionY));
  /external/chromium_org/third_party/WebKit/Source/web/resources/
suggestionPicker.js 150 totalHeight += node.offsetHeight;
227 if (node.offsetTop + node.offsetHeight - scrollTop > SuggestionPicker.VisibleEntryThresholdHeight)
237 var scrollBottom = this._containerElement.scrollTop + this._containerElement.offsetHeight;

Completed in 1786 milliseconds

1 2 3 4 5