/external/icu/icu4c/source/layout/ |
CanonShaping.h | 28 static void sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit);
|
/external/icu/icu4c/source/samples/layout/ |
ScriptCompositeFontInstance.cpp | 63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const 69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) { 80 *offset = limit;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
BidiWriter.java | 93 private static String doWriteForward(char[] text, int start, int limit, 96 return doWriteForward(new String(text, start, limit - start), options); 231 static String doWriteReverse(char[] text, int start, int limit, int options) 233 return writeReverse(new String(text, start, limit - start), options); 288 bidiRun.limit, 292 bidiRun.limit, options)); 325 bidiRun.start, bidiRun.limit, 329 dirProps[bidiRun.limit - 1] != Bidi.L) { 345 bidiRun.limit - 1)) { 359 bidiRun.limit, options)) [all...] |
ScientificNumberFormatter.java | 141 int limit, 145 for (int i = start; i < limit; i++) { 185 int limit = iterator.getRunLimit(NumberFormat.Field.EXPONENT); local 189 limit, 191 copyFromOffset = limit; 234 int limit = iterator.getRunLimit(NumberFormat.Field.EXPONENT_SIGN); local 253 copyFromOffset = limit; 257 int limit = iterator.getRunLimit(NumberFormat.Field.EXPONENT); local 263 copyAsSuperscript(iterator, start, limit, result); 264 copyFromOffset = limit; [all...] |
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
CaseFoldTransliterator.java | 62 if(offsets.start >= offsets.limit) { 74 iter.setLimit(offsets.limit); 80 // the case mapping function tried to look beyond the context limit 100 offsets.limit += delta; 104 offsets.start = offsets.limit;
|
/external/libvpx/libvpx/ |
vpxenc.h | 45 int limit; member in struct:VpxEncoderConfig
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteQueryBuilder.java | 197 * @param limit Limits the number of rows returned by the query, 198 * formatted as LIMIT clause. Passing null denotes no LIMIT clause. 203 String groupBy, String having, String orderBy, String limit) { 208 if (!TextUtils.isEmpty(limit) && !sLimitPattern.matcher(limit).matches()) { 209 throw new IllegalArgumentException("invalid LIMIT clauses:" + limit); 229 appendClause(query, " LIMIT ", limit); [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
vpxenc.h | 37 int limit; member in struct:VpxEncoderConfig
|
/packages/apps/Camera2/src/com/android/camera/processing/memory/ |
ByteBufferDirectPool.java | 39 byteBuffer.limit(byteBuffer.capacity());
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
ListParams.java | 29 private static final String LIMIT_KEY = "limit"; 41 public ListParams(int limit, boolean useNetwork) { 42 mLimit = limit; 115 final int limit = json.getInt(LIMIT_KEY); local 117 return new ListParams(limit, useNetwork);
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/ |
farcall-group3.s | 3 @ when one contribution size exceeds the limit.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1InputStream.java | 21 private final int limit; field in class:ASN1InputStream 59 * Create an ASN1InputStream where no DER object will be longer than limit. 62 * @param limit maximum size of a DER encoded object. 66 int limit) 68 this(input, limit, false); 72 * Create an ASN1InputStream where no DER object will be longer than limit, and constructed 86 * Create an ASN1InputStream where no DER object will be longer than limit, and constructed 90 * @param limit maximum size of a DER encoded object. 95 int limit, 99 this.limit = limit [all...] |
/external/freetype/src/psnames/ |
pstables.h | [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
ScientificNumberFormatter.java | 137 int limit, 141 for (int i = start; i < limit; i++) { 181 int limit = iterator.getRunLimit(NumberFormat.Field.EXPONENT); local 185 limit, 187 copyFromOffset = limit; 230 int limit = iterator.getRunLimit(NumberFormat.Field.EXPONENT_SIGN); local 249 copyFromOffset = limit; 253 int limit = iterator.getRunLimit(NumberFormat.Field.EXPONENT); local 259 copyAsSuperscript(iterator, start, limit, result); 260 copyFromOffset = limit; [all...] |
/external/icu/icu4c/source/common/ |
util.h | 69 * <= limit</code>. 70 * @param limit the ending index, exclusive; <code>start <= limit 77 // int32_t start, int32_t limit, 96 * given a range defined as [start, limit), the call 97 * skipWhitespace(text, start, limit) will advance start past leading 98 * whitespace, whereas the call skipWhitespace(text, limit, start), 99 * will back up limit past trailing whitespace. 101 * @param pos either the start or limit of a range of 'text', to skip 103 * @param stop either the limit or start of a range of 'text', to ski [all...] |
/external/icu/icu4c/source/i18n/ |
remtrans.cpp | 62 text.handleReplaceBetween(index.start, index.limit, empty); 63 int32_t len = index.limit - index.start; 65 index.limit -= len;
|
strmatch.cpp | 27 int32_t limit, 35 theString.extractBetween(start, limit, pattern); 90 int32_t limit, 94 if (limit < cursor) { 100 if (cursor > limit && 108 subm->matches(text, cursor, limit, incremental); 115 // forward start, limit, and only if a prior match does not 123 if (incremental && cursor == limit) { 124 // We've reached the context limit without a mismatch and 131 // Don't need the cursor < limit check i [all...] |
strmatch.h | 51 * @param limit exclusive end index of text to be replaced; 60 int32_t limit, 99 * matching. On output, the limit of the matched text. The 104 * @param limit the limit index of text to be matched. Greater 107 * considered for matching will be text.charAt(limit-1) in the 108 * forward direction or text.charAt(limit+1) in the backward 111 * be inserted at limit and check for partial matching. Otherwise 119 int32_t limit, 134 * & 0xFF == v, at offset, in the forward direction (with limit > [all...] |
unesctrn.cpp | 175 int32_t limit = pos.limit; local 178 while (start < limit) { 197 if (s >= limit) { 221 if (s >= limit) { 244 if (s >= limit) { 263 limit -= s - start - str.length(); 276 if (start < limit) { 282 pos.contextLimit += limit - pos.limit; [all...] |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetASCII.java | 62 int sourceLength = source.limit() - oldSource; 67 int targetLength = target.limit() - oldTarget; 69 int limit = ((sourceLength < targetLength) ? sourceLength : targetLength) local 77 cr = decodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit); 109 byte[] sourceArray, char[] targetArray, int oldSource, int offset, int limit) { 116 for (i = oldSource; i < limit && (((ch = (sourceArray[i] & 0xff)) & 0x80) == 0); i++) 218 int sourceLength = source.limit() - oldSource; 223 int targetLength = target.limit() - oldTarget; 225 int limit = ((sourceLength < targetLength) ? sourceLength : targetLength) local 233 cr = encodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit, flush) [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/ |
Rule.java | 29 private List<Limit> limits; 39 this.limits = new ArrayList<Limit>(); 93 * @return list of {@link Limit}s configured for this rule 95 public List<Limit> getLimits() { 101 * list of {@link Limit}s configured for this rule 103 public void setLimits(final List<Limit> limits) { 108 * Creates and adds a new {@link Limit}. 110 * @return creates {@link Limit} 112 public Limit createLimit() { 113 final Limit limit = new Limit() local [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
loopfilter_neon.c | 53 const uint8_t *limit, 55 vpx_lpf_vertical_16_neon(s, p, blimit, limit, thresh); 56 vpx_lpf_vertical_16_neon(s + 8 * p, p, blimit, limit, thresh);
|
/external/lzma/C/ |
Bra86.c | 22 const Byte *limit = data + size;
local 23 for (; p < limit; p++)
30 if (p >= limit)
|
/external/pdfium/third_party/freetype/src/psnames/ |
pstables.h | [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessageLite.java | 242 private int limit; field in class:AbstractMessageLite.Builder.LimitedInputStream 244 LimitedInputStream(InputStream in, int limit) { 246 this.limit = limit; 251 return Math.min(super.available(), limit); 256 if (limit <= 0) { 261 --limit; 269 if (limit <= 0) { 272 len = Math.min(len, limit); 275 limit -= result [all...] |