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

1 2 3 4 5 6 7 8 91011>>

  /external/androidplot/Examples/DemoApp/res/values-ldpi/
dimens.xml 2 <!-- LDPI DIMENSIONS -->
  /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...]
  /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
  /external/androidplot/Examples/DemoApp/res/values-hdpi/
dimens.xml 2 <!-- HDPI DIMENSIONS -->
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
ArraySerializer.java 55 int[] dimensions = new int[depth]; local
56 dimensions[0] = Array.getLength(array);
57 if (depth > 1) collectDimensions(array, 1, dimensions);
58 return dimensions;
61 private void collectDimensions (Object array, int dimension, int[] dimensions) {
62 boolean elementsAreArrays = dimension < dimensions.length - 1;
66 dimensions[dimension] = Math.max(dimensions[dimension], Array.getLength(element));
67 if (elementsAreArrays) collectDimensions(element, dimension + 1, dimensions);
76 int[] dimensions = new int[dimensionCount]
    [all...]
  /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);
  /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...]
  /frameworks/base/tests/LockTaskTests/res/values-w820dp/
dimens.xml 4 Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/rs/java/tests/RsCameraDemo/res/values-w820dp/
dimens.xml 2 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/rs/java/tests/VrDemo/res/values-w820dp/
dimens.xml 2 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /pdk/apps/TestingCamera2/res/values-w820dp/
dimens.xml 4 Example customization of dimensions originally defined in res/values/dimens.xml
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/
preferences.html 41 <i>Note that the default dimension must belong to the <b>Results dimensions</b>
42 described below, hence a new selected dimensions will always be automatically
46 <h2>Results dimensions</h2>
48 These are dimensions displayed in the scenario data HTML pages. Currently there
49 are the <b>Elapsed Process Time</b> and the <b>CPU Time</b>. Having these dimensions
50 configurable may be interesting to display others dimensions and see whether their
54 dimensions, hence it will always be automatically added to the new selected list...</i>
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
SquareFrameLayout.java 54 // Now use the smallest of the measured dimensions for both dimensions
62 // If one of the dimensions has no restriction on size, set both dimensions to be the
66 // Both dimensions have restrictions on size, set both dimensions to be the
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
SquareFrameLayout.java 54 // Now use the smallest of the measured dimensions for both dimensions
62 // If one of the dimensions has no restriction on size, set both dimensions to be the
66 // Both dimensions have restrictions on size, set both dimensions to be the
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
SquareFrameLayout.java 54 // Now use the smallest of the measured dimensions for both dimensions
62 // If one of the dimensions has no restriction on size, set both dimensions to be the
66 // Both dimensions have restrictions on size, set both dimensions to be the

Completed in 1775 milliseconds

1 2 3 4 5 6 7 8 91011>>