Searched refs:limit (Results 1 - 25 of 1467) sorted by relevance

1234567891011>>

/external/v8/src/inspector/
H A Dtest-interface.cc12 void SetMaxAsyncTaskStacksForTest(V8Inspector* inspector, int limit) { argument
15 ->setMaxAsyncTaskStacksForTest(limit);
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
H A DLimitTest.java29 private Limit limit; field in class:LimitTest
33 limit = new Limit();
38 assertNull(limit.getMinimum());
39 assertNull(limit.getMaximum());
40 assertEquals(CounterEntity.INSTRUCTION, limit.getEntity());
41 assertEquals(CounterValue.COVEREDRATIO, limit.getValue());
46 limit.setValue(CounterValue.TOTALCOUNT.name());
47 limit.setMaximum("-1");
48 assertEquals(CounterValue.TOTALCOUNT, limit.getValue());
51 limit
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiRun.java24 * <p>The &quot;limit&quot; of the run is the position just after the
36 int limit; /* last visual position of the run +1 */ field in class:BidiRun
44 * Note that members start and limit of a run instance have different
50 * - limit is one after the last visual position of the run.
53 * - limit is one after the last logical position of the run.
63 BidiRun(int start, int limit, byte embeddingLevel) argument
66 this.limit = limit;
76 this.limit = run.limit;
[all...]
H A DDictionaryMatcher.java27 * @param limit The maximum amount of words to output. Must be less than or equal to lengths.length.
32 int[] count, int limit, int[] values);
35 int[] count, int limit) {
36 return matches(text, maxLength, lengths, count, limit, null);
31 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit, int[] values) argument
34 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit) argument
H A DReplaceable.java28 * offset and a limit offset. The range of characters thus specified
29 * includes the characters at offset start..limit-1. That is, the
30 * start offset is inclusive, and the limit offset is exclusive.
98 * &lt;= start &lt;= limit</code>.
100 * <code>start &lt;= limit &lt;= length()</code>.
110 * limit is equal to the replacement text, that replace has no
117 * &lt;= limit</code>.
118 * @param limit the ending index, exclusive; <code>start &lt;= limit
121 * to <code>limit
123 replace(int start, int limit, String text) argument
145 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
170 copy(int start, int limit, int dest) argument
[all...]
H A DReplaceableString.java67 public String substring(int start, int limit) { argument
68 return buf.substring(start, limit);
114 * &lt;= start &lt;= limit</code>.
116 * <code>start &lt;= limit &lt;= length()</code>.
130 * &lt;= limit</code>.
131 * @param limit the ending index, exclusive; <code>start &lt;= limit
134 * <code>limit - 1</code>
136 public void replace(int start, int limit, String text) { argument
137 buf.replace(start, limit, tex
152 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
172 copy(int start, int limit, int dest) argument
[all...]
H A DFunctionReplacer.java53 int limit,
57 int len = replacer.replace(text, start, limit, cursor);
58 limit = start + len;
61 limit = translit.transliterate(text, start, limit);
63 return limit - start;
51 replace(Replaceable text, int start, int limit, int[] cursor) argument
H A DUnicodeFilter.java34 int limit,
37 if (offset[0] < limit &&
42 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
52 if (incremental && offset[0] == limit) {
32 matches(Replaceable text, int[] offset, int limit, boolean incremental) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiRun.java23 * <p>The &quot;limit&quot; of the run is the position just after the
35 int limit; /* last visual position of the run +1 */ field in class:BidiRun
43 * Note that members start and limit of a run instance have different
49 * - limit is one after the last visual position of the run.
52 * - limit is one after the last logical position of the run.
62 BidiRun(int start, int limit, byte embeddingLevel) argument
65 this.limit = limit;
75 this.limit = run.limit;
[all...]
H A DDictionaryMatcher.java26 * @param limit The maximum amount of words to output. Must be less than or equal to lengths.length.
31 int[] count, int limit, int[] values);
34 int[] count, int limit) {
35 return matches(text, maxLength, lengths, count, limit, null);
30 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit, int[] values) argument
33 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit) argument
H A DReplaceable.java27 * offset and a limit offset. The range of characters thus specified
28 * includes the characters at offset start..limit-1. That is, the
29 * start offset is inclusive, and the limit offset is exclusive.
101 * &lt;= start &lt;= limit</code>.
103 * <code>start &lt;= limit &lt;= length()</code>.
114 * limit is equal to the replacement text, that replace has no
121 * &lt;= limit</code>.
122 * @param limit the ending index, exclusive; <code>start &lt;= limit
125 * to <code>limit
128 replace(int start, int limit, String text) argument
151 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
177 copy(int start, int limit, int dest) argument
[all...]
H A DReplaceableString.java71 public String substring(int start, int limit) { argument
72 return buf.substring(start, limit);
121 * &lt;= start &lt;= limit</code>.
123 * <code>start &lt;= limit &lt;= length()</code>.
138 * &lt;= limit</code>.
139 * @param limit the ending index, exclusive; <code>start &lt;= limit
142 * <code>limit - 1</code>
145 public void replace(int start, int limit, String text) { argument
146 buf.replace(start, limit, tex
162 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
183 copy(int start, int limit, int dest) argument
[all...]
/external/r8/src/main/java/com/android/tools/r8/ir/regalloc/
H A DLiveIntervalsUse.java10 private final int limit; field in class:LiveIntervalsUse
12 public LiveIntervalsUse(int position, int limit) { argument
14 this.limit = limit;
22 return limit;
27 return position + limit * 7;
36 return o.position == position && o.limit == limit;
44 return limit - o.limit;
[all...]
/external/icu/icu4c/source/tools/gentest/
H A Dgenres32.c29 incKey(char *key, char *limit) { argument
32 while(limit>key) {
33 c=*--limit;
35 *limit='1';
38 *limit='o';
53 char *limit; local
72 /* find the limit of the key string */
73 for(limit=key; *limit!=0; ++limit) {
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharArrayIterator.java25 private final int limit; field in class:UCharArrayIterator
28 public UCharArrayIterator(char[] text, int start, int limit) { argument
29 if (start < 0 || limit > text.length || start > limit) {
30 throw new IllegalArgumentException("start: " + start + " or limit: "
31 + limit + " out of range [0, "
36 this.limit = limit;
43 return pos < limit ? text[pos] : DONE;
48 return limit
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharArrayIterator.java23 private final int limit; field in class:UCharArrayIterator
26 public UCharArrayIterator(char[] text, int start, int limit) { argument
27 if (start < 0 || limit > text.length || start > limit) {
28 throw new IllegalArgumentException("start: " + start + " or limit: "
29 + limit + " out of range [0, "
34 this.limit = limit;
41 return pos < limit ? text[pos] : DONE;
46 return limit
[all...]
/external/skia/src/core/
H A DSkScaleToSides.h19 // Scale must be less than or equal to the ratio limit / (*a + *b).
21 static void AdjustRadii(double limit, double scale, SkScalar* a, SkScalar* b) { argument
27 if (*a + *b > limit) {
37 // The newMinRadius will always be smaller than limit. The largest that minRadius can be
39 // division, minRadius can be no larger than 1/2 limit + ULP. The newMinRadius can be
44 // than limit, but only by one ULP.
45 float newMaxRadius = (float)(limit - newMinRadius);
48 // sum is greater than the limit then newMaxRadius may have to be reduced twice.
51 if (newMaxRadius + newMinRadius > limit) {
53 if (newMaxRadius + newMinRadius > limit) {
[all...]
/external/autotest/client/site_tests/hardware_MemoryTotalSize/
H A Dhardware_MemoryTotalSize.py26 limit = 1.65
28 limit = 0.65
30 if gb <= limit:
31 raise error.TestFail("total system memory size < %.3f GB" % limit);
/external/python/cpython2/Tools/scripts/
H A Dfind_recursionlimit.py2 """Find the maximum recursion limit that prevents interpreter termination.
4 This script finds the maximum safe recursion limit on a particular
5 platform. If you need to change the recursion limit on your system,
6 this script will tell you a safe upper bound. To use the new limit,
18 safe limit for your system (which depends on the OS, architecture, but also
29 NB: A program that does not use __methods__ can set a higher limit.
107 limit = 1000 variable
109 check_limit(limit, "test_recurse")
110 check_limit(limit, "test_add")
111 check_limit(limit, "test_rep
117 limit = limit + 100 variable
[all...]
/external/ltp/testcases/kernel/syscalls/sched_setscheduler/
H A Dsched_setscheduler03.c72 static void l_rlimit_show(const int type, struct rlimit *limit) argument
74 SAFE_GETRLIMIT(type, limit);
76 "rlimit rlim_cur=%lu", (unsigned long)(limit->rlim_cur));
78 "rlimit rlim_max=%lu", (unsigned long)(limit->rlim_max));
81 static void l_rlimit_setup(const int type, struct rlimit *limit) argument
86 "Setting rlim_cur to %lu", (unsigned long)(limit->rlim_cur));
88 "Setting rlim_max to %lu", (unsigned long)(limit->rlim_max));
90 SAFE_SETRLIMIT(type, limit);
94 if (tmp_rlimit.rlim_cur != limit->rlim_cur)
96 (unsigned long)(limit
123 struct rlimit limit; local
[all...]
/external/freetype/src/psaux/
H A Dpsconv.h31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DFunctionReplacer.java52 int limit,
56 int len = replacer.replace(text, start, limit, cursor);
57 limit = start + len;
60 limit = translit.transliterate(text, start, limit);
62 return limit - start;
50 replace(Replaceable text, int start, int limit, int[] cursor) argument
/external/pdfium/third_party/freetype/src/psaux/
H A Dpsconv.h31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
/external/libchrome/sandbox/linux/services/
H A Dresource_limits.cc15 bool ResourceLimits::Lower(int resource, rlim_t limit) { argument
19 // Make sure we don't raise the existing limit.
20 const struct rlimit new_rlimit = {std::min(old_rlimit.rlim_cur, limit),
21 std::min(old_rlimit.rlim_max, limit)};
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRangeValueIterator.java19 * &lt;start, limit, value&gt; where
22 * <li> limit is 1 after the maximum integer that follows start, such that
23 * all integers between start and (limit - 1), inclusive, have the same
25 * <li> value is the integer value that all integers from start to (limit - 1)
30 * value(limit - 1). However value(start -1) != value(start) and
31 * value(limit) != value(start).
44 * Integer.toHexString(result.limit - 1) +
56 * Stores the start and limit of the continous result range and the
57 * common value all integers between [start, limit - 1] has.
72 public int limit; field in class:RangeValueIterator.Element
[all...]

Completed in 3187 milliseconds

1234567891011>>