Searched refs:height (Results 501 - 525 of 845) sorted by relevance

<<21222324252627282930>>

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java270 lp.height = LayoutParams.MATCH_PARENT;
374 lp.height = LayoutParams.MATCH_PARENT;
951 final int height = maxHeight - verticalPadding;
952 final int childSpecHeight = MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST);
953 final int exactHeightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
1013 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
1026 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
1055 // If the action bar is wrapping to its content height, don't allow a custom
1061 customNavHeightMode = lp.height != LayoutParams.WRAP_CONTENT ?
1065 (lp.height >
[all...]
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h828 GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data);
829 GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data);
830 GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
831 GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
899 GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels);
901 GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
903 GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height);
912 GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
917 GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels);
948 GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height);
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarView.java273 lp.height = LayoutParams.FILL_PARENT;
386 lp.height = LayoutParams.FILL_PARENT;
858 final int height = maxHeight - verticalPadding;
859 final int childSpecHeight = MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST);
876 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
908 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
921 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
950 // If the action bar is wrapping to its content height, don't allow a custom
956 customNavHeightMode = lp.height != LayoutParams.WRAP_CONTENT ?
960 (lp.height >
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java453 int height = getHeight();
454 int currentPos = location[1] + height;
550 int height = (int) mChipHeight;
551 int deleteWidth = height;
564 Bitmap tmpBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
567 mChipBackgroundPressed.setBounds(0, 0, width, height);
572 getTextYOffset((String) ellipsizedText, paint, height), paint);
579 height - backgroundPadding.bottom);
593 int height = (int) mChipHeight;
594 int iconWidth = height;
672 getTextYOffset(String text, TextPaint paint, int height) argument
798 setChipHeight(int height) argument
814 onSizeChanged(int width, int height, int oldw, int oldh) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1339 int internalformat, int width, int height, int border,
1346 arg("height", height);
1353 height, border, imageSize, data);
1358 int yoffset, int width, int height, int format, int imageSize,
1366 arg("height", height);
1373 height, format, imageSize, data);
1378 int x, int y, int width, int height, int border) {
1386 arg("height", heigh
1338 glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, Buffer data) argument
1357 glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, Buffer data) argument
1377 glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border) argument
1395 glCopyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height) argument
2251 glReadPixels(int x, int y, int width, int height, int format, int type, Buffer pixels) argument
2333 glScissor(int x, int y, int width, int height) argument
2463 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
2527 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
2575 glViewport(int x, int y, int width, int height) argument
2626 glDrawTexfOES(float x, float y, float z, float width, float height) argument
2656 glDrawTexiOES(int x, int y, int z, int width, int height) argument
2685 glDrawTexsOES(short x, short y, short z, short width, short height) argument
2715 glDrawTexxOES(int x, int y, int z, int width, int height) argument
3774 glRenderbufferStorageOES(int target, int internalformat, int width, int height) argument
[all...]
H A DGLES20.java489 // C function void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data )
496 int height,
502 // C function void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
510 int height,
516 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
525 int height,
529 // C function void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
539 int height
1311 // C function void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
1317 int height,
491 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
504 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
518 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
1313 glReadPixels( int x, int y, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
1429 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1493 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
[all...]
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css79 line-height: 140%;
151 line-height: 125%;
330 height: 0px;
336 height: 1px;
539 specify the name of your image and be sure to set 'height' to the
540 proper pixel height of your image.
545 height: 61px;
687 height: 36px;
699 height:30px;
700 line-height
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java90 /** Default key height */
108 /** Current key height, while loading the keyboard */
111 /** Total height of the keyboard, including the padding and keys */
163 /** Default height of a key in this row. */
247 public int height; field in class:Keyboard.Key
315 height = parent.defaultHeight;
342 height = getDimensionOrFraction(a,
453 && (y >= this.y || (topEdge && y <= this.y + this.height))
454 && (y < this.y + this.height || (bottomEdge && y >= this.y))) {
469 int yDist = this.y + height /
522 Keyboard(Context context, int xmlLayoutResId, int modeId, int width, int height) argument
672 setKeyHeight(int height) argument
[all...]
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h494 GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data);
495 GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data);
496 GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
497 GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
565 GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels);
567 GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
569 GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height);
578 GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
583 GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels);
614 GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height);
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp68 int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode)
238 /* Set max width and height. In H.263 mode, we use */
240 /* to pass in height. 04/23/2001 */
250 video->size = (int32)width * height;
253 video->displayHeight = video->height = height;
268 status = PVAllocVideoData(decCtrl, width, height, nLayers);
282 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers) argument
293 video->displayHeight = video->height = height;
67 PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode) argument
725 PVGetBufferDimensions(VideoDecControls *decCtrl, int32 *width, int32 *height) argument
[all...]
H A Dchv_filter.cpp150 int height,
157 height : height of decoded frame
179 int height,
199 pp_h = (height >> 3);
456 int height,
476 pp_h = (height >> 3);
176 CombinedHorzVertFilter( uint8 *rec, int width, int height, int16 *QP_store, int chr, uint8 *pp_mod) argument
453 CombinedHorzVertFilter_NoSoftDeblocking( uint8 *rec, int width, int height, int16 *QP_store, int chr, uint8 *pp_mod) argument
/frameworks/av/media/libstagefright/
H A DUtils.cpp92 int32_t width, height; local
94 CHECK(meta->findInt32(kKeyHeight, &height));
97 msg->setInt32("height", height);
103 msg->setInt32("sar-height", sarHeight);
390 int32_t height; local
391 if (msg->findInt32("width", &width) && msg->findInt32("height", &height)) {
393 meta->setInt32(kKeyHeight, height);
395 ALOGW("did not find width and/or height");
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp49 int32_t width, int32_t height) {
51 int32_t outYsize = width * height;
61 for (int32_t i = height >> 1; i > 0; --i) {
715 vin.height = ((mVideoHeight + 15) >> 4) << 4;
719 vin.uChan = vin.yChan + vin.height * vin.pitch;
720 vin.vChan = vin.uChan + ((vin.height * vin.pitch) >> 2);
47 ConvertYUV420SemiPlanarToYUV420Planar( uint8_t *inyuv, uint8_t* outyuv, int32_t width, int32_t height) argument
/frameworks/base/libs/hwui/
H A DSkiaShader.cpp126 const float height = texture->height; local
131 if (!extensions.hasNPot() && (!isPowerOfTwo(width) || !isPowerOfTwo(height)) &&
155 const float height = texture->height; local
167 glUniform2f(program->getUniform("textureDimension"), 1.0f / width, 1.0f / height);
/frameworks/av/services/camera/libcameraservice/api_pro/
H A DProCamera2Client.cpp257 status_t ProCamera2Client::createStream(int width, int height, int format, argument
267 ALOGV("%s (w = %d, h = %d, f = 0x%x)", __FUNCTION__, width, height, format);
283 return mDevice->createStream(window, width, height, format, /*size*/1,
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.h55 uint32_t width, uint32_t height, int format, size_t size,
59 uint32_t *width, uint32_t *height, uint32_t *format);
198 uint32_t width, uint32_t height, int format, size_t size);
/frameworks/base/core/java/android/hardware/display/
H A DDisplayManagerGlobal.java349 int width, int height, int densityDpi, Surface surface, int flags) {
353 if (width <= 0 || height <= 0 || densityDpi <= 0) {
354 throw new IllegalArgumentException("width, height, and densityDpi must be "
365 name, width, height, densityDpi, surface, flags);
348 createVirtualDisplay(Context context, String name, int width, int height, int densityDpi, Surface surface, int flags) argument
/frameworks/base/core/java/android/widget/
H A DTableRow.java221 lp .bottomMargin + totalHeight, lp.height);
359 * a height of {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT} and no spanning.
440 * <p>Sets the child width and the child height.</p>
443 * @param h the desired height
452 * <p>Sets the child width, height and weight.</p>
455 * @param h the desired height
466 * and the child height to
479 * and the child height to
514 height = a.getLayoutDimension(heightAttr, "layout_height");
516 height
[all...]
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py131 height = 0.9 / num_graphs
132 top = 0.95 - height * index
133 axes = self.fig.add_axes([0.1, top, 0.8, height],
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDayPickerView.java346 final int height = getHeight();
352 while (bottom < height) {
358 int displayedHeight = Math.min(bottom, height) - Math.max(0, child.getTop());
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java138 public void onSurfaceChanged(GL10 glUnused, int width, int height) { argument
141 GLES20.glViewport(0, 0, width, height);
142 mRatio = (float) width / height;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_BlockMatch_Half.c129 if ((pSearchPointRefPos->y + BlockSize + 1) > (pRefRect->y + pRefRect->height))
H A DarmVCM4P2_BlockMatch_Integer.c123 if ((pCurrPointPos->y + BlockSize + searchRange) > (pRefRect->y + pRefRect->height))
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.h234 uint32_t width, uint32_t height, size_t maxSize, int format);
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java181 static native int nCreateLayer(int width, int height, boolean isOpaque, int[] layerInfo); argument
182 static native boolean nResizeLayer(int layerId, int width, int height, int[] layerInfo); argument
186 static native void nUpdateTextureLayer(int layerId, int width, int height, boolean opaque, argument
245 public void setViewport(int width, int height) { argument
247 mHeight = height;
249 nSetViewport(mRenderer, width, height);
252 private static native void nSetViewport(int renderer, int width, int height); argument
902 int width, int height, boolean hasAlpha, Paint paint) {
907 if (height < 0) {
908 throw new IllegalArgumentException("height mus
901 drawBitmap(int[] colors, int offset, int stride, float x, float y, int width, int height, boolean hasAlpha, Paint paint) argument
934 nDrawBitmap(int renderer, int[] colors, int offset, int stride, float x, float y, int width, int height, boolean hasAlpha, int nativePaint) argument
938 drawBitmap(int[] colors, int offset, int stride, int x, int y, int width, int height, boolean hasAlpha, Paint paint) argument
[all...]

Completed in 898 milliseconds

<<21222324252627282930>>