Home
last modified time | relevance | path

Searched refs:charAt (Results 76 - 100 of 2234) sorted by relevance

12345678910>>...90

/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
H A DDictionaryData.java48 int skip = skipFlip.charAt(i) - 36; in unpackDictionaryData()
49 int flip = skipFlip.charAt(i + 1) - 36; in unpackDictionaryData()
58 sizeBits[i] = sizeBitsData.charAt(i) - 65; in unpackDictionaryData()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStringSegment.java10 * support for case folding. The charAt, length, and subSequence methods all
80 public char charAt(int index) { in charAt() method in StringSegment
81 return str.charAt(index + start); in charAt()
98 char lead = str.charAt(start); in getCodePoint()
102 && Character.isLowSurrogate(trail = str.charAt(start + 1))) { in getCodePoint()
H A DReplaceableUCharacterIterator.java89 return replaceable.charAt(currentIndex); in current()
100 // cannot use charAt due to it different in currentCodePoint()
151 return replaceable.charAt(currentIndex++); in next()
168 return replaceable.charAt(--currentIndex); in previous()
H A DUResource.java99 char c = s.charAt(i); in setString()
125 public char charAt(int i) { in charAt() method in UResource.Key
189 if (bytes[offset + start + i] != cs.charAt(i)) { in regionMatches()
261 int diff = charAt(i) - cs.charAt(i); in compareTo()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DStringSegment.java11 * support for case folding. The charAt, length, and subSequence methods all
82 public char charAt(int index) { in charAt() method in StringSegment
83 return str.charAt(index + start); in charAt()
100 char lead = str.charAt(start); in getCodePoint()
104 && Character.isLowSurrogate(trail = str.charAt(start + 1))) { in getCodePoint()
H A DReplaceableUCharacterIterator.java91 return replaceable.charAt(currentIndex); in current()
102 // cannot use charAt due to it different in currentCodePoint()
153 return replaceable.charAt(currentIndex++); in next()
170 return replaceable.charAt(--currentIndex); in previous()
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-korean/euc-kr/
H A Deuckr-encoder.js93 if (str.charAt(c) == "%") {
95 parseInt(str.charAt(c + 1) + str.charAt(c + 2), 16)
98 } else out += str.charAt(c);
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-tchinese/big5/
H A Dbig5-encoder.js110 if (str.charAt(c) == "%") {
112 parseInt(str.charAt(c + 1) + str.charAt(c + 2), 16)
115 } else out += str.charAt(c);
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-japanese/euc-jp/
H A Deucjp-encoder.js111 if (str.charAt(c) == "%") {
113 parseInt(str.charAt(c + 1) + str.charAt(c + 2), 16)
116 } else out += str.charAt(c);
/third_party/node/test/fixtures/wpt/encoding/legacy-mb-japanese/shift_jis/
H A Dsjis-encoder.js119 if (str.charAt(c) == "%") {
121 parseInt(str.charAt(c + 1) + str.charAt(c + 2), 16)
124 } else out += str.charAt(c);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiWriter.java57 c = UTF16.charAt(src, i); in doWriteForward()
70 c = src.charAt(i++); in doWriteForward()
84 c = UTF16.charAt(src, i); in doWriteForward()
147 srcLength -= UTF16.getCharCount(UTF16.charAt(src, in writeReverse()
175 c = UTF16.charAt(src, srcLength - 1); in writeReverse()
201 int c = UTF16.charAt(src, srcLength - 1); in writeReverse()
206 c = UTF16.charAt(src, srcLength - 1); in writeReverse()
H A DReplaceableString.java92 public char charAt(int offset) { in charAt() method in ReplaceableString
93 return buf.charAt(offset); in charAt()
109 return UTF16.charAt(buf, offset); in char32At()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DStringTokenizer.java321 int c = UTF16.charAt(m_source_, m_nextOffset_); in nextToken()
498 int c = UTF16.charAt(m_source_, m_nextOffset_); in countTokens()
614 c = UTF16.charAt(m_source_, result); in getNextDelimiter()
622 c = UTF16.charAt(m_source_, result); in getNextDelimiter()
650 c = UTF16.charAt(m_source_, result); in getNextNonDelimiter()
658 c = UTF16.charAt(m_source_, result); in getNextNonDelimiter()
679 for (int i = 0, ch; -1 != (ch = m_delimiters_.charAt(i)); ++i) { in checkDelimiters()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBidiWriter.java58 c = UTF16.charAt(src, i); in doWriteForward()
71 c = src.charAt(i++); in doWriteForward()
85 c = UTF16.charAt(src, i); in doWriteForward()
148 srcLength -= UTF16.getCharCount(UTF16.charAt(src, in writeReverse()
176 c = UTF16.charAt(src, srcLength - 1); in writeReverse()
202 int c = UTF16.charAt(src, srcLength - 1); in writeReverse()
207 c = UTF16.charAt(src, srcLength - 1); in writeReverse()
H A DReplaceableString.java86 public char charAt(int offset) { in charAt() method in ReplaceableString
87 return buf.charAt(offset); in charAt()
102 return UTF16.charAt(buf, offset); in char32At()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DStringTokenizer.java315 int c = UTF16.charAt(m_source_, m_nextOffset_); in nextToken()
487 int c = UTF16.charAt(m_source_, m_nextOffset_); in countTokens()
603 c = UTF16.charAt(m_source_, result); in getNextDelimiter()
611 c = UTF16.charAt(m_source_, result); in getNextDelimiter()
639 c = UTF16.charAt(m_source_, result); in getNextNonDelimiter()
647 c = UTF16.charAt(m_source_, result); in getNextNonDelimiter()
668 for (int i = 0, ch; -1 != (ch = m_delimiters_.charAt(i)); ++i) { in checkDelimiters()
/third_party/icu/icu4c/source/common/
H A Dutil.cpp127 UChar c = text.charAt(i);
132 && text.charAt(i) != APOSTROPHE) {}
219 id.charAt(pos) != ch) { in parseChar()
296 while (pos < str.length() && (c = str.charAt(pos)) >= u'0' && c <= u'9') { in parseAsciiInteger()
340 quoteBuf.charAt(0) == APOSTROPHE && in appendToRule()
341 quoteBuf.charAt(1) == APOSTROPHE) { in appendToRule()
349 quoteBuf.charAt(quoteBuf.length()-2) == APOSTROPHE && in appendToRule()
350 quoteBuf.charAt(quoteBuf.length()-1) == APOSTROPHE) { in appendToRule()
372 if (len > 0 && rule.charAt(len-1) != c) { in appendToRule()
/third_party/node/deps/icu-small/source/common/
H A Dutil.cpp127 char16_t c = text.charAt(i);
132 && text.charAt(i) != APOSTROPHE) {}
219 id.charAt(pos) != ch) { in parseChar()
296 while (pos < str.length() && (c = str.charAt(pos)) >= u'0' && c <= u'9') { in parseAsciiInteger()
340 quoteBuf.charAt(0) == APOSTROPHE && in appendToRule()
341 quoteBuf.charAt(1) == APOSTROPHE) { in appendToRule()
349 quoteBuf.charAt(quoteBuf.length()-2) == APOSTROPHE && in appendToRule()
350 quoteBuf.charAt(quoteBuf.length()-1) == APOSTROPHE) { in appendToRule()
372 if (len > 0 && rule.charAt(len-1) != c) { in appendToRule()
/third_party/skia/third_party/externals/icu/source/common/
H A Dutil.cpp113 UChar c = text.charAt(i);
118 && text.charAt(i) != APOSTROPHE) {}
205 id.charAt(pos) != ch) { in parseChar()
282 while (pos < str.length() && (c = str.charAt(pos)) >= u'0' && c <= u'9') { in parseAsciiInteger()
326 quoteBuf.charAt(0) == APOSTROPHE && in appendToRule()
327 quoteBuf.charAt(1) == APOSTROPHE) { in appendToRule()
335 quoteBuf.charAt(quoteBuf.length()-2) == APOSTROPHE && in appendToRule()
336 quoteBuf.charAt(quoteBuf.length()-1) == APOSTROPHE) { in appendToRule()
358 if (len > 0 && rule.charAt(len-1) != c) { in appendToRule()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUTF16Test.java176 * Testing UTF16 class methods charAt and charAtCodePoint
183 if (UTF16.charAt(strbuff, 0) != '1' || UTF16.charAt(strbuff, 2) != '3' in TestCharAt()
184 || UTF16.charAt(strbuff, 5) != 0x10001 || in TestCharAt()
185 UTF16.charAt(strbuff, 6) != 0x10001 || in TestCharAt()
186 UTF16.charAt(strbuff, 12) != 0x10002 || in TestCharAt()
187 UTF16.charAt(strbuff, 13) != 0x10002) { in TestCharAt()
191 if (UTF16.charAt(str, 0) != '1' || UTF16.charAt(str, 2) != '3' || in TestCharAt()
192 UTF16.charAt(st in TestCharAt()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUTF16Test.java173 * Testing UTF16 class methods charAt and charAtCodePoint
180 if (UTF16.charAt(strbuff, 0) != '1' || UTF16.charAt(strbuff, 2) != '3' in TestCharAt()
181 || UTF16.charAt(strbuff, 5) != 0x10001 || in TestCharAt()
182 UTF16.charAt(strbuff, 6) != 0x10001 || in TestCharAt()
183 UTF16.charAt(strbuff, 12) != 0x10002 || in TestCharAt()
184 UTF16.charAt(strbuff, 13) != 0x10002) { in TestCharAt()
188 if (UTF16.charAt(str, 0) != '1' || UTF16.charAt(str, 2) != '3' || in TestCharAt()
189 UTF16.charAt(st in TestCharAt()
[all...]
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/
H A DJSArrayBuilder.java123 while (i > 0 && data.charAt(i - 1) == ',') { in trimTrailingCommas()
131 public char charAt(int index) { in charAt() method in JSArrayBuilder
132 return data.charAt(index); in charAt()
/third_party/node/deps/npm/node_modules/fastest-levenshtein/
H A Dtest.js22 if (b.charAt(i - 1) === a.charAt(j - 1)) {
40 result += characters.charAt(Math.floor(Math.random() * charactersLength));
/third_party/typescript/tests/baselines/reference/
H A DstringPropertyAccess.js3 var a = x.charAt(0);
4 var b = x.hasOwnProperty('charAt');
6 var c = x['charAt'](0);
11 var a = x.charAt(0);
12 var b = x.hasOwnProperty('charAt');
13 var c = x['charAt'](0);
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DBreakTransliterator.java97 int cp = UTF16.charAt(text, boundary-1); in handleTransliterate()
102 cp = UTF16.charAt(text, boundary); in handleTransliterate()
278 return text.charAt(pos); in current()
294 return text.charAt(pos); in next()
311 return text.charAt(pos); in previous()

Completed in 16 milliseconds

12345678910>>...90