HomeSort by relevance Sort by last modified time
    Searched refs:expectedSize (Results 51 - 75 of 457) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageSizeTests.cpp 328 const tcu::IVec3 expectedSize = getExpectedImageSizeResult(m_texture);
330 if (resultSize != expectedSize)
331 return tcu::TestStatus::fail("Incorrect imageSize(): expected " + de::toString(expectedSize) + " but got " + de::toString(resultSize));
  /cts/tests/fragment/src/android/fragment/cts/
FragmentTransactionTest.java 443 private void getFragmentsUntilSize(int expectedSize) {
448 } while (mActivity.getFragmentManager().getFragments().size() != expectedSize);
  /frameworks/support/fragment/tests/java/android/support/v4/app/
FragmentTransactionTest.java 450 private void getFragmentsUntilSize(int expectedSize) {
455 } while (mActivity.getSupportFragmentManager().getFragments().size() != expectedSize);
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 296 long expectedSize = (sizeString != null) ? Long.parseLong(sizeString) : 0;
297 assertEquals(tag, expectedSize, actual.mSize);
  /packages/apps/Launcher3/src/com/android/launcher3/
InvariantDeviceProfile.java 240 float expectedSize = ICON_SIZE_DEFINED_IN_APP_DP * densityBuckets[i]
242 if (expectedSize >= requiredSize) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
OpenMapRealVector.java 95 * @param expectedSize The expected number of non-zero entries
97 public OpenMapRealVector(int dimension, int expectedSize) {
98 this(dimension, expectedSize, DEFAULT_ZERO_TOLERANCE);
104 * @param expectedSize The expected number of non-zero entries
107 public OpenMapRealVector(int dimension, int expectedSize, double epsilon) {
109 entries = new OpenIntToDoubleHashMap(expectedSize, 0.0);
SparseFieldVector.java 89 * @param expectedSize The expected number of non-zero entries
91 public SparseFieldVector(Field<T> field, int dimension, int expectedSize) {
94 entries = new OpenIntToFieldHashMap<T>(field,expectedSize);
  /external/guava/guava/src/com/google/common/collect/
Sets.java 189 * that it <i>should</i> hold {@code expectedSize} elements without growth.
194 * @param expectedSize the number of elements you expect to add to the
197 * expectedSize} elements without resizing
198 * @throws IllegalArgumentException if {@code expectedSize} is negative
200 public static <E> HashSet<E> newHashSetWithExpectedSize(int expectedSize) {
201 return new HashSet<E>(Maps.capacity(expectedSize));
294 * capacity" that it <i>should</i> hold {@code expectedSize} elements without
299 * @param expectedSize the number of elements you expect to add to the
302 * {@code expectedSize} elements without resizing
303 * @throws IllegalArgumentException if {@code expectedSize} is negativ
    [all...]
Maps.java 182 * that it <i>should</i> hold {@code expectedSize} elements without growth.
187 * @param expectedSize the number of elements you expect to add to the
190 * expectedSize} elements without resizing
191 * @throws IllegalArgumentException if {@code expectedSize} is negative
194 int expectedSize) {
195 return new HashMap<K, V>(capacity(expectedSize));
200 * long as it grows no larger than expectedSize and the load factor is >= its
203 static int capacity(int expectedSize) {
204 if (expectedSize < 3) {
205 checkNonnegative(expectedSize, "expectedSize")
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 185 * that it <i>should</i> hold {@code expectedSize} elements without growth.
190 * @param expectedSize the number of elements you expect to add to the
193 * expectedSize} elements without resizing
194 * @throws IllegalArgumentException if {@code expectedSize} is negative
196 public static <E> HashSet<E> newHashSetWithExpectedSize(int expectedSize) {
197 return new HashSet<E>(Maps.capacity(expectedSize));
290 * capacity" that it <i>should</i> hold {@code expectedSize} elements without
295 * @param expectedSize the number of elements you expect to add to the
298 * {@code expectedSize} elements without resizing
299 * @throws IllegalArgumentException if {@code expectedSize} is negativ
    [all...]
Maps.java 177 * that it <i>should</i> hold {@code expectedSize} elements without growth.
182 * @param expectedSize the number of elements you expect to add to the
185 * expectedSize} elements without resizing
186 * @throws IllegalArgumentException if {@code expectedSize} is negative
189 int expectedSize) {
190 return new HashMap<K, V>(capacity(expectedSize));
195 * long as it grows no larger than expectedSize and the load factor is >= its
198 static int capacity(int expectedSize) {
199 if (expectedSize < 3) {
200 checkNonnegative(expectedSize, "expectedSize")
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestMtpManager.java 211 byte[] getObject(int deviceId, int objectHandle, int expectedSize) throws IOException {
  /frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
SortedListTest.java 581 int expectedSize = 5;
587 assertIntegrity(++expectedSize, "onChanged(" + position + ")");
592 int expectedSize = 5;
598 assertIntegrity(++expectedSize, "onInserted(" + position + ")");
  /prebuilts/misc/common/truth/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.26/
truth-0.26.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.28/
truth-0.28.jar 
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
SpiUtils.java 245 int expectedSize = 2 * (mapResults.size() + duplicates);
246 assertEquals("Incorrect other matches: " + otherMatches, expectedSize, sizeOfOther);
388 int expectedSize = (mapResults.size() + duplicates) * 3;
390 expectedSize, otherMatchesSize);
    [all...]
  /external/icu/icu4c/source/test/iotest/
strtst.c 316 #define Test_u_snprintf(limit, format, value, expectedSize, expectedStr) \
320 if (size != expectedSize || strcmp(cTestResult, expectedStr) != 0) {\
321 log_err("Unexpected formatting. size=%d expectedSize=%d cTestResult=%s expectedStr=%s\n",\
322 size, expectedSize, cTestResult, expectedStr);\
  /external/deqp/modules/gles31/functional/
es31fTessellationGeometryInteractionTests.cpp     [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ArrayTableTest.java 49 @Override protected void assertSize(int expectedSize) {
MapsTest.java 108 for (int expectedSize : largeExpectedSizes) {
109 int capacity = Maps.capacity(expectedSize);
111 "capacity (" + capacity + ") must be >= expectedSize (" + expectedSize + ")",
112 capacity >= expectedSize);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 51 @Override protected void assertSize(int expectedSize) {
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderBase.cpp     [all...]
VideoEncoderDef.h 499 uint32_t expectedSize;
  /cts/tests/tests/media/src/android/media/cts/
ImageReaderDecoderTest.java 708 int expectedSize = width * height * ImageFormat.getBitsPerPixel(format) / 8;
709 assertEquals("Yuv data doesn't match", expectedSize, yuvData.length);
    [all...]

Completed in 1728 milliseconds

1 23 4 5 6 7 8 91011>>