Home
last modified time | relevance | path

Searched refs:maxCount (Results 1 – 25 of 114) sorted by relevance

12345

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DQuantifier.java18 private int maxCount; field in Quantifier
32 maxCount = theMaxCount; in Quantifier()
44 while (count < maxCount) { in matches()
77 if (maxCount == 1) { in toPattern()
79 } else if (maxCount == MAX) { in toPattern()
83 } else if (minCount == 1 && maxCount == MAX) { in toPattern()
89 if (maxCount != MAX) { in toPattern()
90 result.append(Utility.hex(maxCount,1)); in toPattern()
111 if (maxCount > 0) { in addMatchSetTo()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DQuantifier.java19 private int maxCount; field in Quantifier
33 maxCount = theMaxCount; in Quantifier()
45 while (count < maxCount) { in matches()
78 if (maxCount == 1) { in toPattern()
80 } else if (maxCount == MAX) { in toPattern()
84 } else if (minCount == 1 && maxCount == MAX) { in toPattern()
90 if (maxCount != MAX) { in toPattern()
91 result.append(Utility.hex(maxCount,1)); in toPattern()
112 if (maxCount > 0) { in addMatchSetTo()
/external/icu/icu4c/source/i18n/
Dquant.cpp31 this->maxCount = _maxCount; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
39 maxCount(o.maxCount) in Quantifier()
71 while (count < maxCount) { in matches()
105 if (maxCount == 1) { in toPattern()
107 } else if (maxCount == MAX) { in toPattern()
111 } else if (minCount == 1 && maxCount == MAX) { in toPattern()
117 if (maxCount != MAX) { in toPattern()
118 ICU_Utility::appendNumber(result, maxCount); in toPattern()
135 if (maxCount > 0) { in addMatchSetTo()
Dquant.h31 uint32_t minCount, uint32_t maxCount);
119 uint32_t maxCount; variable
Drematch.cpp3478 int32_t maxCount = (int32_t)pat[instrOperandLoc+2]; in MatchAt() local
3480 U_ASSERT(maxCount>=minCount || maxCount==-1); in MatchAt()
3486 if (maxCount == -1) { in MatchAt()
3488 } else if (maxCount == 0) { in MatchAt()
3501 int32_t maxCount = (int32_t)pat[opValue+3]; in MatchAt() local
3503 if ((uint64_t)*pCounter >= (uint32_t)maxCount && maxCount != -1) { in MatchAt()
3504 U_ASSERT(*pCounter == maxCount); in MatchAt()
3508 if (maxCount == -1) { in MatchAt()
3543 int32_t maxCount = (int32_t)pat[instrOperandLoc+2]; in MatchAt() local
3545 U_ASSERT(maxCount>=minCount || maxCount==-1); in MatchAt()
[all …]
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DDecoderCountersUtil.java52 int maxCount) { in assertTotalBufferCount() argument
62 + maxCount in assertTotalBufferCount()
64 .that(minCount <= actual && actual <= maxCount) in assertTotalBufferCount()
102 String name, DecoderCounters counters, int minCount, int maxCount) { in assertVideoFrameProcessingOffsetSampleCount() argument
112 + maxCount in assertVideoFrameProcessingOffsetSampleCount()
114 .that(minCount <= actual && actual <= maxCount) in assertVideoFrameProcessingOffsetSampleCount()
/external/easymock/src/org/easymock/
DMockControl.java345 public void setVoidCallable(int minCount, int maxCount) { in setVoidCallable() argument
348 .times(minCount, maxCount); in setVoidCallable()
376 public void setThrowable(Throwable throwable, int minCount, int maxCount) { in setThrowable() argument
379 .andThrow(throwable).times(minCount, maxCount); in setThrowable()
405 public void setReturnValue(Object value, int minCount, int maxCount) { in setReturnValue() argument
408 .andReturn(value).times(minCount, maxCount); in setReturnValue()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/ClockTimer/
DACT_spt.c241 UINT32 maxCount, // IN: maximum allowed return values in ActGetCapabilityData() argument
252 if(maxCount > MAX_ACT_DATA) in ActGetCapabilityData()
253 maxCount = MAX_ACT_DATA; in ActGetCapabilityData()
258 if(actList->count < maxCount) in ActGetCapabilityData()
/external/autotest/frontend/client/src/autotest/common/table/
DArrayDataSource.java25 public void getPage(Integer start, Integer maxCount, SortSpec[] sortOn, in getPage() argument
32 int maxCountInt = maxCount != null ? maxCount.intValue() : data.size(); in getPage()
DRpcDataSource.java26 public void getPage(Integer start, Integer maxCount, SortSpec[] sortOn, in getPage() argument
32 if (maxCount != null) { in getPage()
33 pageParams.put("query_limit", new JSONNumber(maxCount.intValue())); in getPage()
DDataSource.java72 public void getPage(Integer start, Integer maxCount, SortSpec[] sortOn, in getPage() argument
93 public abstract void getPage(Integer start, Integer maxCount, SortSpec[] sortOn, in getPage() argument
/external/icu/libicu/cts_headers/
Dquant.h31 uint32_t minCount, uint32_t maxCount);
119 uint32_t maxCount; variable
/external/cldr/tools/java/org/unicode/cldr/util/
DPick.java125 static public Pick repeat(int minCount, int maxCount, int[] itemWeights, Pick item) { in repeat() argument
126 return new Repeat(minCount, maxCount, itemWeights, item); in repeat()
282 private Repeat(int minCount, int maxCount, int[] itemWeights, Pick item) { in Repeat() argument
284 weightedIndex = new WeightedIndex(minCount).add(maxCount - minCount + 1, itemWeights); in Repeat()
707 public WeightedIndex add(int maxCount, int[] newWeights) { in add() argument
710 if (maxCount < newWeights.length) maxCount = newWeights.length; in add()
711 weights = realloc(weights, weights.length + maxCount); in add()
714 for (int i = oldLen + newWeights.length; i < maxCount; ++i) { in add()
/external/OpenCL-CTS/test_conformance/multiple_device_context/
Dtest_multiple_contexts.cpp412 int test_context_multiple_contexts_same_device(cl_device_id deviceID, size_t maxCount, size_t minCo… in test_context_multiple_contexts_same_device() argument
420 for( i = 0; i < maxCount; i++ ) in test_context_multiple_contexts_same_device()
450 if( i == maxCount ) in test_context_multiple_contexts_same_device()
453 log_info( "Successfully created %lu contexts out of %lu\n", i, maxCount ); in test_context_multiple_contexts_same_device()
456 maxCount = i; in test_context_multiple_contexts_same_device()
473 for( i = 0; i < maxCount; i++ ) in test_context_multiple_contexts_same_device()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DMessageDeframer.java445 private long maxCount; field in MessageDeframer.SizeEnforcingInputStream
507 if (count > maxCount) { in reportCount()
508 statsTraceCtx.inboundUncompressedSize(count - maxCount); in reportCount()
509 maxCount = count; in reportCount()
/external/lzma/C/
DThreads.c69 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount) in Semaphore_Create() argument
71 *p = CreateSemaphore(NULL, (LONG)initCount, (LONG)maxCount, NULL); in Semaphore_Create()
/external/skqp/src/core/
DSkLRUCache.h33 explicit SkLRUCache(int maxCount) in SkLRUCache() argument
34 : fMaxCount(maxCount) {} in SkLRUCache()
/external/skia/src/core/
DSkLRUCache.h33 explicit SkLRUCache(int maxCount) in SkLRUCache() argument
34 : fMaxCount(maxCount) {} in SkLRUCache()
/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/
DCommon.cpp77 void CsvSplit::Set(const StrRange& line, size_t maxCount) in Set() argument
79 assert(maxCount <= RANGE_COUNT_MAX); in Set()
84 while(charIndex < strLen && rangeIndex < maxCount) in Set()
87 while(charIndex < strLen && (rangeIndex + 1 == maxCount || m_Line.beg[charIndex] != ',')) in Set()
/external/lzma/CPP/Windows/
DSynchronization.h134 WRes Create(UInt32 initiallyCount, UInt32 maxCount) in Create() argument
136 return Semaphore_Create(&_object, initiallyCount, maxCount); in Create()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DACT_spt_fp.h89 UINT32 maxCount, // IN: maximum allowed return values
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
DMediaDataBox.java86 long maxCount = (64 * 1024 * 1024) - (32 * 1024); in transfer() local
92 offset += from.transferTo(position + offset, Math.min(maxCount, count - offset), to); in transfer()
/external/cldr/tools/java/org/unicode/cldr/draft/
DXLikelySubtags.java495 int maxCount = Integer.MAX_VALUE; in main() local
497 int counter = maxCount; in main()
510 counter = maxCount; in main()
526 counter = maxCount; in main()
539 counter = maxCount; in main()
553 counter = maxCount; in main()
/external/lzma/CPP/Windows/Control/
DDialog.h42 UINT GetItemText(int itemID, LPTSTR string, int maxCount) in GetItemText() argument
43 { return GetDlgItemText(_window, itemID, string, maxCount); } in GetItemText()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
DCryptEccMain.c224 UINT32 maxCount, // IN: count of returned curves in CryptCapGetECCCurve() argument
237 if(maxCount > MAX_ECC_CURVES) maxCount = MAX_ECC_CURVES; in CryptCapGetECCCurve()
246 if(curveList->count < maxCount) in CryptCapGetECCCurve()

12345