HomeSort by relevance Sort by last modified time
    Searched refs:width (Results 1 - 25 of 10732) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SimpleTarget.java 5 * of non essential methods that allows the caller to specify an exact width/height. Typicaly use cases look something
27 private final int width; field in class:SimpleTarget
47 * @param width The width in pixels of the desired resource.
50 public SimpleTarget(int width, int height) {
51 this.width = width;
62 if (width <= 0 || height <= 0) {
63 throw new IllegalArgumentException("Width and height must both be > 0, but given width: " + width + " and
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 23 public final int width; field in class:Size
26 public Size(int width, int height) {
27 this.width = width;
SelectableResolution.java 24 public final int width; field in class:SelectableResolution
30 public SelectableResolution(int cameraId, int width, int height) {
32 this.width = width;
40 return "Cam " + cameraId + ": " + width + " x " + height + " - "
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/
concat-charset.css 4 border-width:1px;
14 border-width:10px;
  /external/deqp/framework/common/
tcuSurface.cpp 34 Surface::Surface(int width, int height)
35 : m_width (width)
37 , m_pixels (width*height)
49 * \param width New width.
52 void Surface::setSize (int width, int height)
54 m_width = width;
56 m_pixels.setStorage(width * height);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FixedPointPreCompInfo.java 15 * The width used for the precomputation. If a larger width precomputation
17 * code should refer to the actual width.
19 protected int width = -1; field in class:FixedPointPreCompInfo
33 return width;
36 public void setWidth(int width)
38 this.width = width;
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
FixedResolutionStrategy.java 16 /** This {@link ResolutionStrategy} will place the GLSurfaceView with the given height and width in the center the screen.
21 private final int width; field in class:FixedResolutionStrategy
24 public FixedResolutionStrategy (int width, int height) {
25 this.width = width;
31 return new MeasuredDimension(width, height);
ResolutionStrategy.java 19 /** Will manipulate the GLSurfaceView. Gravity is always center. The width and height of the View will be determined by the
28 public final int width; field in class:ResolutionStrategy.MeasuredDimension
31 public MeasuredDimension (int width, int height) {
32 this.width = width;
  /external/opencv3/3rdparty/libwebp/utils/
quant_levels_dec.c 20 int DequantizeLevels(uint8_t* const data, int width, int height) {
21 if (data == NULL || width <= 0 || height <= 0) return 0;
23 (void)width;
  /external/skia/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
18 SkASSERT(width >= 0);
26 int width() const { return fWidth; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
  /dalvik/dx/tests/008-field/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/009-method/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/010-class-attrib-InnerClasses/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/011-class-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/012-class-attrib-SourceFile/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/013-class-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/015-field-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/016-field-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/025-class-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/026-field-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /external/v8/src/arm64/
utils-arm64.cc 16 int CountLeadingZeros(uint64_t value, int width) {
18 DCHECK((width == 32) || (width == 64));
20 uint64_t bit_test = 1UL << (width - 1);
21 while ((count < width) && ((bit_test & value) == 0)) {
29 int CountLeadingSignBits(int64_t value, int width) {
31 DCHECK((width == 32) || (width == 64));
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width) - 1
    [all...]
  /development/ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /external/autotest/client/deps/glbench/src/
png_helper.h 8 void write_png_file(const char* file_name, char* pixels, int width, int height);
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);

Completed in 427 milliseconds

1 2 3 4 5 6 7 8 91011>>