HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 1551 - 1575 of 9458) sorted by null

<<61626364656667686970>>

  /cts/tests/tests/view/src/android/view/cts/
View_LayoutPositionTest.java 69 int bottom = top + vRect.height();
77 assertEquals(vRect.height(), view.getHeight());
80 assertEquals(vRect.height(), view.getMeasuredHeight());
96 int nbottom = ntop + vRect.height();
  /development/ndk/platforms/android-18/include/android/
bitmap.h 45 uint32_t height; member in struct:__anon1364
  /development/ndk/platforms/android-8/include/android/
bitmap.h 45 uint32_t height; member in struct:__anon2544
  /development/ndk/platforms/android-9/include/android/
bitmap.h 44 uint32_t height; member in struct:__anon2706
  /development/perftests/panorama/feature_mos/src/mosaic_renderer/
FrameBuffer.h 18 bool Init(int width, int height, GLenum format);
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 18 height: 100%;
44 line-height: 2em;
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraStream.cpp 76 mHeight = res->height;
80 if (mWidth != res->width || mHeight != res->height)
88 res->height = mHeight;
252 stream_config.fmt.height = mHeight;
262 mHalCamCtrl->mRdiHeight = stream_config.fmt.height;
266 mHeight = stream_config.fmt.height;
283 uint32_t Height,
293 mHeight(Height),
340 v4l2_crop.height);
345 mCrop.height = v4l2_crop.height
    [all...]
  /external/ImageMagick/Magick++/lib/
TypeMetric.cpp 41 return(_typeMetric.height);
  /external/autotest/client/deps/glbench/src/
waffle_stuff.h 46 void GetSurfaceSize(GLint *width, GLint *height);
  /external/autotest/client/site_tests/ui_SystemTray/
ui_SystemTray.py 60 box = (w - self.width, h - self.height, w, h)
96 def run_once(self, width, height, mask_points=None, logged_in=None):
98 self.height = height
  /external/autotest/frontend/client/src/autotest/public/
tkoclient.css 53 max-height: 30em;
67 height: 10em;
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.canvas.js 125 // height: Height of the text's bounding box.
128 // height: Height of this line.
198 lineHeight: element.height(),
206 // Setting line-height to 1, without units, sets it equal
209 // via the element's height, working around browsers that
212 font.size = element.css("line-height", 1).height();
224 height: 0
    [all...]
jquery.flot.canvas.min.js 7 (function($){var options={canvas:true};var render,getTextInfo,addText;var hasOwnProperty=Object.prototype.hasOwnProperty;function init(plot,classes){var Canvas=classes.Canvas;if(render==null){getTextInfo=Canvas.prototype.getTextInfo,addText=Canvas.prototype.addText,render=Canvas.prototype.render}Canvas.prototype.render=function(){if(!plot.getOptions().canvas){return render.call(this)}var context=this.context,cache=this._textCache;context.save();context.textBaseline="middle";for(var layerKey in cache){if(hasOwnProperty.call(cache,layerKey)){var layerCache=cache[layerKey];for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey],updateStyles=true;for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var info=styleCache[key],positions=info.positions,lines=info.lines;if(updateStyles){context.fillStyle=info.font.color;context.font=info.font.definition;updateStyles=false}for(var i=0,position;position=positions[i];i++){if(position.active){for(var j=0,line;line=position.lines[j];j++){context.fillText(lines[j].text,line[0],line[1])}}else{positions.splice(i--,1)}}if(positions.length==0){delete styleCache[key]}}}}}}}context.restore()};Canvas.prototype.getTextInfo=function(layer,text,font,angle,width){if(!plot.getOptions().canvas){return getTextInfo.call(this,layer,text,font,angle,width)}var textStyle,layerCache,styleCache,info;text=""+text;if(typeof font==="object"){textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px "+font.family}else{textStyle=font}layerCache=this._textCache[layer];if(layerCache==null){layerCache=this._textCache[layer]={}}styleCache=layerCache[textStyle];if(styleCache==null){styleCache=layerCache[textStyle]={}}info=styleCache[text];if(info==null){var context=this.context;if(typeof font!=="object"){var element=$("<div>&nbsp;</div>").css("position","absolute").addClass(typeof font==="string"?font:null).appendTo(this.getTextLayer(layer));font={lineHeight:element.height(),style:element.css("font-style"),variant:element.css("font-variant"),weight:element.css("font-weight"),family:element.css("font-family"),color:element.css("color")};font.size=element.css("line-height",1).height();element.remove()}textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px "+font.family;info=styleCache[text]={width:0,height:0,positions:[],lines:[],font:{definition:textStyle,color:font.color}};context.save();context.font=textStyle;var lines=(text+"").replace(/<br ?\/?>|\r\n|\r/g,"\n").split("\n");for(var i=0;i<lines.length;++i){var lineText=lines[i],measured=context.measureText(lineText);info.width=Math.max(measured.width,info.width);info.height+=font.lineHeight;info.lines.push({text:lineText,width:measured.width,height:font.lineHeight})}context.restore()}return info};Canvas.prototype.addText=function(layer,x,y,text,font,angle,width,halign,valign){if(!plot.getOptions().canvas){return addText.call(this,layer,x,y,text,font,angle,width,halign,valign)}var info=this.getTextInfo(layer,text,font,angle,width),positions=info.positions,lines=info.lines;y+=info.height/lines.length/2;if(valign=="middle"){y=Math.round(y-info.height/2)}else if(valign=="bottom"){y=Math.round(y-info.height)}else{y=Math.round(y)}if(!!(window.opera&&window.opera.version().split(".")[0]<12)){y-=2}for(var i=0,position;position=positions[i];i++){if(position.x==x&&position.y==y){position.active=true;return}}position={active:true,lines:[],x:x,y:y};positions.push(position);for(var i=0,line;line=lines[i];i++){if(halign=="center"){position.lines.push([Math.round(x-line.width/2),y])}else if(halign=="right"){position.lines.push([Math.round(x-line.width),y])}else{position.lines.push([Math.round(x),y])}y+=line.height}}}$.plot.plugins.push({init:init,options:options,name:"canvas",version:"1.0"})})(jQuery)
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/paper-progress/
paper-progress.css 13 height: 4px;
18 height: 100%;
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/
layer_view.css 18 min-height: 0;
24 height: 150px; /* fixed height given by drag control */
  /external/deqp/framework/platform/android/
