HomeSort by relevance Sort by last modified time
    Searched full:dimensions (Results 1 - 25 of 2227) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
MutableFrameFormat.java 52 public void setDimensions(int[] dimensions) {
53 mDimensions = (dimensions == null) ? null : Arrays.copyOf(dimensions, dimensions.length);
58 int[] dimensions = new int[1]; local
59 dimensions[0] = size;
60 mDimensions = dimensions;
65 int[] dimensions = new int[2]; local
66 dimensions[0] = width;
67 dimensions[1] = height
73 int[] dimensions = new int[3]; local
    [all...]
  /external/chromium_org/remoting/host/
screen_resolution.cc 19 ScreenResolution::ScreenResolution(const webrtc::DesktopSize& dimensions,
21 : dimensions_(dimensions),
23 // Check that dimensions are not negative.
24 DCHECK(!dimensions.is_empty() || dimensions.equals(webrtc::DesktopSize()));
34 // Scale the screen dimensions to new DPI.
47 return dimensions_.equals(other.dimensions()) && dpi_.equals(other.dpi());
screen_resolution.h 14 // Describes a screen's dimensions and DPI.
18 ScreenResolution(const webrtc::DesktopSize& dimensions,
21 // Returns the screen dimensions scaled according to the passed |new_dpi|.
25 // Dimensions of the screen in pixels.
26 const webrtc::DesktopSize& dimensions() const { return dimensions_; } function in class:remoting::ScreenResolution
35 // Returns true if the dimensions and DPI of the two resolutions match.
resizing_host_observer.cc 34 if ((candidate.dimensions().width() > preferred.dimensions().width()) ||
35 (candidate.dimensions().height() > preferred.dimensions().height())) {
37 static_cast<float>(preferred.dimensions().width()) /
38 candidate.dimensions().width();
40 static_cast<float>(preferred.dimensions().height()) /
41 candidate.dimensions().height();
55 static_cast<float>(candidate.dimensions().width()) /
56 candidate.dimensions().height()
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/res/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/HorizontalPaging/Application/src/main/res/values/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/templates/CardStream/_MODULE_/src/template/res/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/samples/android/ui/views/HorizontalPaging/Application/src/main/res/values/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/samples/browseable/BatchStepSensor/res/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/samples/browseable/HorizontalPaging/res/values/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/tutorials/MoarRam/res/values-sw600dp/
dimens.xml 4 Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/tutorials/MoarRam/res/values-sw720dp-land/
dimens.xml 4 Customize dimensions originally defined in res/values/dimens.xml (such as
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ImageCanvas.java 27 * Dimensions holds the desired width, height, and scale for a bitmap being
30 public static class Dimensions {
40 public Dimensions() {
43 public Dimensions(int w, int h, float s) {
47 public Dimensions(int width, int height, float scale, float fontSize) {
62 * to whatever {@link #getDesiredDimensions(Object, Dimensions)} reported when the
76 * Outputs the desired dimensions that the object with key 'id' would like to be drawn to.
79 * @param outDim caller-allocated {@link Dimensions} object to house the result
81 void getDesiredDimensions(Object key, Dimensions outDim);
  /external/chromium_org/components/feedback/proto/
math.proto 13 // 2D Dimensions.
14 message Dimensions {
  /external/chromium_org/third_party/skia/tools/tests/skdiff/identical-bits/output-expected/
stdout 8 [_] 0 file pairs have identical dimensions but some differing pixels
9 [_] 0 file pairs have differing dimensions
  /external/chromium_org/third_party/skia/tools/tests/skdiff/identical-bits-or-pixels/output-expected/
stdout 8 [_] 0 file pairs have identical dimensions but some differing pixels
9 [_] 0 file pairs have differing dimensions
  /external/skia/tools/tests/skdiff/identical-bits/output-expected/
stdout 8 [_] 0 file pairs have identical dimensions but some differing pixels
9 [_] 0 file pairs have differing dimensions
  /external/skia/tools/tests/skdiff/identical-bits-or-pixels/output-expected/
stdout 8 [_] 0 file pairs have identical dimensions but some differing pixels
9 [_] 0 file pairs have differing dimensions
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
TransformUtils.java 41 public static FrameImage2D makeMipMappedFrame(FrameImage2D current, int[] dimensions) {
44 int[] pow2Dims = new int[] { powOf2(dimensions[0]), powOf2(dimensions[1]) };
49 } else if (!Arrays.equals(dimensions, current.getDimensions())) {
55 public static FrameImage2D makeTempFrame(FrameImage2D current, int[] dimensions) {
59 current = Frame.create(imageType, dimensions).asFrameImage2D();
60 } else if (!Arrays.equals(dimensions, current.getDimensions())) {
61 current.resize(dimensions);
  /frameworks/av/media/libeffects/testlibs/
AudioCoefInterpolator.h 38 // nInDims Number of input dimensions (limited to MAX_IN_DIMS).
41 // nOutDims Number of output dimensions (limited to MAX_OUT_DIMS).
57 // Maximum allowed number of input dimensions.
59 // Maximum allowed number of output dimensions.
62 // Number of input dimensions.
64 // Number of input dimensions.
69 // Number of output dimensions.
75 // The recursion depth is the number of input dimensions.
77 // by two recursive calls to this method for the next dimensions. We then
81 // dimensions
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ArrayProto.java 46 protected final int dimensions; field in class:ArrayProto
63 dimensions = i;
69 @Nonnull @Override public String getType() { return makeArrayType(elementType, dimensions); }
70 public int getDimensions() { return dimensions; }
83 if (dimensions > 1) {
84 return makeArrayType(elementType, dimensions-1);
103 if (dimensions == ((ArrayProto)other).dimensions &&
110 if (dimensions == ((ArrayProto)other).dimensions) {
123 int dimensions = Math.min(this.dimensions, ((ArrayProto)other).dimensions); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
LetterTileProvider.java 31 import com.android.mail.ui.ImageCanvas.Dimensions;
83 public Bitmap getLetterTile(final Dimensions dimensions, final String displayName,
89 final Bitmap bitmap = getBitmap(dimensions, false /* getDefault */);
92 + "address %s.", dimensions.width, dimensions.height, displayName, address);
105 dimensions.fontSize > 0 ? dimensions.fontSize : getFontSize(dimensions.scale));
107 c.drawText(mFirstChar, 0, 1, 0 + dimensions.width / 2
    [all...]
  /external/chromium_org/content/public/android/java/res/values/
dimens.xml 9 <!-- Link Preview dimensions -->
  /external/chromium_org/remoting/protocol/
mouse_input_filter.h 16 // supplied input and output dimensions, and clamps their coordinates to the
17 // output dimensions, before passing events on to |input_stub|.
24 // Specify the input dimensions for mouse events.
27 // Specify the output dimensions.
  /pdk/apps/TestingCamera2/res/values-w820dp/
dimens.xml 4 Example customization of dimensions originally defined in res/values/dimens.xml

Completed in 628 milliseconds

1 2 3 4 5 6 7 8 91011>>