Searched refs:height (Results 101 - 125 of 685) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterSurfaceView.java118 int height) {
122 mHeight = height;
127 mListener.surfaceChanged(holder, format, width, height);
115 surfaceChanged(SurfaceHolder holder, int format, int width, int height) argument
H A DGLEnvironment.java110 public int registerSurfaceTexture(SurfaceTexture surfaceTexture, int width, int height) { argument
112 int result = nativeAddSurfaceWidthHeight(surface, width, height);
173 private native int nativeAddSurfaceWidthHeight(Surface surface, int width, int height); argument
/frameworks/base/native/android/
H A Dnative_window.cpp62 int32_t height, int32_t format) {
65 err = native_window_set_buffers_user_dimensions(window, width, height);
68 if (width && height) {
61 ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format) argument
/frameworks/av/include/media/stagefright/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
71 int32_t height() const {return mHeight;} function in class:android::YUVImage
73 // Returns true if pixel is the range [0, width-1] x [0, height-1]
78 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
84 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
147 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
167 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
/frameworks/av/libvideoeditor/lvpp/
H A DDummyVideoSource.cpp34 uint32_t width, uint32_t height,
39 width, height, clipDuration, imageUri);
45 uint32_t width, uint32_t height,
51 mFrameHeight = height;
33 Create( uint32_t width, uint32_t height, uint64_t clipDuration, const char *imageUri) argument
44 DummyVideoSource( uint32_t width, uint32_t height, uint64_t clipDuration, const char *imageUri) argument
/frameworks/av/media/libmedia/
H A DIRemoteDisplayClient.cpp41 uint32_t width, uint32_t height, uint32_t flags)
47 data.writeInt32(height);
81 uint32_t height = data.readInt32(); local
83 onDisplayConnected(surfaceTexture, width, height, flags);
40 onDisplayConnected(const sp<ISurfaceTexture>& surfaceTexture, uint32_t width, uint32_t height, uint32_t flags) argument
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp76 mVideoHeight = videoSize.height;
78 if (!trySettingVideoSize(videoSize.width, videoSize.height)) {
110 int32_t width, int32_t height) {
129 int32_t pictureHeight = supportedSizes[i].height;
131 if ((pictureWidth == width) && (pictureHeight == height)) {
138 ALOGV("Video size (%d, %d) is supported", width, height);
140 params.setVideoSize(width, height);
142 params.setPreviewSize(width, height);
147 ALOGE("Failed to set preview size to %dx%d", width, height);
109 trySettingVideoSize( int32_t width, int32_t height) argument
H A DCameraSource.cpp127 size.height = -1;
173 mVideoSize.height = -1;
214 * Check to see whether the requested video width and height is one
217 * @param height the video frame height in pixels
219 * @return true if the dimension (width and height) is supported.
222 int32_t width, int32_t height,
228 height == supportedSizes[i].height) {
285 * (width and height) an
221 isVideoSizeSupported( int32_t width, int32_t height, const Vector<Size>& supportedSizes) argument
298 configureCamera( CameraParameters* params, int32_t width, int32_t height, int32_t frameRate) argument
374 checkVideoSize( const CameraParameters& params, int32_t width, int32_t height) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfindhalfpel.cpp34 void GenerateSearchRegion(UChar *searchPadding, UChar *ref, Int width, Int height,
81 Int height = video->vol[video->currLayer]->height; local
106 else if (jmin >= height - 1)
117 else if (jmin >= height - 16)
190 Int height; local
203 height = video->vol[video->currLayer]->height;
227 else if (jmin >= height - 1)
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_util.c268 u32 width, height; local
274 height = image->height;
279 picSize = width * height;
/frameworks/av/media/libstagefright/yuv/
H A DYUVImage.cpp26 YUVImage::YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height) { argument
29 mHeight = height;
31 size_t numberOfBytes = bufferSize(yuvFormat, width, height);
39 YUVImage::YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer) { argument
42 mHeight = height;
50 size_t YUVImage::bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height) { argument
51 int32_t numberOfPixels = width*height;
205 int32_t height = srcRect.height(); local
239 for (int32_t offsetY = 0; offsetY < height;
287 int32_t height = srcRect.height(); local
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java264 * @param height the popup's height
266 public PopupWindow(int width, int height) { argument
267 this(null, width, height);
280 * @param height the popup's height
282 public PopupWindow(View contentView, int width, int height) { argument
283 this(contentView, width, height, false);
295 * @param height the popup's height
298 PopupWindow(View contentView, int width, int height, boolean focusable) argument
757 setHeight(int height) argument
1336 update(int width, int height) argument
1353 update(int x, int y, int width, int height) argument
1370 update(int x, int y, int width, int height, boolean force) argument
1438 update(View anchor, int width, int height) argument
1457 update(View anchor, int xoff, int yoff, int width, int height) argument
1461 update(View anchor, boolean updateLocation, int xoff, int yoff, boolean updateDimension, int width, int height) argument
[all...]
H A DScrollView.java289 * Indicates this ScrollView whether it should stretch its content height to fill
292 * @param fillViewport True to stretch the content's height to the viewport's
334 int height = getMeasuredHeight();
335 if (child.getMeasuredHeight() < height) {
340 height -= mPaddingTop;
341 height -= mPaddingBottom;
343 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
935 int height = getHeight();
938 mTempRect.top = getScrollY() + height;
942 if (mTempRect.top + height > vie
1095 isWithinDeltaOfScreen(View descendant, int delta, int height) argument
[all...]
/frameworks/base/libs/hwui/
H A DTextDropShadowCache.cpp119 texture->height = shadow.height;
123 const uint32_t size = shadow.width * shadow.height;
139 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, texture->width, texture->height, 0,
H A DLayer.h63 const float texY = 1.0f / float(texture.height);
64 const float height = layer.getHeight(); local
66 regionRect.left * texX, (height - regionRect.top) * texY,
67 regionRect.right * texX, (height - regionRect.bottom) * texY);
86 return texture.height;
89 void setSize(uint32_t width, uint32_t height) { argument
91 texture.height = height;
H A DLayerCache.h57 * @param width The desired height of the layer
59 Layer* get(const uint32_t width, const uint32_t height);
80 * @param height The new height of the layer
85 bool resize(Layer* layer, const uint32_t width, const uint32_t height);
/frameworks/native/include/android/
H A Dbitmap.h42 uint32_t height; member in struct:__anon1312
/frameworks/base/docs/html/guide/google/gcm/client-javadoc/
H A Ddefault.css13 height: 100%;
34 height: 80px;
37 line-height: 48px;
52 height: 0;
56 height: 1px; }
64 line-height: 15px; }
72 min-height: 10px;
82 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
146 height: 0;
150 height
[all...]
/frameworks/base/docs/html/guide/google/gcm/server-javadoc/
H A Ddefault.css13 height: 100%;
34 height: 80px;
37 line-height: 48px;
52 height: 0;
56 height: 1px; }
64 line-height: 15px; }
72 min-height: 10px;
82 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
146 height: 0;
150 height
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
H A DMediaPropertiesTest.java74 int videoProfile, int videoLevel, int width, int height, int audioCodecType,
87 assertEquals("Video height " + mvi.getHeight(), height, mvi.getHeight());
121 int width, int height, MediaImageItem mii)
125 assertEquals("Image height " + mii.getHeight(), height, mii.getHeight());
150 final int height = MediaProperties.HEIGHT_480;
157 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType,
182 final int height = MediaProperties.HEIGHT_480;
189 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecTyp
72 validateVideoProperties(int aspectRatio, int fileType, int videoCodecType, int duration, int videoBitrate, int fps, int videoProfile, int videoLevel, int width, int height, int audioCodecType, int audioSamplingFrequency, int audioChannel, int audioBitrate, MediaVideoItem mvi) argument
120 validateImageProperties(int aspectRatio, int fileType, int width, int height, MediaImageItem mii) argument
[all...]
/frameworks/base/services/java/com/android/server/display/
H A DOverlayDisplayWindow.java95 int width, int height, int densityDpi, int gravity, Listener listener) {
99 mHeight = height;
185 mTextureView.getLayoutParams().height = mHeight;
229 int height = (int)(mHeight * scale);
231 int y = (int)(mWindowY + mLiveTranslationY - height * offsetScale);
233 y = Math.max(0, Math.min(y, mDefaultDisplayInfo.logicalHeight - height));
239 + ", width=" + width + ", height=" + height);
248 mWindowParams.height = height;
94 OverlayDisplayWindow(Context context, String name, int width, int height, int densityDpi, int gravity, Listener listener) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp42 fprintf(stderr, " -t height in pixels (default: 144)\n");
54 DummySource(int width, int height, int nFrames, int fps, int colorFormat) argument
56 mHeight(height),
60 mSize((width * height * 3) / 2) {
157 int height = 144; local
213 height = atoi(optarg);
258 new DummySource(width, height, nFrames, frameRateFps, colorFormat);
273 enc_meta->setInt32(kKeyHeight, height);
277 enc_meta->setInt32(kKeySliceHeight, height);
/frameworks/av/media/libstagefright/include/
H A Davc_utils.h40 const sp<ABuffer> &seqParamSet, int32_t *width, int32_t *height);
64 const uint8_t *data, size_t size, int32_t *width, int32_t *height);
/frameworks/base/core/java/android/app/
H A DIWallpaperManager.aidl61 * minimum width and height for the wallpaper.
63 void setDimensionHints(in int width, in int height);
71 * Returns the desired minimum height for the wallpaper.
/frameworks/base/core/java/android/view/
H A DGLES20Layer.java33 GLES20Layer(int width, int height, boolean opaque) { argument
34 super(width, height, opaque);

Completed in 472 milliseconds

1234567891011>>