tcuAndroidWindow.cpp 45 void Window::setBuffersGeometry (int width, int height, int32_t format)
47 ANativeWindow_setBuffersGeometry(m_window, width, height, format);
53 const int32_t height = ANativeWindow_getHeight(m_window); local
54 return IVec2(width, height);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
PropertyEditorPresentation.java 35 int height);
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 19 if(size < width() * height())
22 size = width() * height();
118 int img_height = widget->height()/widget->draft;
161 QImage image(buffer, width()/draft, height()/draft, QImage::Format_RGB32);
163 painter.drawImage(QPoint(0, 0), image.scaled(width(), height()));
178 double yradius = xradius * height() / width();
180 center.y() + (event->pos().y() - height()/2) * yradius * 2 / height());
194 double t = 1 + 5 * double(delta.y()) / height();
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
MediaStoreThumbFetcher.java 33 private final int height; field in class:MediaStoreThumbFetcher
38 int width, int height) {
39 this(context, mediaStoreUri, defaultFetcher, width, height, DEFAULT_FACTORY);
43 int height, ThumbnailStreamOpenerFactory factory) {
48 this.height = height;
54 ThumbnailStreamOpener fetcher = factory.build(mediaStoreUri, width, height);
184 public ThumbnailStreamOpener build(Uri uri, int width, int height) {
185 if (!isMediaStoreUri(uri) || width > MINI_WIDTH || height > MINI_HEIGHT) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineKey.java 18 private final int height; field in class:EngineKey
30 public EngineKey(String id, Key signature, int width, int height, ResourceDecoder cacheDecoder,
36 this.height = height;
67 } else if (height != engineKey.height) {
105 hashCode = 31 * hashCode + height;
123 .append(height)
139 .putInt(height)
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/
NullDecoder.java 27 public Resource<Z> decode(T source, int width, int height) {
  /external/icu/icu4c/source/samples/layout/
pflow.h 28 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height);
  /external/kernel-headers/original/uapi/drm/
drm_sarea.h 65 unsigned int height; member in struct:drm_sarea_frame
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
FileTextureData.java 32 int height = 0; field in class:FileTextureData
46 height = pixmap.getHeight();
62 height = pixmap.getHeight();
105 return height;
  /external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletWorldImporter/
btWorldImporter.h 165 virtual btCollisionShape* createCapsuleShapeX(btScalar radius, btScalar height);
166 virtual btCollisionShape* createCapsuleShapeY(btScalar radius, btScalar height);
167 virtual btCollisionShape* createCapsuleShapeZ(btScalar radius, btScalar height);
169 virtual btCollisionShape* createCylinderShapeX(btScalar radius,btScalar height);
170 virtual btCollisionShape* createCylinderShapeY(btScalar radius,btScalar height);
171 virtual btCollisionShape* createCylinderShapeZ(btScalar radius,btScalar height);
172 virtual btCollisionShape* createConeShapeX(btScalar radius,btScalar height);
173 virtual btCollisionShape* createConeShapeY(btScalar radius,btScalar height);
174 virtual btCollisionShape* createConeShapeZ(btScalar radius,btScalar height);

Completed in 2692 milliseconds

<<61626364656667686970>>