HomeSort by relevance Sort by last modified time
    Searched defs:maxLen (Results 1 - 21 of 21) sorted by null

  /external/chromium/third_party/icu/source/i18n/
uni2name.cpp 75 int32_t maxLen = uprv_getMaxCharNameLength();
76 if (maxLen == 0) {
82 char* buf = (char*) uprv_malloc(maxLen);
99 if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) {
name2uni.cpp 112 int32_t maxLen = uprv_getMaxCharNameLength();
113 if (maxLen == 0) {
119 ++maxLen; // allow for temporary trailing space
120 char* cbuf = (char*) uprv_malloc(maxLen);
170 // If we are too long then abort. maxLen includes
172 if (name.length() > maxLen) {
189 name.extract(0, len, cbuf, maxLen, US_INV);
225 // maxLen includes temporary trailing space, so use '>='.
226 if (name.length() >= maxLen) {
  /external/icu4c/i18n/
uni2name.cpp 75 int32_t maxLen = uprv_getMaxCharNameLength();
76 if (maxLen == 0) {
82 char* buf = (char*) uprv_malloc(maxLen);
99 if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) {
name2uni.cpp 112 int32_t maxLen = uprv_getMaxCharNameLength();
113 if (maxLen == 0) {
119 ++maxLen; // allow for temporary trailing space
120 char* cbuf = (char*) uprv_malloc(maxLen);
170 // If we are too long then abort. maxLen includes
172 if (name.length() > maxLen) {
189 name.extract(0, len, cbuf, maxLen, US_INV);
225 // maxLen includes temporary trailing space, so use '>='.
226 if (name.length() >= maxLen) {
  /dalvik/vm/jdwp/
ExpandBuf.c 33 int maxLen;
48 newBuf->maxLen = kInitialStorage;
90 if (pBuf->curLen + newCount <= pBuf->maxLen)
93 while (pBuf->curLen + newCount > pBuf->maxLen)
94 pBuf->maxLen *= 2;
96 newPtr = realloc(pBuf->storage, pBuf->maxLen);
98 LOGE("realloc(%d) failed\n", pBuf->maxLen);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
Input.java 32 public int maxLen;
45 maxLen = 1;
59 maxLen = in.readInt();
77 dest.writeInt(maxLen);
  /development/simulator/wrapsim/
DevEvent.c 183 int maxLen = _IOC_SIZE(urequest);
185 if (strLen >= maxLen) {
192 int maxLen = _IOC_SIZE(urequest);
194 if (strLen >= maxLen) {
205 int maxLen = _IOC_SIZE(urequest);
206 if (maxLen > (int) sizeof(gKeyBitMask))
207 maxLen = sizeof(gKeyBitMask);
208 memcpy(argp, gKeyBitMask, maxLen);
211 int maxLen = _IOC_SIZE(urequest);
212 memset(argp, 0xff, maxLen);
    [all...]
  /external/bzip2/
compress.c 242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr;
447 /* maxLen was changed from 20 to 17 in bzip2-1.0.3. See
483 maxLen = 0;
485 if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
488 AssertH ( !(maxLen > 17 /*20*/ ), 3004 );
491 minLen, maxLen, alphaSize );
decompress.c 110 Int32 minLen, maxLen;
334 maxLen = 0;
336 if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
344 minLen, maxLen, alphaSize
  /external/chromium/third_party/icu/source/common/
uniset.cpp 677 int32_t maxLen = forward ? limit-offset : offset-limit;
678 if (matchLen == maxLen) {
734 int32_t maxLen;
737 maxLen = limit - start;
738 if (maxLen > slen) maxLen = slen;
739 for (i = 1; i < maxLen; ++i) {
743 maxLen = start - limit;
744 if (maxLen > slen) maxLen = slen
    [all...]
uloc.c     [all...]
  /external/icu4c/common/
uniset.cpp 677 int32_t maxLen = forward ? limit-offset : offset-limit;
678 if (matchLen == maxLen) {
734 int32_t maxLen;
737 maxLen = limit - start;
738 if (maxLen > slen) maxLen = slen;
739 for (i = 1; i < maxLen; ++i) {
743 maxLen = start - limit;
744 if (maxLen > slen) maxLen = slen
    [all...]
uloc.c     [all...]
  /frameworks/base/libs/utils/
Asset.cpp 421 size_t maxLen;
438 maxLen = mLength - mOffset;
439 if (count > maxLen)
440 count = maxLen;
745 size_t maxLen;
761 maxLen = mUncompressedLen - mOffset;
762 if (count > maxLen)
763 count = maxLen;
  /packages/apps/Stk/src/com/android/stk/
StkInputActivity.java 289 int maxLen = mStkInput.maxLen;
292 maxLen)});
296 if (maxLen != minLen) {
297 lengthLimit = minLen + " - " + maxLen;
  /dalvik/tools/hprof-conv/
HprofConv.c 101 size_t maxLen;
116 newBuf->maxLen = kInitialSize;
166 if (pBuf->curLen + size > pBuf->maxLen) {
175 pBuf->maxLen = newSize;
178 assert(pBuf->curLen + size <= pBuf->maxLen);
239 assert(pBuf->curLen <= pBuf->maxLen);
252 assert(pBuf->curLen <= pBuf->maxLen);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /external/chromium/third_party/icu/source/test/perf/collationperf/
collperf.cpp 781 int maxLen = 0;
785 if (gFileLines[i].len > maxLen) maxLen = gFileLines[i].len;
789 int *accumulatedLen = new int[maxLen+1];
790 int *numKeysOfSize = new int[maxLen+1];
791 for (i=0; i<=maxLen; i++) {
805 for (i=1; i<=maxLen; i++) {
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 781 int maxLen = 0;
785 if (gFileLines[i].len > maxLen) maxLen = gFileLines[i].len;
789 int *accumulatedLen = new int[maxLen+1];
790 int *numKeysOfSize = new int[maxLen+1];
791 for (i=0; i<=maxLen; i++) {
805 for (i=1; i<=maxLen; i++) {
    [all...]
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 4326 milliseconds