HomeSort by relevance Sort by last modified time
    Searched full:dimensions (Results 276 - 300 of 3027) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/com/android/internal/widget/
DialogViewAnimator.java 51 // First measure all children and record maximum dimensions where the
66 // Measured dimensions only count against the maximum
67 // dimensions if they're not MATCH_PARENT.
106 // Measure remaining MATCH_PARENT children again using real dimensions.
  /frameworks/base/tests/AmSlam/res/values-w820dp/
dimens.xml 16 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/data-binding/integration-tests/App With Spaces/app/src/main/res/values-w820dp/
dimens.xml 18 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/main/res/values-w820dp/
dimens.xml 18 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/testlibrary/src/main/res/values-w820dp/
dimens.xml 18 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/data-binding/samples/BindingDemo/app/src/main/res/values-w820dp/
dimens.xml 18 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/util/
GlifDimensionTest.java 68 "Dimensions should satisfy constraint: "
74 "Dimensions should satisfy constraint: ?attr/suwMarginSides + "
99 "Dimensions should satisfy constraint: ?attr/suwMarginSides - "
105 "Dimensions should satisfy constraint: ?attr/suwMarginSides - "
  /frameworks/support/paging/integration-tests/testapp/src/main/res/values-w820dp/
dimens.xml 19 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /frameworks/support/room/integration-tests/testapp/src/main/res/values-w820dp/
dimens.xml 19 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /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);
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapUtils.java 25 * Scales a bitmap while preserving the proportions such that both dimensions are the smallest
26 * values possible that are equal to or larger than the given dimensions.
73 * Crops the given bitmap to a centered rectangle of the given dimensions.
87 "Can't crop bitmap to larger dimensions (%d, %d) -> (%d, %d).",
  /packages/apps/Dialer/java/com/android/incallui/call/
InCallVideoCallCallbackNotifier.java 69 * Inform listeners of a change to peer dimensions.
82 * Inform listeners of a change to camera dimensions.
100 * Called when the peer video feed changes dimensions. This can occur when the peer rotates
108 * Called when the local camera changes dimensions. This occurs when a change in camera occurs.
  /packages/apps/Settings/res/values-h480dp/
dimens.xml 20 <!-- Dimensions for Wifi Assistant Card -->
  /external/smali/smalidea/src/main/java/org/jf/smalidea/util/
NameUtils.java 90 int dimensions = 0; local
97 dimensions++;
100 if (dimensions > 0) {
101 StringBuilder sb = new StringBuilder(firstArrayChar + 2 + dimensions);
102 for (int i=0; i<dimensions; i++) {
265 int dimensions=0; local
266 while (smaliType.charAt(dimensions) == '[') {
267 dimensions++;
270 StringBuilder sb = new StringBuilder(smaliType.length() + dimensions);
271 convertAndAppendNonArraySmaliTypeToJava(smaliType.substring(dimensions), sb)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
DimensionMismatchException.java 22 * Error thrown when two dimensions differ.
41 * Construct an exception from the mismatched dimensions
  /external/glide/library/src/main/java/com/bumptech/glide/load/
ResourceDecoder.java 23 * there is no requirement that the decoded resource exactly match the given dimensions.
24 * A typical use case would be to use the target dimensions to determine
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SimpleTarget.java 45 * Constructor for the target that takes the desired dimensions of the decoded and/or transformed resource.
64 + " height: " + height + ", either provide dimensions in the constructor or call override()");
  /frameworks/base/services/core/java/com/android/server/wm/animation/
ClipRectLRAnimation.java 25 * dimensions of the clip, picking up the other dimensions from whatever is
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorForcedEval.h 96 typedef typename TensorEvaluator<ArgType, Device>::Dimensions Dimensions;
114 EIGEN_DEVICE_FUNC const Dimensions& dimensions() const { return m_impl.dimensions(); } function in struct:Eigen::TensorEvaluator
117 const Index numValues = internal::array_prod(m_impl.dimensions());
README.md 18 tensor rank. The rank is the number of dimensions, for example rank 2 is a
28 dimensions.
52 dimensions are known by the compiler. FixedSize tensors are not resizable.
140 dimensions.
153 // Swap the layout and preserve the order of the dimensions
455 #### <Tensor-Type>::Dimensions
459 dimensions of a tensor. See ```dimensions()```.
463 Acts like an ```int```. Used for indexing tensors along their dimensions. See
475 method. We indicate in the text the type and dimensions of the tensor that th
    [all...]
  /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
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemData.java 56 Size dimensions,
67 mDimensions = dimensions;
123 * Dimensions of this item.
168 sb.append(",dimensions:");
261 public Builder withDimensions(Size dimensions) {
262 mDimensions = dimensions;
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
SortModelTest.java 66 private static final SortDimension[] DIMENSIONS = new SortDimension[] {
78 mModel = new SortModel(Arrays.asList(DIMENSIONS));
84 assertEquals(DIMENSIONS.length, mModel.getSize());
89 for (int i = 0; i < DIMENSIONS.length; ++i) {
90 assertSame(DIMENSIONS[i], mModel.getDimensionAt(i));
96 for (SortDimension dimension : DIMENSIONS) {
  /external/skia/include/codec/
SkAndroidCodec.h 92 * Returns the dimensions of the scaled output image, for an input
95 * When the sample size divides evenly into the original dimensions, the
96 * scaled output dimensions will simply be equal to the original
97 * dimensions divided by the sample size.
100 * dimensions, the codec may round up or down, depending on what is most
133 * Returns the dimensions of the scaled, partial output image, for an
138 * dimensions and a subset supported by SkAndroidCodec.
  /external/skia/src/core/
SkLinearBitmapPipeline.cpp 91 CombinedTileStage(Next* next, SkISize dimensions)
93 , fXStrategy{dimensions.width()}
94 , fYStrategy{dimensions.height()}{ }
356 SkISize dimensions = srcPixmap.info().dimensions(); local
383 samplerStage, dimensions, xTile, yTile, filterQuality, dx, allocator);
493 SkISize dimensions,
496 auto tilerStage = allocator->make<Tiler>(next, dimensions);
509 SkISize dimensions,
515 return this->createTiler<Tiler>(next, dimensions, allocator)
618 SkISize dimensions = imageInfo.dimensions(); local
    [all...]

Completed in 2757 milliseconds

<<11121314151617181920>>