HomeSort by relevance Sort by last modified time
    Searched full:dimensions (Results 101 - 125 of 1745) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/webview/chromium/overlay/frameworks/base/core/res/res/values/
dimens.xml 9 <!-- Link Preview dimensions -->
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidArrayTest.java 75 int[] dimensions = {3, 2, 1}; local
76 Object intIntIntArray = Array.newInstance(Integer.TYPE, dimensions);
93 int[] dimensions = {1, 2, 3}; local
94 Object strStrStrArray = Array.newInstance(String.class, dimensions);
  /sdk/emulator/opengl/tests/ut_renderer/
Android.mk 20 # is called would cause a crash if the texture dimensions have not been
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
android_platform_backend.py 215 dimensions = line.split(',')[2]
216 dimensions = map(int, dimensions.split()[0].split('x'))
219 assert dimensions, 'Failed to determine video dimensions'
220 return dimensions
240 dimensions = GetDimensions(mp4_file)
241 frame_length = dimensions[0] * dimensions[1] * 3
255 bitmap.Bitmap(3, dimensions[0], dimensions[1], frame_data)
    [all...]
  /external/chromium_org/chrome/browser/feedback/proto/
extension.proto 34 required Dimensions dimensions = 2;
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_client_dev.cc 24 const PP_Size* dimensions,
31 decoder, req_num_of_bufs, *dimensions, texture_target);
  /external/chromium_org/remoting/client/
frame_consumer.h 29 // Accepts a buffer to be painted to the screen. The buffer's dimensions and
33 // having |view_size| dimensions.
  /external/chromium_org/skia/ext/
image_operations_bench.cc 8 // dimensions. It will repeat this operation multiple time to get more accurate
96 // Simple class to represent dimensions of a bitmap (width, height).
97 class Dimensions {
99 Dimensions()
156 Dimensions source_;
157 Dimensions dest_;
216 printf("Invalid source dimensions specified\n");
220 printf("Invalid dest dimensions specified\n");
  /external/skia/tests/
BitmapHasherTest.cpp 46 // same pixel data but different dimensions should yield a different checksum
50 // same dimensions but different color should yield a different checksum
  /external/skia/tools/tests/skdiff/test1/output-expected/
stdout 14 [_] 2 file pairs have identical dimensions but some differing pixels
15 [_] 2 file pairs have differing dimensions
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.h 39 * Set up a stream for formats that have 2 dimensions, such as RAW and YUV.
46 * dimensions, such as compressed JPEG.
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader.js 109 // Dimensions has to be adjusted.
122 * Calculates dimensions taking into account resize options, such as:
124 * - maxWidth, maxHeight: for maximum dimensions,
131 * @return {Object} Dimensions, eg. {width: 100, height: 50}.
137 // Flip dimensions for odd orientation values: 1 (90deg) and 3 (270deg).
194 // For odd orientation values: 1 (90deg) and 3 (270deg) flip dimensions.
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameImage2D.java 136 private void validateBitmapSize(Bitmap bitmap, int[] dimensions) {
137 if (bitmap.getWidth() != dimensions[0] || bitmap.getHeight() != dimensions[1]) {
139 + "x" + bitmap.getHeight() + " to frame of size " + dimensions[0] + "x"
140 + dimensions[1] + "!");
159 // Convert rectangles to integer rectangles in image dimensions
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texgetimage.c 75 get_tex_depth(struct gl_context *ctx, GLuint dimensions,
101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
125 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions,
146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
170 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions,
191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
223 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions,
300 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
317 get_tex_rgba_uncompressed(struct gl_context *ctx, GLuint dimensions,
383 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels
537 GLuint dimensions; local
704 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 37 // Dimensions information
38 Dim[] dimensions; field in class:BuildResults
212 * Returns the dimensions supported for the current build.
214 * @return An array of dimensions.
217 return this.dimensions;
244 if (this.dimensions == null) return -1;
245 int length = this.dimensions.length;
247 if (this.dimensions[i] == null) break;
248 if (this.dimensions[i].getId() == dim_id) {
407 this.dimensions = new Dim[length]
    [all...]
  /external/mesa3d/src/mesa/main/
texgetimage.c 75 get_tex_depth(struct gl_context *ctx, GLuint dimensions,
101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
125 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions,
146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
170 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions,
191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
223 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions,
300 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
317 get_tex_rgba_uncompressed(struct gl_context *ctx, GLuint dimensions,
383 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels
537 GLuint dimensions; local
704 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller.cc 121 const gfx::Size& dimensions,
128 const gfx::Size& dimensions);
306 const gfx::Size dimensions(destination_width, destination_height);
308 DoReserveOutputBuffer(media::VideoFrame::I420, dimensions);
317 media::VideoFrame::I420, media::VideoFrame::kYPlane, dimensions);
321 media::VideoFrame::I420, media::VideoFrame::kUPlane, dimensions);
322 int yplane_stride = dimensions.width();
427 dimensions,
435 const gfx::Size& dimensions,
449 dimensions,
    [all...]
  /frameworks/base/docs/html/training/displaying-bitmaps/
load-bitmap.jd 14 <li><a href="#read-bitmap">Read Bitmap Dimensions and Type</a></li>
42 <h2 id="read-bitmap">Read Bitmap Dimensions and Type</h2>
60 dimensions and type of the image data prior to construction (and memory allocation) of the
72 <p>To avoid {@code java.lang.OutOfMemory} exceptions, check the dimensions of a bitmap before
78 <p>Now that the image dimensions are known, they can be used to decide if the full image should be
86 <li>Dimensions of the target {@link android.widget.ImageView} or UI component that the image
143 // First decode with inJustDecodeBounds=true to check dimensions
  /frameworks/av/include/camera/
CameraParameters2.h 70 // Set the dimensions in pixels to the given width and height
72 // of the supported dimensions returned from
76 // Retrieve the current dimensions (width and height)
78 // supported dimensions returned from getSupportedVideoSizes().
82 // Retrieve a Vector of supported dimensions (width and height)
  /external/ceres-solver/internal/ceres/
conditioned_cost_function.cc 44 // This cost function has the same dimensions (parameters, residuals) as
53 // Set up our dimensions.
58 // Sanity-check the conditioners' dimensions.
  /external/chromium_org/chrome_frame/infobars/internal/
infobar_window.h 33 // Triggers an immediate re-evaluation of the dimensions of the displaced
35 // dimensions of the displaced content.
56 // any space required by this infobar. Passes the reserved dimensions to
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewPopupZoomerTest.java 77 * Tests that shows a zoomer popup and makes sure it has valid dimensions.
99 // The shown popup should have valid dimensions eventually.
100 assertTrue("The zoomer popup has zero dimensions.",
  /external/chromium_org/remoting/host/
chromoting_param_traits.cc 94 ParamTraits<webrtc::DesktopSize>::Write(m, p.dimensions());
122 p.dimensions().width(), p.dimensions().height(),
  /external/chromium_org/third_party/libwebp/utils/
rescaler.h 33 int src_width, src_height; // source dimensions
34 int dst_width, dst_height; // destination dimensions
40 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst.
  /external/webp/src/utils/
rescaler.h 33 int src_width, src_height; // source dimensions
34 int dst_width, dst_height; // destination dimensions
40 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst.

Completed in 1430 milliseconds

1 2 3 45 6 7 8 91011>>