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

<<21222324252627282930>>

  /external/pdfium/xfa/src/fxbarcode/
BC_Writer.h 21 virtual FX_BOOL SetHeight(int32_t height);
27 CFX_DIBitmap* CreateDIBitmap(int32_t width, int32_t height);
  /external/replicaisland/src/com/replica/replicaisland/
ScrollableBitmap.java 27 public ScrollableBitmap(Texture texture, int width, int height) {
28 super(texture, width, height);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 21 private int height; field in class:ShadowPopupWindow
38 public void __constructor__(View contentView, int width, int height, boolean focusable) {
41 this.height = height;
67 public void setHeight(int height) {
68 this.height = height;
73 return height;
  /external/skia/src/core/
SkValidationUtils.h 29 return rect.width() >= 0 && rect.height() >= 0;
38 SkScalarIsFinite(rect.height());
  /external/skia/src/svg/parser/
SkSVGRect.cpp 14 SVG_ATTRIBUTE(height),
33 SVG_ADD_ATTRIBUTE(height);
  /external/webrtc/talk/app/webrtc/java/jni/
surfacetexturehelper_jni.cc 61 SurfaceTextureHelper::CreateTextureFrame(int width, int height,
64 width, height, native_handle, *j_surface_texture_helper_,
  /external/webrtc/webrtc/common_video/include/
video_frame_buffer.h 39 virtual int height() const = 0;
67 I420Buffer(int width, int height);
68 I420Buffer(int width, int height, int stride_y, int stride_u, int stride_v);
71 int height() const override;
98 NativeHandleBuffer(void* native_handle, int width, int height);
101 int height() const override;
115 int height,
124 int height() const override;
  /external/webrtc/webrtc/common_video/
video_frame_buffer.cc 28 I420Buffer::I420Buffer(int width, int height)
29 : I420Buffer(width, height, width, (width + 1) / 2, (width + 1) / 2) {
33 int height,
38 height_(height),
43 stride_y * height + (stride_u + stride_v) * ((height + 1) / 2),
46 RTC_DCHECK_GT(height, 0);
59 int I420Buffer::height() const { function in class:webrtc::I420Buffer
109 int height)
110 : native_handle_(native_handle), width_(width), height_(height) {
120 int NativeHandleBuffer::height() const { function in class:webrtc::NativeHandleBuffer
166 int WrappedI420Buffer::height() const { function in class:webrtc::WrappedI420Buffer
    [all...]
  /external/webrtc/webrtc/test/
frame_generator.h 33 static FrameGenerator* CreateChromaGenerator(size_t width, size_t height);
40 size_t height,
vcm_capturer.h 26 size_t height,
39 bool Init(size_t width, size_t height, size_t target_fps);
  /external/webrtc/webrtc/test/gl/
gl_renderer.cc 43 void GlRenderer::ResizeViewport(size_t width, size_t height) {
45 glViewport(0, 0, width, height);
54 void GlRenderer::ResizeVideo(size_t width, size_t height) {
57 height_ = height;
59 buffer_size_ = width * height * 4; // BGRA
68 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_BGRA,
77 static_cast<size_t>(frame.height()) != height_) {
78 ResizeVideo(frame.width(), frame.height());
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoHelper.java 32 * @param height pixel height of the display
35 static Rect getVisibleBoundsInScreen(AccessibilityNodeInfo node, int width, int height) {
47 displayRect.bottom = height;
  /frameworks/base/core/jni/android/graphics/
Picture.h 41 Canvas* beginRecording(int width, int height);
47 int height() const;
  /frameworks/base/libs/hwui/
LayerRenderer.cpp 53 const float height = mLayer->layer.getHeight(); local
57 dirty.right >= width && dirty.bottom >= height)) {
59 dirty.set(0.0f, 0.0f, width, height);
61 dirty.doIntersect(0.0f, 0.0f, width, height);
164 const float height = mLayer->layer.getHeight(); local
172 const float v1 = (height - r->top) * texY;
174 const float v2 = (height - r->bottom) * texY;
187 Layer* LayerRenderer::createRenderLayer(RenderState& renderState, uint32_t width, uint32_t height) {
188 ATRACE_FORMAT("Allocate %ux%u HW Layer", width, height);
189 LAYER_RENDERER_LOGD("Requesting new render layer %dx%d", width, height);
    [all...]
  /frameworks/base/libs/hwui/renderstate/
OffscreenBufferPool.cpp 44 uint32_t height = computeIdealDimension(viewportHeight); local
45 ATRACE_FORMAT("Allocate %ux%u HW Layer", width, height);
47 texture.resize(width, height, GL_RGBA);
55 const float texY = 1.0f / static_cast<float>(texture.height());
77 const float texY = 1.0f / float(texture.height());
106 ATRACE_FORMAT("Destroy %ux%u HW Layer", texture.width(), texture.height());
129 return int(lhs.height) - int(rhs.height);
141 const uint32_t width, const uint32_t height) {
144 Entry entry(width, height);
    [all...]
  /frameworks/base/libs/hwui/utils/
Blur.h 39 uint8_t* dest, int32_t width, int32_t height);
41 uint8_t* dest, int32_t width, int32_t height);
  /frameworks/base/opengl/java/android/opengl/
ETC1Util.java 75 int height = texture.getHeight(); local
79 GLES10.glCompressedTexImage2D(target, level, ETC1.ETC1_RGB8_OES, width, height,
85 ByteBuffer decodedData = ByteBuffer.allocateDirect(stride*height)
87 ETC1.decodeImage(data, decodedData, width, height, pixelSize, stride);
88 GLES10.glTexImage2D(target, level, fallbackFormat, width, height, border,
117 public ETC1Texture(int width, int height, ByteBuffer data) {
119 mHeight = height;
130 * Get the height of the texture in pixels.
154 int height = 0; local
167 height = ETC1.getHeight(headerBuffer)
211 int height = texture.getHeight(); local
    [all...]
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
OverlayDisplayWindow.java 62 int width, int height, int gravity) {
66 mHeight = height;
71 int width, int height, int gravity) {
73 return new JellybeanMr1Impl(context, name, width, height, gravity);
75 return new LegacyImpl(context, name, width, height, gravity);
91 public abstract void updateAspectRatio(int width, int height);
112 int width, int height, int gravity) {
113 super(context, name, width, height, gravity);
138 int height = (int)(display.getHeight() * INITIAL_SCALE); local
140 height = mHeight * width / mWidth
336 int height = (int)(mHeight * scale); local
    [all...]
  /packages/apps/Gallery2/jni/filters/
exposure.c 19 void JNIFUNCF(ImageFilterExposure, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright)
25 int len = width * height * 4;
highlight.c 21 jint width, jint height, jfloatArray luminanceMap){
26 int len = width * height * 4;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
AlignFeatures.h 61 int initialize(int width, int height, bool quarter_res, float thresh_still);
85 int width,height; member in class:Align
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ViewLayoutUtils.java 34 final int height) {
36 return new FrameLayout.LayoutParams(width, height);
38 return new RelativeLayout.LayoutParams(width, height);
53 marginLayoutParams.height = h;
60 if (params != null && params.height != layoutHeight) {
61 params.height = layoutHeight;
68 if (params != null && params.height != layoutHeight) {
69 params.height = layoutHeight;
  /packages/services/Car/car-support-lib/src/android/support/car/app/menu/
Utils.java 27 int height = drawable.getIntrinsicHeight(); local
28 Bitmap bitmap = Bitmap.createBitmap(metrics, width, height, Bitmap.Config.ARGB_8888);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xprotostr.h 66 CARD16 width B16, height B16;
73 CARD16 width B16, height B16;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xprotostr.h 66 CARD16 width B16, height B16;
73 CARD16 width B16, height B16;

Completed in 2041 milliseconds

<<21222324252627282930>>