/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 | 85 public StringIndexOutOfBoundsException(int sourceLength, int index) { 86 super("length=" + sourceLength + "; index=" + index); 101 public StringIndexOutOfBoundsException(int sourceLength, int offset, 103 super("length=" + sourceLength + "; regionStart=" + offset
|
/external/icu/icu4c/source/common/ |
ushape.cpp | 633 calculateSize(const UChar *source, int32_t sourceLength, 640 destSize = sourceLength; 654 for(i=0;i<sourceLength;i++) { 655 if( ((isAlefChar(source[i]))&& (i<(sourceLength-1)) &&(source[i+1] == LAM_CHAR)) || (isTashkeelCharFE(source[i])) ) { 660 for(i=0;i<sourceLength;i++) { 661 if( ( (source[i] == LAM_CHAR) && (i<(sourceLength-1)) && (isAlefChar(source[i+1]))) || (isTashkeelCharFE(source[i])) ) { 670 for(i=0;i<sourceLength;i++) { 690 handleTashkeelWithTatweel(UChar *dest, int32_t sourceLength, 694 for(i = 0; i < sourceLength; i++){ 703 return sourceLength; [all...] |
ucnv.c | [all...] |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetASCII.java | 62 int sourceLength = source.limit() - oldSource; 69 int limit = ((sourceLength < targetLength) ? sourceLength : targetLength) 79 if (sourceLength <= targetLength) { 80 source.position(oldSource + sourceLength); 81 target.position(oldTarget + sourceLength); 218 int sourceLength = source.limit() - oldSource; 225 int limit = ((sourceLength < targetLength) ? sourceLength : targetLength) 235 if (sourceLength <= targetLength) [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
umsg.h | 221 * @param sourceLength The length of source, or -1 if null-terminated. 233 int32_t sourceLength, 246 * @param sourceLength The length of source, or -1 if null-terminated. 258 int32_t sourceLength, 330 * @param sourceLength The length of source, or -1 if null-terminated. 344 int32_t sourceLength, 358 * @param sourceLength The length of source, or -1 if null-terminated. 372 int32_t sourceLength, 552 * @param sourceLength The length of source, or -1 if null-terminated. 562 int32_t sourceLength, [all...] |
ucol.h | 538 * @param sourceLength The length of source, or -1 if null-terminated. 551 int32_t sourceLength, 562 * @param sourceLength The length of source, or -1 if null-terminated. 577 int32_t sourceLength, 587 * @param sourceLength The length of source, or -1 if null-terminated. 598 const UChar *source, int32_t sourceLength, 606 * @param sourceLength The length of source, or -1 if null-terminated. 617 const UChar *source, int32_t sourceLength, 625 * @param sourceLength The length of source, or -1 if null-terminated. 636 const UChar *source, int32_t sourceLength, [all...] |
coll.h | 408 * @param sourceLength the length of the source string array. If this value 418 virtual EComparisonResult compare(const UChar* source, int32_t sourceLength, 427 * @param sourceLength the length of the source string array. If this value 438 virtual UCollationResult compare(const UChar* source, int32_t sourceLength, 508 * @param sourceLength length of the collation key 516 int32_t sourceLength, [all...] |
tblcoll.h | 298 * @param sourceLength the length of the source string array. If this value 309 virtual UCollationResult compare(const UChar* source, int32_t sourceLength, 371 * @param sourceLength the length of the source string. 379 int32_t sourceLength, 638 * @param sourceLength length of string to be processed. If -1, the string 647 virtual int32_t getSortKey(const UChar *source, int32_t sourceLength, [all...] |
/external/icu/icu4c/source/i18n/ |
ucol.cpp | 191 int32_t sourceLength, 198 ((sourceLength==-1 && source!=NULL) ? u_strlen(source) : sourceLength)); 202 getSortKey(source, sourceLength, result, resultLength); 239 int32_t sourceLength, 263 && (source[sourceIndex] != 0 || sourceIndex < sourceLength)); 265 if((source[sourceIndex] == 0 || sourceIndex == sourceLength) 440 int32_t sourceLength, 447 UTRACE_DATA2(UTRACE_VERBOSE, "source string = %vh ", source, sourceLength); 453 compare(source, sourceLength, target, targetLength, status) [all...] |
umsg.cpp | 148 int32_t sourceLength, 158 u_vparseMessage(locale,pattern,patternLength,source,sourceLength,ap,status); 168 int32_t sourceLength, 175 umsg_vparse(fmt,source,sourceLength,&count,ap,status); 184 int32_t sourceLength, 196 u_vparseMessageWithError(locale,pattern,patternLength,source,sourceLength,ap,error,status); 205 int32_t sourceLength, 213 umsg_vparse(fmt,source,sourceLength,&count,ap,status); 489 int32_t sourceLength, 502 umsg_vparse(fmt,source,sourceLength,count,ap,status) [all...] |
coll.cpp | 499 Collator::EComparisonResult Collator::compare(const UChar* source, int32_t sourceLength, 504 return (EComparisonResult)compare(source, sourceLength, target, targetLength, ec); 642 int32_t sourceLength, 649 return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status);
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
ArabicShaping.java | 69 * @param sourceLength The length of the range of text to convert 86 public int shape(char[] source, int sourceStart, int sourceLength, 91 if (sourceStart < 0 || sourceLength < 0 || sourceStart + sourceLength > source.length) { 93 ") or length (" + sourceLength + 130 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
ArabicShaping.java | 68 * @param sourceLength The length of the range of text to convert 86 public int shape(char[] source, int sourceStart, int sourceLength, 91 if (sourceStart < 0 || sourceLength < 0 || sourceStart + sourceLength > source.length) { 93 ") or length (" + sourceLength + 130 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); [all...] |
/external/skia/src/gpu/gl/builders/ |
GrGLShaderStringBuilder.cpp | 38 GrGLint sourceLength = static_cast<GrGLint>(prettySource.size()); 39 GR_GL_CALL(gli, ShaderSource(shaderId, 1, &sourceStr, &sourceLength));
|
/external/icu/icu4c/source/common/unicode/ |
ushape.h | 74 * @param sourceLength The number of UChars in <code>source</code>. 100 u_shapeArabic(const UChar *source, int32_t sourceLength,
|
ucnv.h | [all...] |
unorm.h | 199 * @param sourceLength The length of source, or -1 if NUL-terminated. 212 unorm_normalize(const UChar *source, int32_t sourceLength, 229 * @param sourcelength length of source to test, or -1 if NUL-terminated 238 unorm_quickCheck(const UChar *source, int32_t sourcelength,
|
/cts/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 | 361 function TypedArraySetFromArrayLike(target, source, sourceLength, offset) { 363 for (var i = 0; i < sourceLength; i++) { 368 for (var i = 0; i < sourceLength; i++) { 377 var sourceLength = source.length; 387 leftIndex < sourceLength && targetPtr <= sourcePtr; 401 target.byteOffset + (offset + sourceLength - 1) * targetElementSize; 405 source.byteOffset + sourceLength * sourceElementSize; 406 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/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...] |
es3fShaderStateQueryTests.cpp | 825 StateQueryMemoryWriteGuard<GLint> sourceLength; 826 glGetShaderiv(shader, GL_SHADER_SOURCE_LENGTH, &sourceLength); 828 sourceLength.verifyValidity(m_testCtx); 831 if (sourceLength != referenceLength) 833 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected length " << referenceLength << "; got " << sourceLength << TestLog::EndMessage; 845 StateQueryMemoryWriteGuard<GLint> sourceLength; 846 glGetShaderiv(shader, GL_SHADER_SOURCE_LENGTH, &sourceLength); 848 sourceLength.verifyValidity(m_testCtx); 851 if (sourceLength != referenceLength) 853 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected length " << referenceLength << "; got " << sourceLength << TestLog::EndMessage [all...] |