/frameworks/av/cmds/screenrecord/ |
H A D | FontBitmap.h | 4 static const uint32_t width = 256; member in class:FontBitmap
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
H A D | mb_utils.cpp | 25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width) argument 42 comp += width; 43 prev += width; 53 comp += width; 54 prev += width; 64 comp += width; 65 prev += width; 74 comp += width; 75 prev += width; 86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width) argument [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
H A D | h264bsd_image.h | 48 u32 width; member in struct:__anon646
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | AccessibilityNodeInfoHelper.java | 31 * @param width pixel width of the display 35 static Rect getVisibleBoundsInScreen(AccessibilityNodeInfo node, int width, int height) { argument 46 displayRect.right = width;
|
/frameworks/base/libs/hwui/tests/common/scenes/ |
H A D | ShadowGrid2Animation.cpp | 31 void createContent(int width, int height, TestCanvas& canvas) override { 35 for (int x = dp(8); x < (width - dp(58)); x += dp(58)) { 54 sp<RenderNode> createCard(int x, int y, int width, int height) { argument 55 return TestUtils::createNode(x, y, x + width, y + height, 56 [width, height](RenderProperties& props, TestCanvas& canvas) { 58 props.mutableOutline().setRoundRect(0, 0, width, height, dp(6), 1);
|
H A D | ShadowGridAnimation.cpp | 31 void createContent(int width, int height, TestCanvas& canvas) override { 35 for (int x = dp(16); x < (width - dp(116)); x += dp(116)) { 54 sp<RenderNode> createCard(int x, int y, int width, int height) { argument 55 return TestUtils::createNode(x, y, x + width, y + height, 56 [width, height](RenderProperties& props, TestCanvas& canvas) { 58 props.mutableOutline().setRoundRect(0, 0, width, height, dp(6), 1);
|
H A D | RecentsAnimation.cpp | 31 void createContent(int width, int height, TestCanvas& renderer) override { 39 thumbnailSize = std::min(std::min(width, height) / 2, 720); 40 int cardsize = std::min(width, height) - dp(64); 71 sp<RenderNode> createCard(int x, int y, int width, int height, argument 73 return TestUtils::createNode(x, y, x + width, y + height, 74 [&thumb, width, height](RenderProperties& props, TestCanvas& canvas) { 76 props.mutableOutline().setRoundRect(0, 0, width, height, dp(10), 1); 80 canvas.drawBitmap(thumb, 0, 0, thumb.width(), thumb.height(), 81 0, 0, width, height, nullptr);
|
/frameworks/base/tools/layoutlib/bridge/src/android/text/ |
H A D | TabStops.java | 33 public float width(float widthSoFar) { method in class:TabStops
|
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/ |
H A D | GL2JNILib.java | 28 * @param width the current view width 31 public static native void init(int width, int height); argument
|
/frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/ |
H A D | GLJNILib.java | 28 * @param width the current view width 31 public static native void init(int width, int height); argument
|
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/ |
H A D | GLPerfLib.java | 28 * @param width the current view width 31 public static native void init(int width, int height); argument
|
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/ |
H A D | GLDualLib.java | 28 * @param width the current view width 31 public static native void init(int width, int height); argument
|
/frameworks/base/core/java/android/gesture/ |
H A D | OrientedBoundingBox.java | 28 public final float width; field in class:OrientedBoundingBox 38 width = w; 58 point[0] = -width / 2; 66 point[0] = -width / 2; 71 point[0] = width / 2; 76 point[0] = width / 2;
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
H A D | RectShape.java | 48 protected void onResize(float width, float height) { argument 49 mRect.set(0, 0, width, height);
|
/frameworks/base/libs/hwui/renderstate/ |
H A D | Scissor.cpp | 46 bool Scissor::set(GLint x, GLint y, GLint width, GLint height) { argument 48 || width != mScissorWidth || height != mScissorHeight)) { 51 width += x; 58 if (width < 0) { 59 width = 0; 64 glScissor(x, y, width, height); 68 mScissorWidth = width; 80 GLint width = std::max(0, ((int)clip.right) - x); local 85 || width != mScissorWidth 87 glScissor(x, y, width, heigh [all...] |
/frameworks/base/libs/hwui/tests/unit/ |
H A D | LayerUpdateQueueTests.cpp | 32 // sync node properties, so properties() reflects correct width and height 33 static sp<RenderNode> createSyncedNode(uint32_t width, uint32_t height) { argument 34 sp<RenderNode> node = TestUtils::createNode(0, 0, width, height, nullptr);
|
/frameworks/base/media/mca/effect/java/android/media/effect/ |
H A D | Effect.java | 55 * <p>The input texture must be a valid texture name with the given width and height and must be 70 * @param width The width of the input texture in pixels. 74 public abstract void apply(int inputTexId, int width, int height, int outputTexId); argument
|
H A D | FilterEffect.java | 85 protected Frame frameFromTexture(int texId, int width, int height) { argument 87 FrameFormat format = ImageFormat.create(width, height,
|
H A D | SizeChangeEffect.java | 41 public void apply(int inputTexId, int width, int height, int outputTexId) { argument 44 Frame inputFrame = frameFromTexture(inputTexId, width, height);
|
/frameworks/base/media/mca/effect/java/android/media/effect/effects/ |
H A D | IdentityEffect.java | 34 public void apply(int inputTexId, int width, int height, int outputTexId) { argument 37 Frame inputFrame = frameFromTexture(inputTexId, width, height); 38 Frame outputFrame = frameFromTexture(outputTexId, width, height);
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
H A D | ImageFormat.java | 36 public static MutableFrameFormat create(int width, argument 42 result.setDimensions(width, height); 51 public static MutableFrameFormat create(int width, argument 55 return create(width,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
H A D | DropTarget.java | 26 * RecentsView, and the width/height are of the RecentsView. 28 boolean acceptsDrop(int x, int y, int width, int height, boolean isCurrentTarget); argument
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
H A D | GLPaint.java | 33 public void setLineWidth(float width) { argument 34 Assert.assertTrue(width >= 0); 35 mLineWidth = width;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
H A D | brightness.cpp | 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer) { 35 const int numPixels = width * height; 28 Java_androidx_media_filterfw_samples_simplecamera_AvgBrightnessFilter_brightnessOperator( JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer) argument
|
H A D | contrast.cpp | 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer) { 35 const int numPixels = width * height; 28 Java_androidx_media_filterfw_samples_simplecamera_ContrastRatioFilter_contrastOperator( JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer) argument
|