HomeSort by relevance Sort by last modified time
    Searched refs:maxCount (Results 1 - 25 of 351) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
Quantifier.java 19 private int maxCount;
33 maxCount = theMaxCount;
45 while (count < maxCount) {
78 if (maxCount == 1) {
80 } else if (maxCount == MAX) {
84 } else if (minCount == 1 && maxCount == MAX) {
90 if (maxCount != MAX) {
91 result.append(Utility.hex(maxCount,1));
112 if (maxCount > 0) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Quantifier.java 18 private int maxCount;
32 maxCount = theMaxCount;
44 while (count < maxCount) {
77 if (maxCount == 1) {
79 } else if (maxCount == MAX) {
83 } else if (minCount == 1 && maxCount == MAX) {
89 if (maxCount != MAX) {
90 result.append(Utility.hex(maxCount,1));
111 if (maxCount > 0) {
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eleven.cpp 32 GLsizei maxCount = 10;
34 GLuint shaders[maxCount];
36 glGetAttachedShaders(program, maxCount,
attach_shader_four.cpp 27 GLsizei maxCount = 10;
29 GLuint shaders[maxCount];
31 glGetAttachedShaders(program, maxCount,
attach_shader_five.cpp 31 GLsizei maxCount = 10;
33 GLuint shaders[maxCount];
35 glGetAttachedShaders(program, maxCount,
attach_shader_one.cpp 48 GLsizei maxCount = 10;
50 GLuint shaders[maxCount];
52 glGetAttachedShaders(program, maxCount,
attach_shader_ten.cpp 31 GLsizei maxCount = 10;
33 GLuint shaders[maxCount];
35 glGetAttachedShaders(program, maxCount,
attach_shader_two.cpp 33 GLsizei maxCount = 10;
35 GLuint shaders[maxCount];
37 glGetAttachedShaders(program, maxCount,
color_one.cpp 72 GLsizei maxCount = 10;
74 GLuint shaders[maxCount];
76 glGetAttachedShaders(gProgram, maxCount,
  /external/icu/icu4c/source/i18n/
quant.cpp 28 // assert(minCount <= maxCount);
31 this->maxCount = _maxCount;
39 maxCount(o.maxCount)
71 while (count < maxCount) {
105 if (maxCount == 1) {
107 } else if (maxCount == MAX) {
111 } else if (minCount == 1 && maxCount == MAX) {
117 if (maxCount != MAX) {
118 ICU_Utility::appendNumber(result, maxCount);
    [all...]
quant.h 31 uint32_t minCount, uint32_t maxCount);
119 uint32_t maxCount;
  /frameworks/base/cmds/incidentd/src/
report_directory.h 29 void clean_directory(const char* directory, off_t maxSize, size_t maxCount);
report_directory.cpp 98 void clean_directory(const char* directory, off_t maxSize, size_t maxCount) {
138 if (totalSize < maxSize && totalCount < maxCount) {
147 it != files.end() && totalSize >= maxSize && totalCount >= maxCount; it++) {
  /dalvik/libdex/
DexDataMap.cpp 28 DexDataMap* dexDataMapAlloc(u4 maxCount) {
40 if (!safe_mul(&size, maxCount, sizeOfItems) ||
52 map->max = maxCount;
54 map->types = (u2*) (map->offsets + maxCount);
DexDataMap.h 36 DexDataMap* dexDataMapAlloc(u4 maxCount);
  /system/chre/core/tests/
memory_manager_test.cc 77 size_t maxCount = manager.getMaxAllocationCount();
80 for (size_t i = 0; i < maxCount-1; i++) {
86 EXPECT_EQ(manager.getTotalAllocatedBytes(), maxCount * sizeof(node));
87 EXPECT_EQ(manager.getAllocationCount(), maxCount);
91 for (size_t i = 0; i < maxCount; i++) {
  /art/test/036-finalizer/src/
Main.java 116 public static final int maxCount = 1024;
117 public static boolean finalized[] = new boolean[maxCount];
125 for (int i = 0; i < maxCount; ++i) {
150 allocFinalizableObjects(FinalizeCounter.maxCount);
153 if (FinalizeCounter.getCount() != FinalizeCounter.maxCount) {
156 System.out.println("Finalized " + FinalizeCounter.getCount() + " / " + FinalizeCounter.maxCount);
167 System.out.println("After sleep finalized " + FinalizeCounter.getCount() + " / " + FinalizeCounter.maxCount);
  /external/autotest/frontend/client/src/autotest/common/table/
ArrayDataSource.java 25 public void getPage(Integer start, Integer maxCount, SortSpec[] sortOn,
32 int maxCountInt = maxCount != null ? maxCount.intValue() : data.size();
RpcDataSource.java 26 public void getPage(Integer start, Integer maxCount, SortSpec[] sortOn,
32 if (maxCount != null) {
33 pageParams.put("query_limit", new JSONNumber(maxCount.intValue()));
  /packages/apps/DocumentsUI/src/com/android/documentsui/roots/
RootCursorWrapper.java 45 public RootCursorWrapper(String authority, String rootId, Cursor cursor, int maxCount) {
51 if (maxCount > 0 && count > maxCount) {
52 mCount = maxCount;
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_parser.h 72 return ArgumentSpec(name, 1 /* minCount */, 1 /* maxCount */, description);
76 const size_t maxCount, const std::string &description) {
77 return ArgumentSpec(name, minCount, maxCount, description);
88 ArgumentSpec(const std::string &name, const size_t minCount, const size_t maxCount,
90 : mName(name), mMinCount(minCount), mMaxCount(maxCount), mDescription(description) {}
  /device/generic/goldfish/libqemu/
test_guest_1.c 43 const int maxCount = 100;
66 for (count = 0; count < maxCount; count++) {
  /hardware/qcom/display/msm8996/libqdutils/
qd_utils.cpp 57 const uint32_t maxCount = 10;
58 char *tokens[maxCount] = { NULL };
85 if (parseLine(line, tokens, maxCount, &tokenCount)) {
  /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/BulkDataOperations/src/
Grep.java 90 long maxCount = Long.MAX_VALUE;
100 maxCount = Long.parseLong(args[++i]);
146 .limit(maxCount)
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/BulkDataOperations/src/
Grep.java 90 long maxCount = Long.MAX_VALUE;
100 maxCount = Long.parseLong(args[++i]);
146 .limit(maxCount)

Completed in 496 milliseconds

1 2 3 4 5 6 7 8 91011>>