HomeSort by relevance Sort by last modified time
    Searched refs:sourceLength (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 73 public ArrayIndexOutOfBoundsException(int sourceLength, int index) {
74 super("length=" + sourceLength + "; index=" + index);
81 public ArrayIndexOutOfBoundsException(int sourceLength, int offset,
83 super("length=" + sourceLength + "; regionStart=" + offset
StringIndexOutOfBoundsException.java 86 StringIndexOutOfBoundsException(int sourceLength, int index) {
87 super("length=" + sourceLength + "; index=" + index);
102 StringIndexOutOfBoundsException(int sourceLength, int offset,
104 super("length=" + sourceLength + "; regionStart=" + offset
String.java     [all...]
  /external/icu/icu4c/source/common/
ushape.cpp 635 calculateSize(const UChar *source, int32_t sourceLength,
642 destSize = sourceLength;
656 for(i=0;i<sourceLength;i++) {
657 if( ((isAlefChar(source[i]))&& (i<(sourceLength-1)) &&(source[i+1] == LAM_CHAR)) || (isTashkeelCharFE(source[i])) ) {
662 for(i=0;i<sourceLength;i++) {
663 if( ( (source[i] == LAM_CHAR) && (i<(sourceLength-1)) && (isAlefChar(source[i+1]))) || (isTashkeelCharFE(source[i])) ) {
672 for(i=0;i<sourceLength;i++) {
692 handleTashkeelWithTatweel(UChar *dest, int32_t sourceLength,
696 for(i = 0; i < sourceLength; i++){
705 return sourceLength;
    [all...]
ucnv.cpp     [all...]
  /external/icu/icu4c/source/i18n/unicode/
umsg.h 223 * @param sourceLength The length of source, or -1 if null-terminated.
235 int32_t sourceLength,
248 * @param sourceLength The length of source, or -1 if null-terminated.
260 int32_t sourceLength,
332 * @param sourceLength The length of source, or -1 if null-terminated.
346 int32_t sourceLength,
360 * @param sourceLength The length of source, or -1 if null-terminated.
374 int32_t sourceLength,
554 * @param sourceLength The length of source, or -1 if null-terminated.
564 int32_t sourceLength,
    [all...]
ucol.h 549 * @param sourceLength The length of source, or -1 if null-terminated.
562 int32_t sourceLength,
573 * @param sourceLength The length of source, or -1 if null-terminated.
588 int32_t sourceLength,
598 * @param sourceLength The length of source, or -1 if null-terminated.
609 const UChar *source, int32_t sourceLength,
617 * @param sourceLength The length of source, or -1 if null-terminated.
628 const UChar *source, int32_t sourceLength,
636 * @param sourceLength The length of source, or -1 if null-terminated.
647 const UChar *source, int32_t sourceLength,
    [all...]
coll.h 413 * @param sourceLength the length of the source string array. If this value
423 virtual EComparisonResult compare(const char16_t* source, int32_t sourceLength,
432 * @param sourceLength the length of the source string array. If this value
443 virtual UCollationResult compare(const char16_t* source, int32_t sourceLength,
513 * @param sourceLength length of the collation key
521 int32_t sourceLength,
    [all...]
tblcoll.h 300 * @param sourceLength the length of the source string array. If this value
311 virtual UCollationResult compare(const char16_t* source, int32_t sourceLength,
373 * @param sourceLength the length of the source string.
381 int32_t sourceLength,
640 * @param sourceLength length of string to be processed. If -1, the string
649 virtual int32_t getSortKey(const char16_t *source, int32_t sourceLength,
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetASCII.java 65 int sourceLength = source.limit() - oldSource;
72 int limit = ((sourceLength < targetLength) ? sourceLength : targetLength)
82 if (sourceLength <= targetLength) {
83 source.position(oldSource + sourceLength);
84 target.position(oldTarget + sourceLength);
223 int sourceLength = source.limit() - oldSource;
230 int limit = ((sourceLength < targetLength) ? sourceLength : targetLength)
240 if (sourceLength <= targetLength)
    [all...]
  /external/icu/icu4c/source/i18n/
ucol.cpp 193 int32_t sourceLength,
200 ((sourceLength==-1 && source!=NULL) ? u_strlen(source) : sourceLength));
204 getSortKey(source, sourceLength, result, resultLength);
241 int32_t sourceLength,
265 && (source[sourceIndex] != 0 || sourceIndex < sourceLength));
267 if((source[sourceIndex] == 0 || sourceIndex == sourceLength)
442 int32_t sourceLength,
449 UTRACE_DATA2(UTRACE_VERBOSE, "source string = %vh ", source, sourceLength);
455 compare(source, sourceLength, target, targetLength, status)
    [all...]
umsg.cpp 150 int32_t sourceLength,
160 u_vparseMessage(locale,pattern,patternLength,source,sourceLength,ap,status);
170 int32_t sourceLength,
177 umsg_vparse(fmt,source,sourceLength,&count,ap,status);
186 int32_t sourceLength,
198 u_vparseMessageWithError(locale,pattern,patternLength,source,sourceLength,ap,error,status);
207 int32_t sourceLength,
215 umsg_vparse(fmt,source,sourceLength,&count,ap,status);
489 int32_t sourceLength,
502 umsg_vparse(fmt,source,sourceLength,count,ap,status)
    [all...]
coll.cpp 503 Collator::EComparisonResult Collator::compare(const UChar* source, int32_t sourceLength,
508 return (EComparisonResult)compare(source, sourceLength, target, targetLength, ec);
646 int32_t sourceLength,
653 return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ArabicShaping.java 71 * @param sourceLength The length of the range of text to convert
88 public int shape(char[] source, int sourceStart, int sourceLength,
93 if (sourceStart < 0 || sourceLength < 0 || sourceStart + sourceLength > source.length) {
95 ") or length (" + sourceLength +
132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ArabicShaping.java 70 * @param sourceLength The length of the range of text to convert
88 public int shape(char[] source, int sourceStart, int sourceLength,
93 if (sourceStart < 0 || sourceLength < 0 || sourceStart + sourceLength > source.length) {
95 ") or length (" + sourceLength +
132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize);
    [all...]
  /external/icu/icu4c/source/common/unicode/
ushape.h 76 * @param sourceLength The number of UChars in <code>source</code>.
102 u_shapeArabic(const UChar *source, int32_t sourceLength,
ucnv.h     [all...]
unorm.h 201 * @param sourceLength The length of source, or -1 if NUL-terminated.
214 unorm_normalize(const UChar *source, int32_t sourceLength,
231 * @param sourcelength length of source to test, or -1 if NUL-terminated
240 unorm_quickCheck(const UChar *source, int32_t sourcelength,
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
ReportLog.java 80 int sourceLength = source.length();
81 if (sourceLength > MAX_SOURCE_LENGTH) {
83 mSource = source.substring(sourceLength - MAX_SOURCE_LENGTH);
  /external/v8/src/js/
typedarray.js 325 function TypedArraySetFromArrayLike(target, source, sourceLength, offset) {
327 for (var i = 0; i < sourceLength; i++) {
332 for (var i = 0; i < sourceLength; i++) {
341 var sourceLength = %_TypedArrayGetLength(source);
351 leftIndex < sourceLength && targetPtr <= sourcePtr;
365 target.byteOffset + (offset + sourceLength - 1) * targetElementSize;
369 source.byteOffset + sourceLength * sourceElementSize;
370 for(var rightIndex = sourceLength - 1;
  /external/deqp/modules/gles2/functional/
es2fShaderApiTests.cpp 562 GLint sourceLength = 0;
563 glGetShaderiv(shader.getShader(), GL_SHADER_SOURCE_LENGTH, &sourceLength);
566 return sourceLength;
571 const GLint sourceLength = getSourceLength(shader);
572 std::vector<char> sourceBuffer (sourceLength + 1);
es2fShaderStateQueryTests.cpp 663 StateQueryMemoryWriteGuard<GLint> sourceLength;
664 glGetShaderiv(shader, GL_SHADER_SOURCE_LENGTH, &sourceLength);
666 sourceLength.verifyValidity(m_testCtx);
669 if (sourceLength != referenceLength)
671 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected length " << referenceLength << "; got " << sourceLength << TestLog::EndMessage;
683 StateQueryMemoryWriteGuard<GLint> sourceLength;
684 glGetShaderiv(shader, GL_SHADER_SOURCE_LENGTH, &sourceLength);
686 sourceLength.verifyValidity(m_testCtx);
689 if (sourceLength != referenceLength)
691 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected length " << referenceLength << "; got " << sourceLength << TestLog::EndMessage
    [all...]
  /external/icu/icu4c/source/test/intltest/
apicoll.cpp     [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeSsl.java 528 int writeDirectByteBuffer(long sourceAddress, int sourceLength) throws IOException {
532 ssl, this, sourceAddress, sourceLength, handshakeCallbacks);
  /external/deqp/modules/gles3/functional/
es3fShaderApiTests.cpp 619 GLint sourceLength = 0;
620 glGetShaderiv(shader.getShader(), GL_SHADER_SOURCE_LENGTH, &sourceLength);
623 return sourceLength;
628 const GLint sourceLength = getSourceLength(shader);
629 std::vector<char> sourceBuffer (sourceLength + 1);
    [all...]

Completed in 961 milliseconds

1 2 3 4