HomeSort by relevance Sort by last modified time
    Searched defs:valueCount (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/guava/guava-gwt/src/com/google/common/collect/
Multimap_CustomFieldSerializerBase.java 44 int valueCount = reader.readInt();
45 for (int j = 0; j < valueCount; ++j) {
59 int valueCount = reader.readInt();
60 for (int j = 0; j < valueCount; ++j) {
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionaryUtils.cpp 48 const int valueCount = env->GetArrayLength(attributeValueStringArray);
49 if (keyCount != valueCount) {
com_android_inputmethod_latin_BinaryDictionary.cpp 81 const int valueCount = env->GetArrayLength(attributeValueStringArray);
82 if (keyCount != valueCount) {
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
InterpolatorTest.java 98 final int valueCount = 2;
99 interpolator.reset(valueCount);
100 assertEquals(valueCount, interpolator.getValueCount());
104 interpolator.timeToValues(new float[valueCount - 1]);
133 final int valueCount = 2;
135 interpolator.reset(valueCount);
136 assertEquals(valueCount, interpolator.getValueCount());
139 interpolator.timeToValues(validTime, new float[valueCount - 1]);
239 final int valueCount = 2;
240 interpolator.reset(valueCount);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java 362 int valueCount = stream.readInt();
363 if (valueCount <= 0) {
364 throw new InvalidObjectException("Invalid value count " + valueCount);
367 Object[] array = new Object[valueCount];
368 for (int j = 0; j < valueCount; j++) {
372 tmpSize += valueCount;
Serialization.java 186 int valueCount = stream.readInt();
187 for (int j = 0; j < valueCount; j++) {
ImmutableSetMultimap.java 507 int valueCount = stream.readInt();
508 if (valueCount <= 0) {
509 throw new InvalidObjectException("Invalid value count " + valueCount);
512 Object[] array = new Object[valueCount];
513 for (int j = 0; j < valueCount; j++) {
522 tmpSize += valueCount;
  /frameworks/base/core/java/android/preference/
MultiSelectListPreference.java 223 final int valueCount = defaultValues.length;
226 for (int i = 0; i < valueCount; i++) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 183 explicit Level(bool inArray_) : valueCount(0), inArray(inArray_) {}
184 size_t valueCount; //!< number of values in this level
321 if (level->valueCount > 0) {
325 os_->Put((level->valueCount % 2 == 0) ? ',' : ':');
327 if (!level->inArray && level->valueCount % 2 == 0)
329 level->valueCount++;
  /packages/experimental/FilledApp/src/foo/bar/filled/
CustomLinearLayout.java 62 final int valueCount = values.size();
63 for (int i = 0; i < valueCount; i++) {
  /external/vulkan-validation-layers/windowsRuntimeInstaller/
configure_runtime.c 356 DWORD valueCount;
357 RegQueryInfoKey(subKey, NULL, NULL, NULL, NULL, NULL, NULL, &valueCount, NULL, NULL, NULL, NULL);
358 for(int j = 0; j < valueCount; ++j) {
544 DWORD valueCount;
545 RegQueryInfoKey(hKey, NULL, NULL, NULL, NULL, NULL, NULL, &valueCount, NULL, NULL, NULL, NULL);
546 for(DWORD i = 0; i < valueCount; ++i) {
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
RxJava2Test.java 292 assertThat(consumer.valueCount(), is(2));
311 assertThat(consumer.valueCount(), is(1));
357 assertThat(consumer.valueCount(), is(3));
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/
disklrucache-SNAPSHOT.jar 
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 159 private final int valueCount;
288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
293 this.valueCount = valueCount;
303 * @param valueCount the number of values per cache entry. Must be positive.
307 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
312 if (valueCount <= 0) {
313 throw new IllegalArgumentException("valueCount <= 0");
317 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
334 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize)
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 159 private final int valueCount;
288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
293 this.valueCount = valueCount;
303 * @param valueCount the number of values per cache entry. Must be positive.
307 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
312 if (valueCount <= 0) {
313 throw new IllegalArgumentException("valueCount <= 0");
317 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
334 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize)
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 159 private final int valueCount;
288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
293 this.valueCount = valueCount;
303 * @param valueCount the number of values per cache entry. Must be positive.
307 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
312 if (valueCount <= 0) {
313 throw new IllegalArgumentException("valueCount <= 0");
317 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
334 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize)
    [all...]
  /external/freetype/src/truetype/
ttgxvar.h 204 FT_UShort valueCount;
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 143 private final int valueCount;
176 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
182 this.valueCount = valueCount;
191 * @param valueCount the number of values per cache entry. Must be positive.
195 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
200 if (valueCount <= 0) {
201 throw new IllegalArgumentException("valueCount <= 0");
217 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
236 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 148 private final int valueCount;
187 DiskLruCache(FileSystem fileSystem, File directory, int appVersion, int valueCount, long maxSize,
195 this.valueCount = valueCount;
242 * @param valueCount the number of values per cache entry. Must be positive.
246 int valueCount, long maxSize) {
250 if (valueCount <= 0) {
251 throw new IllegalArgumentException("valueCount <= 0");
258 return new DiskLruCache(fileSystem, directory, appVersion, valueCount, maxSize, executor);
272 || !Integer.toString(valueCount).equals(valueCountString
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioRecordTest.java     [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 528 if (likely (index >= valueCount)) return_trace (false);
543 valueFormat.sanitize_values (c, this, values, valueCount));
553 UINT16 valueCount; /* Number of ValueRecords */
    [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 133 int valueCount = 0;
147 if (isOpt (av, valueCount, optdef))
152 valueCount = 0;
228 valueCount = 1;
250 if (isOpt (value, valueCount, optdef))
252 if (valueCount < cardinality [0])
263 if (valueCount < cardinality [1])
265 ++ valueCount;
272 // if (valueCount < cardinality [0])
291 if (isOpt (args [a], valueCount, optdef)
    [all...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 

Completed in 401 milliseconds

1 2 3 4 5 6 7 8