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

1 2 3 4 5

  /external/chromium_org/remoting/webapp/unittests/
menu_button_unittest.js 38 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
40 ok(menu.offsetWidth != 0 && menu.offsetHeight != 0);
47 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
58 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
66 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
  /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 74 virtual LayoutUnit offsetHeight() const OVERRIDE;
RenderVideo.cpp 242 LayoutUnit RenderVideo::offsetHeight() const
245 return block->offsetHeight();
246 return RenderMedia::offsetHeight();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Dialog.js 173 var positionY = box.y + (relativeToElement.offsetHeight - element.offsetHeight) / 2;
174 positionY = Number.constrain(positionY, 0, container.offsetHeight - element.offsetHeight);
SoftContextMenu.js 77 if (document.body.offsetHeight < this._contextMenuElement.offsetTop + this._contextMenuElement.offsetHeight)
78 this._contextMenuElement.style.top = Math.max(0, document.body.offsetHeight - this._contextMenuElement.offsetHeight) + "px";
SuggestBox.js 100 var totalHeight = container.offsetHeight;
320 this._rowCountPerViewport = Math.floor(this._element.offsetHeight / this._element.firstChild.offsetHeight);
  /external/chromium_org/third_party/polymer/components-chromium/core-layout-trbl/
core-slide-extracted.js 105 var h = this.target.offsetHeight;
116 h = s.offsetHeight;
123 var h = this.target.offsetHeight;
135 h = s.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/PerformanceTests/Layout/resources/
character_fallback_test.js 24 target.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/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/third_party/WebKit/Source/devtools/front_end/elements/
Spectrum.js 302 this.slideHeight = this._sliderElement.offsetHeight;
304 this.dragHeight = this._draggerElement.offsetHeight;
305 this._dragHelperElementHeight = this._dragHelperElement.offsetHeight / 2;
306 this.slideHelperHeight = this.slideHelper.offsetHeight / 2;
  /external/chromium_org/chrome/browser/resources/options/chromeos/
display_options.js 59 height: element.offsetHeight
382 newPosition.y = this.snapToEdge_(newPosition.y, draggingDiv.offsetHeight,
383 baseDiv.offsetTop, baseDiv.offsetHeight);
387 y: newPosition.y + draggingDiv.offsetHeight / 2
394 height: baseDiv.offsetHeight
421 if (newPosition.y > baseDiv.offsetTop + baseDiv.offsetHeight)
425 else if (newPosition.y + draggingDiv.offsetHeight <
475 baseDiv.offsetTop - draggingDiv.offsetHeight + 'px';
480 baseDiv.offsetTop + baseDiv.offsetHeight + 'px';
543 baseDiv.offsetTop - draggingDiv.offsetHeight
    [all...]
  /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/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/chrome/browser/resources/print_preview/
print_preview_animations.js 50 var height = el.offsetHeight;
74 var height = el.offsetHeight;
76 el.offsetHeight; // Should force an update of the computed style.
  /external/chromium_org/third_party/polymer/components-chromium/core-layout-grid/
core-layout-grid-extracted.js 158 var h = node.offsetHeight;
307 node.style.top = node.parentNode.offsetHeight
308 + node.offsetHeight + 'px';
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
FilteredItemSelectionDialog.js 80 var preferredHeight = Math.max(relativeToElement.offsetHeight * 2 / 3, 204);
81 var height = Math.min(preferredHeight, container.offsetHeight - 2 * shadowPadding);
88 positionY = Math.max(shadow, Math.min(container.offsetHeight - height - 2 * shadowPadding, positionY));

Completed in 719 milliseconds

1 2 3 4 5