/aosp12/frameworks/base/core/tests/coretests/src/android/text/ |
H A D | MeasuredParagraphTest.java | 69 assertNotNull(mt.getChars()); in buildForBidi() 70 assertEquals("XXX", charsToString(mt.getChars())); in buildForBidi() 82 assertNotNull(mt2.getChars()); in buildForBidi() 83 assertEquals("VVV", charsToString(mt.getChars())); in buildForBidi() 100 assertNotNull(mt.getChars()); in buildForMeasurement() 101 assertEquals("XXX", charsToString(mt.getChars())); in buildForMeasurement() 117 assertNotNull(mt2.getChars()); in buildForMeasurement() 118 assertEquals("VVV", charsToString(mt.getChars())); in buildForMeasurement() 140 assertNotNull(mt.getChars()); in buildForStaticLayout() 141 assertEquals("XXX", charsToString(mt.getChars())); in buildForStaticLayout() [all …]
|
/aosp12/art/test/020-string/src/ |
H A D | Main.java | 135 src.getChars(2, 9, tmp, 0); in copyTest() 142 src.getChars(-1, 9, dst, 0); in copyTest() 149 src.getChars(2, 19, dst, 0); in copyTest() 156 src.getChars(2, 1, dst, 0); in copyTest() 163 src.getChars(2, 10, dst, 0); in copyTest() 169 src.getChars(2, 9, dst, 0); in copyTest()
|
/aosp12/frameworks/base/core/java/android/text/method/ |
H A D | ReplacementTransformationMethod.java | 139 getChars(start, end, c, 0); in subSequence() 146 getChars(0, length(), c, 0); in toString() 150 public void getChars(int start, int end, char[] dest, int off) { in getChars() method in ReplacementTransformationMethod.ReplacementCharSequence 151 TextUtils.getChars(mSource, start, end, dest, off); in getChars()
|
H A D | PasswordTransformationMethod.java | 182 getChars(start, end, buf, 0); in subSequence() 190 public void getChars(int start, int end, char[] dest, int off) { in getChars() method in PasswordTransformationMethod.PasswordCharSequence 191 TextUtils.getChars(mSource, start, end, dest, off); in getChars()
|
H A D | QwertyKeyListener.java | 274 TextUtils.getChars(content, x, oldStart, orig, 0); in onKeyDown() 430 original.getChars(0, len, orig, 0); in markAsReplaced()
|
/aosp12/frameworks/base/core/java/android/text/ |
H A D | AlteredCharSequence.java | 107 public void getChars(int start, int end, char[] dest, int off) { in getChars() method in AlteredCharSequence 108 TextUtils.getChars(mSource, start, end, dest, off); in getChars() 121 getChars(0, len, ret, 0); in toString()
|
H A D | TextUtils.java | 144 public static void getChars(CharSequence s, int start, int end, in getChars() method in TextUtils 149 ((String) s).getChars(start, end, dest, destoff); in getChars() 155 ((GetChars) s).getChars(start, end, dest, destoff); in getChars() 188 getChars(s, start, segend, temp, 0); in indexOf() 246 getChars(s, segstart, end, temp, 0); in lastIndexOf() 315 getChars(one, toffset, toffset + len, temp, 0); in regionMatches() 316 getChars(two, ooffset, ooffset + len, temp, len); in regionMatches() 346 getChars(source, start, end, temp, 0); in substring() 646 getChars(start, end, buf, 0); in subSequence() 1365 final char[] buf = mt.getChars(); in ellipsize() [all …]
|
H A D | GetChars.java | 32 public void getChars(int start, int end, char[] dest, int destoff); in getChars() method
|
H A D | SpannableStringBuilder.java | 69 TextUtils.getChars(text, start, end, mText, 0); in SpannableStringBuilder() 400 TextUtils.getChars(cs, csStart, csEnd, mText, start); in change() 1205 public void getChars(int start, int end, char[] dest, int destoff) { in getChars() method in SpannableStringBuilder 1228 getChars(0, len, buf, 0); in toString() 1240 getChars(start, end, buf, 0); in substring() 1431 getChars(start, end, buf, 0); in drawText() 1456 getChars(contextStart, contextEnd, buf, 0); in drawTextRun() 1478 getChars(start, end, buf, 0); in measureText() 1502 getChars(start, end, buf, 0); in getTextWidths() 1530 getChars(contextStart, contextEnd, buf, 0); in getTextRunAdvances() [all …]
|
H A D | Layout.java | 2151 final char[] chars = mt.getChars(); 2468 getChars(off, off + 1, buf, 0); in charAt() 2475 public void getChars(int start, int end, char[] dest, int destoff) { in getChars() method in Layout.Ellipsizer 2479 TextUtils.getChars(mText, start, end, dest, destoff); in getChars() 2492 getChars(start, end, s, 0); in subSequence() 2499 getChars(0, length(), s, 0); in toString() 2537 getChars(start, end, s, 0); in subSequence()
|
H A D | MeasuredParagraph.java | 170 public @NonNull char[] getChars() { in getChars() method in MeasuredParagraph 457 TextUtils.getChars(text, start, end, mCopiedBuffer, 0); in resetAndAnalyzeBidi()
|
H A D | SpannableStringInternal.java | 180 public final void getChars(int start, int end, char[] dest, int off) { in getChars() method in SpannableStringInternal 181 mText.getChars(start, end, dest, off); in getChars()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/block/read/ |
H A D | BlockData.java | 102 return getChars(byteOffset + 1, size); in getTinyCharArray() 108 public char[] getChars(int byteOffset, int charCount) { in getChars() method in BlockData
|
/aosp12/art/test/536-checker-intrinsic-optimization/src/ |
H A D | Main.java | 428 src.getChars(0, src.length(), dst, 0); in stringGetCharsAndBack() 434 src.getChars(0, src.length(), dst, offset); in stringGetCharsAndBackOffset() 440 src.getChars(srcBegin, srcEnd, dst, offset); in stringGetCharsRange()
|
/aosp12/frameworks/base/graphics/java/android/graphics/text/ |
H A D | LineBreaker.java | 482 measuredPara.getChars(), in computeLineBreaks() 484 measuredPara.getChars().length, in computeLineBreaks()
|
H A D | TextRunShaper.java | 110 TextUtils.getChars(text, contextStart, contextStart + contextCount, buf, 0); in shapeTextRun()
|
H A D | MeasuredText.java | 70 public @NonNull char[] getChars() { in getChars() method in MeasuredText
|
/aosp12/frameworks/base/graphics/java/android/graphics/ |
H A D | Paint.java | 2312 TextUtils.getChars(text, start, end, buf, 0); in measureText() 2396 TextUtils.getChars(text, start, end, buf, 0); in breakText() 2523 TextUtils.getChars(text, start, end, buf, 0); in getTextWidths() 2743 TextUtils.getChars(text, contextStart, contextEnd, buf, 0); in getTextRunCursor() 2874 TextUtils.getChars(text, start, end, buf, 0); in getTextBounds() 3000 TextUtils.getChars(text, contextStart, contextEnd, buf, 0); in getRunAdvance() 3074 TextUtils.getChars(text, contextStart, contextEnd, buf, 0); in getOffsetForAdvance()
|
/aosp12/art/test/988-method-trace/ |
H A D | expected-stdout.txt | 113 .....=> public void java.lang.String.getChars(int,int,char[],int) 118 .....<= public void java.lang.String.getChars(int,int,char[],int) -> <null: null> 135 .....=> static void java.lang.Integer.getChars(int,int,char[]) 136 .....<= static void java.lang.Integer.getChars(int,int,char[]) -> <null: null> 145 .....=> public void java.lang.String.getChars(int,int,char[],int) 150 .....<= public void java.lang.String.getChars(int,int,char[],int) -> <null: null> 216 .....=> public void java.lang.String.getChars(int,int,char[],int) 221 .....<= public void java.lang.String.getChars(int,int,char[],int) -> <null: null> 238 .....=> static void java.lang.Integer.getChars(int,int,char[]) 239 .....<= static void java.lang.Integer.getChars(int,int,char[]) -> <null: null> [all …]
|
/aosp12/frameworks/base/media/java/android/mtp/ |
H A D | MtpDatabase.java | 692 value.getChars(0, length, outStringValue, 0); in getDeviceProperty() 701 value.getChars(0, length, outStringValue, 0); in getDeviceProperty() 712 imageSize.getChars(0, imageSize.length(), outStringValue, 0); in getDeviceProperty() 762 obj.getName().getChars(0, nameLen, outName, 0); in getObjectInfo() 779 path.getChars(0, pathLen, outFilePath, 0); in getObjectFilePath()
|
/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/utils/ |
H A D | IndentingPrintWriter.java | 96 s.getChars(off, len - off, buf, 0); in write()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/format/ |
H A D | FormatUtils.java | 119 text.getChars(0, text.length(), data, 0); in copyToCharArrayBuffer()
|
/aosp12/frameworks/base/core/java/com/android/internal/util/ |
H A D | LineBreakBufferedWriter.java | 251 s.getChars(off, off + len, buffer, bufferIndex); in appendToBuffer()
|
/aosp12/frameworks/base/core/java/android/util/ |
H A D | IndentingPrintWriter.java | 193 s.getChars(off, len - off, buf, 0); in write()
|
/aosp12/art/test/100-reflect2/ |
H A D | expected-stdout.txt | 36 …getChars(int,int,char[],int), static int java.lang.String.indexOf(char[],int,int,char[],int,int,in…
|