HomeSort by relevance Sort by last modified time
    Searched refs:limit (Results 151 - 175 of 5609) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4c/source/i18n/
fphdlimp.h 27 virtual void addAttribute(int32_t id, int32_t start, int32_t limit);
42 virtual void addAttribute(int32_t id, int32_t start, int32_t limit);
66 virtual void addAttribute(int32_t id, int32_t start, int32_t limit);
name2uni.cpp 118 offsets.start = offsets.limit;
126 offsets.start = offsets.limit;
134 int32_t limit = offsets.limit; local
143 while (cursor < limit) {
151 ICU_Utility::parsePattern(openPat, text, cursor, limit);
152 if (i >= 0 && i < limit) {
165 // loop. If the limit is reached, exit the loop.
212 limit -= delta;
247 offsets.contextLimit += limit - offsets.limit
    [all...]
funcrepl.cpp 82 int32_t limit,
87 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
88 limit = start + len;
91 limit = translit->transliterate(text, start, limit);
93 return limit - start;
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RemoveTransliterator.java 51 text.replace(index.start, index.limit, "");
52 int len = index.limit - index.start;
54 index.limit -= len;
StringMatcher.java 43 * Limit offset, in the match text, of the <em>rightmost</em>
83 * @param limit index after the last character of theString to be
92 int limit,
95 this(theString.substring(start, limit), segmentNum, theData);
104 int limit,
112 if (limit < cursor[0]) {
118 if (cursor[0] > limit &&
126 subm.matches(text, cursor, limit, incremental);
133 // forward start, limit, and only if a prior match does not
141 if (incremental && cursor[0] == limit) {
    [all...]
UnescapeTransliterator.java 151 int limit = pos.limit; local
155 while (start < limit) {
174 if (s >= limit) {
198 if (s >= limit) {
221 if (s >= limit) {
240 limit -= s - start - str.length();
253 if (start < limit) {
258 pos.contextLimit += limit - pos.limit;
    [all...]
NormalizationTransliterator.java 86 // start and limit of the input range
88 int limit = offsets.limit; local
89 if(start >= limit) {
96 * In incremental mode, a chunk that ends with offsets.limit
114 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
115 if(start == limit && isIncremental && !norm2.hasBoundaryAfter(c)) {
116 // stop in incremental mode when we reach the input limit
130 limit += delta;
132 } while(start < limit);
    [all...]
AnyTransliterator.java 82 int allLimit = pos.limit;
89 if (it.limit <= allStart) continue;
98 pos.start = it.limit;
102 // If the run end is before the transliteration limit, do
105 boolean incremental = isIncremental && (it.limit >= allLimit);
108 pos.limit = Math.min(allLimit, it.limit);
109 int limit = pos.limit; local
111 int delta = pos.limit - limit
330 public int limit; field in class:AnyTransliterator.ScriptRunIterator
    [all...]
  /external/skia/src/core/
SkGlyphCache_Globals.h 65 int setCacheCountLimit(int limit);
68 size_t setCacheSizeLimit(size_t limit);
71 int setCachePointSizeLimit(int limit);
  /frameworks/support/room/integration-tests/testapp/src/main/java/android/arch/persistence/room/integration/testapp/database/
CustomerDao.java 62 @Query("SELECT * from customer ORDER BY mLastName ASC LIMIT :limit")
63 List<Customer> customerNameInitial(int limit);
65 @Query("SELECT * from customer WHERE mLastName < :key ORDER BY mLastName DESC LIMIT :limit")
66 List<Customer> customerNameLoadAfter(String key, int limit);
71 @Query("SELECT * from customer WHERE mLastName > :key ORDER BY mLastName ASC LIMIT :limit")
72 List<Customer> customerNameLoadBefore(String key, int limit);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieTest.java 50 SetRange(int start, int limit, int value, boolean overwrite)
53 this.limit = limit;
58 int start, limit; field in class:TrieTest.SetRange
65 * value is set from the previous boundary's limit to before
66 * this boundary's limit
70 CheckRange(int limit, int value)
72 this.limit = limit;
76 int limit; field in class:TrieTest.CheckRange
91 int limit = start + 0x400; local
149 int limit = s.length(); local
204 int limit = setRanges[i].limit; local
222 int limit = checkRanges[i].limit; local
243 int limit = checkRanges[i].limit; local
267 int limit = checkRanges[i].limit; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieTest.java 49 SetRange(int start, int limit, int value, boolean overwrite)
52 this.limit = limit;
57 int start, limit; field in class:TrieTest.SetRange
64 * value is set from the previous boundary's limit to before
65 * this boundary's limit
69 CheckRange(int limit, int value)
71 this.limit = limit;
75 int limit; field in class:TrieTest.CheckRange
90 int limit = start + 0x400; local
148 int limit = s.length(); local
203 int limit = setRanges[i].limit; local
221 int limit = checkRanges[i].limit; local
242 int limit = checkRanges[i].limit; local
266 int limit = checkRanges[i].limit; local
    [all...]
  /external/valgrind/none/tests/x86-linux/
seg_override.c 46 unsigned int limit = ent->LimitLow | (ent->HighWord.Bits.LimitHi << 16);
47 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff;
48 return limit;
76 unsigned int limit; member in struct:modify_ldt_ldt_s
99 ldt_entry.limit = 10;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiLine.java 117 static Bidi setLine(Bidi paraBidi, int start, int limit) {
129 lineBidi.resultLength = limit - start;
140 for (j = start; j < limit; j++) {
170 } else if (paraBidi.trailingWSStart < limit) {
292 logicalLimit = iRun.start + iRun.limit - visualStart;
297 visualStart = iRun.limit;
300 newRun.limit = logicalLimit;
308 int limit; local
312 limit = start +
313 bidi.runs[runIndex].limit
493 int length = bidi.length, limit; local
675 int start, limit, sumOfSosEos; local
744 int start, end, limit, temp; local
869 int i, j, start, limit, length, insertRemove; local
989 int begin = 0, limit = runCount; local
    [all...]
NormalizationTransliterator.java 87 // start and limit of the input range
89 int limit = offsets.limit; local
90 if(start >= limit) {
97 * In incremental mode, a chunk that ends with offsets.limit
115 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
116 if(start == limit && isIncremental && !norm2.hasBoundaryAfter(c)) {
117 // stop in incremental mode when we reach the input limit
131 limit += delta;
133 } while(start < limit);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiLine.java 116 static Bidi setLine(Bidi paraBidi, int start, int limit) {
128 lineBidi.resultLength = limit - start;
139 for (j = start; j < limit; j++) {
169 } else if (paraBidi.trailingWSStart < limit) {
291 logicalLimit = iRun.start + iRun.limit - visualStart;
296 visualStart = iRun.limit;
299 newRun.limit = logicalLimit;
307 int limit; local
311 limit = start +
312 bidi.runs[runIndex].limit
492 int length = bidi.length, limit; local
674 int start, limit, sumOfSosEos; local
743 int start, end, limit, temp; local
868 int i, j, start, limit, length, insertRemove; local
988 int begin = 0, limit = runCount; local
    [all...]
  /external/icu/icu4c/source/common/
patternprops.cpp 182 int32_t limit=length; local
183 while(start<limit && isWhiteSpace(s[start])) {
186 if(start<limit) {
187 // There is non-white space at start; we will not move limit below that,
188 // so we need not test start<limit in the loop.
189 while(isWhiteSpace(s[limit-1])) {
190 --limit;
193 length=limit-start;
202 const UChar *limit=s+length; local
207 } while(s<limit);
    [all...]
util_props.cpp 28 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) {
34 if (p < limit && rule.charAt(p) == 48 /*0*/) {
35 if (p+1 < limit && (rule.charAt(p+1) == 0x78 /*x*/ || rule.charAt(p+1) == 0x58 /*X*/)) {
46 while (p < limit) {
88 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit,
98 if (pos >= limit) {
112 parsedInts[intCount++] = parseInteger(rule, p, limit);
120 if (pos >= limit) {
  /external/okhttp/okio/okio/src/main/java/okio/
DeflaterSink.java 64 int toDeflate = (int) Math.min(byteCount, head.limit - head.pos);
73 if (head.pos == head.limit) {
95 ? deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit, Deflater.SYNC_FLUSH)
96 : deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit);
99 s.limit += deflated;
103 if (s.pos == s.limit) {
  /external/v8/src/base/
bits.cc 61 int64_t limit = std::numeric_limits<int64_t>::max();
63 limit = -limit;
64 return value.ValueOrDefault(limit);
84 int32_t limit = std::numeric_limits<int32_t>::max(); local
85 *val = rv.ValueOrDefault(limit);
92 int64_t limit = std::numeric_limits<int64_t>::max(); local
93 *val = rv.ValueOrDefault(limit);
  /system/libhidl/base/
TaskRunner.cpp 27 void TaskRunner::start(size_t limit) {
28 mQueue = std::make_shared<SynchronizedQueue<Task>>(limit);
  /external/valgrind/none/tests/amd64/
x87trigOOR.c 126 Double limit = 9223372036854775808.0; // 2^63 local
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( name, fn, limit * 1.000001 );
147 try( name, fn, limit * 1.100000 );
150 try( name, fn, -limit * 0.900000 );
151 try( name, fn, -limit * 0.999999 );
152 try( name, fn, -limit * 1.000000 );
153 try( name, fn, -limit * 1.000001 )
    [all...]
  /external/valgrind/none/tests/x86/
x87trigOOR.c 126 Double limit = 9223372036854775808.0; // 2^63 local
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( name, fn, limit * 1.000001 );
147 try( name, fn, limit * 1.100000 );
150 try( name, fn, -limit * 0.900000 );
151 try( name, fn, -limit * 0.999999 );
152 try( name, fn, -limit * 1.000000 );
153 try( name, fn, -limit * 1.000001 )
    [all...]
  /external/pdfium/third_party/freetype/src/type1/
t1parse.c 233 parser->root.limit = parser->root.cursor + parser->base_len;
336 FT_Byte* limit = cur + parser->base_len; local
345 cur + 9 < limit ) /* 9 = 5 letters for `eexec' + */
355 if ( cur >= limit )
368 /* set limit to `eexec' + whitespace + 4 characters */
369 parser->root.limit = cur + 10;
372 limit = parser->root.limit;
374 while ( cur < limit )
377 cur + 5 < limit )
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strncmp.S 42 #define limit x2 define
68 cbz limit, .Lret0
76 sub limit_wd, limit, #1 /* limit != 0, so no underflow. */
97 /* Not reached the limit, must have found the end or a diff. */
100 /* Limit % 8 == 0 => all bytes significant. */
101 ands limit, limit, #7
104 lsl limit, limit, #3 /* Bits -> bytes. *
    [all...]

Completed in 1341 milliseconds

1 2 3 4 5 67 8 91011>>