Home
last modified time | relevance | path

Searched defs:codePoint (Results 1 – 25 of 1236) sorted by relevance

12345678910>>...50

/aosp_15_r20/libcore/ojluni/src/main/native/
H A DCharacter.cpp32 Character_isLowerCaseImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isLowerCaseImpl()
37 Character_isUpperCaseImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isUpperCaseImpl()
42 Character_isTitleCaseImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isTitleCaseImpl()
47 Character_isDigitImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isDigitImpl()
52 Character_isLetterImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isLetterImpl()
57 Character_isLetterOrDigitImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isLetterOrDigitImpl()
62 Character_isAlphabeticImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isAlphabeticImpl()
67 Character_isIdeographicImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isIdeographicImpl()
72 Character_getTypeImpl(JNIEnv* env, jclass, jint codePoint) { in Character_getTypeImpl()
77 Character_isUnicodeIdentifierStartImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isUnicodeIdentifierStartImpl()
[all …]
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/lang/
H A DCharacter.java67 public static boolean isValidCodePoint(int codePoint) { in isValidCodePoint()
71 public static boolean isBmpCodePoint(int codePoint) { in isBmpCodePoint()
75 public static boolean isSupplementaryCodePoint(int codePoint) { in isSupplementaryCodePoint()
95 public static int charCount(int codePoint) { in charCount()
135 public static char highSurrogate(int codePoint) { in highSurrogate()
139 public static char lowSurrogate(int codePoint) { in lowSurrogate()
143 public static int toChars(int codePoint, char[] dst, int dstIndex) { in toChars()
147 public static char[] toChars(int codePoint) { in toChars()
151 static void toSurrogates(int codePoint, char[] dst, int index) { in toSurrogates()
186 public static boolean isLowerCase(int codePoint) { in isLowerCase()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/2/libcore/ojluni/src/main/java/java/lang/
DCharacter.java4470 public static UnicodeBlock of(int codePoint) { in of()
8945 public static UnicodeScript of(int codePoint) { in of()
9159 public static String toString(int codePoint) { in toString()
9175 public static boolean isValidCodePoint(int codePoint) { in isValidCodePoint()
9193 public static boolean isBmpCodePoint(int codePoint) { in isBmpCodePoint()
9212 public static boolean isSupplementaryCodePoint(int codePoint) { in isSupplementaryCodePoint()
9327 public static int charCount(int codePoint) { in charCount()
9582 public static char highSurrogate(int codePoint) { in highSurrogate()
9611 public static char lowSurrogate(int codePoint) { in lowSurrogate()
9646 public static int toChars(int codePoint, char[] dst, int dstIndex) { in toChars()
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/
H A DCharacter.java4470 public static UnicodeBlock of(int codePoint) { in of()
8945 public static UnicodeScript of(int codePoint) { in of()
9159 public static String toString(int codePoint) { in toString()
9175 public static boolean isValidCodePoint(int codePoint) { in isValidCodePoint()
9193 public static boolean isBmpCodePoint(int codePoint) { in isBmpCodePoint()
9212 public static boolean isSupplementaryCodePoint(int codePoint) { in isSupplementaryCodePoint()
9327 public static int charCount(int codePoint) { in charCount()
9582 public static char highSurrogate(int codePoint) { in highSurrogate()
9611 public static char lowSurrogate(int codePoint) { in lowSurrogate()
9646 public static int toChars(int codePoint, char[] dst, int dstIndex) { in toChars()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/
DCharacter.java4470 public static UnicodeBlock of(int codePoint) { in of()
8945 public static UnicodeScript of(int codePoint) { in of()
9159 public static String toString(int codePoint) { in toString()
9175 public static boolean isValidCodePoint(int codePoint) { in isValidCodePoint()
9193 public static boolean isBmpCodePoint(int codePoint) { in isBmpCodePoint()
9212 public static boolean isSupplementaryCodePoint(int codePoint) { in isSupplementaryCodePoint()
9327 public static int charCount(int codePoint) { in charCount()
9582 public static char highSurrogate(int codePoint) { in highSurrogate()
9611 public static char lowSurrogate(int codePoint) { in lowSurrogate()
9646 public static int toChars(int codePoint, char[] dst, int dstIndex) { in toChars()
[all …]
/aosp_15_r20/libcore/ojluni/annotations/sdk/nullability/java/lang/
H A DCharacter.annotated.java51 public static boolean isValidCodePoint(int codePoint) { throw new RuntimeException("Stub!"); } in isValidCodePoint()
53 public static boolean isBmpCodePoint(int codePoint) { throw new RuntimeException("Stub!"); } in isBmpCodePoint()
55 public static boolean isSupplementaryCodePoint(int codePoint) { throw new RuntimeException("Stub!")… in isSupplementaryCodePoint()
65 public static int charCount(int codePoint) { throw new RuntimeException("Stub!"); } in charCount()
81 public static char highSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in highSurrogate()
83 public static char lowSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in lowSurrogate()
85 public static int toChars(int codePoint, char[] dst, int dstIndex) { throw new RuntimeException("St… in toChars()
87 public static char[] toChars(int codePoint) { throw new RuntimeException("Stub!"); } in toChars()
99 public static boolean isLowerCase(int codePoint) { throw new RuntimeException("Stub!"); } in isLowerCase()
103 public static boolean isUpperCase(int codePoint) { throw new RuntimeException("Stub!"); } in isUpperCase()
[all …]
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/lang/
H A DCharacter.annotated.java35 public static int charCount(int codePoint) { throw new RuntimeException("Stub!"); } in charCount()
63 public static int digit(int codePoint, int radix) { throw new RuntimeException("Stub!"); } in digit()
71 public static byte getDirectionality(int codePoint) { throw new RuntimeException("Stub!"); } in getDirectionality()
73 public static java.lang.String getName(int codePoint) { throw new RuntimeException("Stub!"); } in getName()
77 public static int getNumericValue(int codePoint) { throw new RuntimeException("Stub!"); } in getNumericValue()
81 public static int getType(int codePoint) { throw new RuntimeException("Stub!"); } in getType()
87 public static char highSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in highSurrogate()
89 public static boolean isAlphabetic(int codePoint) { throw new RuntimeException("Stub!"); } in isAlphabetic()
91 public static boolean isBmpCodePoint(int codePoint) { throw new RuntimeException("Stub!"); } in isBmpCodePoint()
95 public static boolean isDefined(int codePoint) { throw new RuntimeException("Stub!"); } in isDefined()
[all …]
/aosp_15_r20/external/okio/okio/src/commonMain/kotlin/okio/
H A DUtf8.kt187 val codePoint = ( in processUtf8Bytes() constant
285 index += process4Utf8Bytes(index, endIndex) { codePoint -> in processUtf16Chars() method
410 val codePoint = in process2Utf8Bytes() constant
465 val codePoint = in process3Utf8Bytes() constant
534 val codePoint = in process4Utf8Bytes() constant
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DCodePointEscaper.java88 _fromCodePoint.put(abbr.codePoint, abbr); in _fromCodePoint.put() argument
108 private final int codePoint; field in CodePointEscaper
112 private CodePointEscaper(int codePoint, String shortName) { in CodePointEscaper()
118 private CodePointEscaper(int codePoint, String shortName, String description) { in CodePointEscaper()
169 public static String codePointToEscaped(int codePoint) { in codePointToEscaped()
217 public static String toExample(int codePoint) { in toExample()
239 int codePoint; in rawEscapedToCodePoint() local
255 public static String rawCodePointToEscaped(int codePoint) { in rawCodePointToEscaped()
/aosp_15_r20/frameworks/base/core/java/android/text/
H A DEmoji.java38 public static boolean isRegionalIndicatorSymbol(int codePoint) { in isRegionalIndicatorSymbol()
45 public static boolean isEmojiModifier(int codePoint) { in isEmojiModifier()
71 public static boolean isEmoji(int codePoint) { in isEmoji()
76 public static boolean isKeycapBase(int codePoint) { in isKeycapBase()
85 public static boolean isTagSpecChar(int codePoint) { in isTagSpecChar()
/aosp_15_r20/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DStringUtils.java118 public static String newSingleCodePointString(final int codePoint) { in newSingleCodePointString()
284 final int codePoint = Character.codePointAt(charSequence, index); in copyCodePointsAndReturnCodePointCount() local
340 final int codePoint = text.codePointAt(index); in getCapitalizationType() local
361 final int codePoint = text.codePointAt(i); in isIdenticalAfterUpcase() local
374 final int codePoint = text.codePointAt(i); in isIdenticalAfterDowncase() local
388 final int codePoint = text.codePointAt(i); in isIdenticalAfterCapitalizeEachWord() local
448 int codePoint = 0; in lastPartLooksLikeURL() local
516 int codePoint = Character.codePointBefore(text, i); in isInsideDoubleQuoteOrAfterDigit() local
/aosp_15_r20/packages/apps/Contacts/src/com/android/contacts/util/
DSearchUtil.java103 final int codePoint = Character.codePointAt(substring, i); in contains() local
144 final int codePoint = line.codePointAt(index); in findNextTokenStart() local
156 final int codePoint = line.codePointAt(index); in findNextTokenStart() local
176 int codePoint = query.codePointAt(start); in cleanStartAndEndOfSearchQuery() local
194 int codePoint = query.codePointAt(end); in cleanStartAndEndOfSearchQuery() local
/aosp_15_r20/packages/apps/Dialer/java/com/android/contacts/common/util/
DSearchUtil.java86 final int codePoint = Character.codePointAt(substring, i); in contains() local
127 final int codePoint = line.codePointAt(index); in findNextTokenStart() local
139 final int codePoint = line.codePointAt(index); in findNextTokenStart() local
159 int codePoint = query.codePointAt(start); in cleanStartAndEndOfSearchQuery() local
177 int codePoint = query.codePointAt(end); in cleanStartAndEndOfSearchQuery() local
/aosp_15_r20/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DEvent.java114 private Event(final int type, final CharSequence text, final int codePoint, final int keyCode, in Event()
142 public static Event createSoftwareKeypressEvent(final int codePoint, final int keyCode, in createSoftwareKeypressEvent()
149 public static Event createHardwareKeypressEvent(final int codePoint, final int keyCode, in createHardwareKeypressEvent()
159 public static Event createDeadEvent(final int codePoint, final int keyCode, final Event next) { in createDeadEvent()
174 public static Event createEventForCodePointFromUnknownSource(final int codePoint) { in createEventForCodePointFromUnknownSource()
190 public static Event createEventForCodePointFromAlreadyTypedText(final int codePoint, in createEventForCodePointFromAlreadyTypedText()
/aosp_15_r20/frameworks/minikin/libs/minikin/
H A DMinikinInternal.cpp27 inline static bool isBMPVariationSelector(uint32_t codePoint) { in isBMPVariationSelector()
31 inline static bool isVariationSelectorSupplement(uint32_t codePoint) { in isVariationSelectorSupplement()
35 uint16_t getVsIndex(uint32_t codePoint) { in getVsIndex()
45 bool isVariationSelector(uint32_t codePoint) { in isVariationSelector()
/aosp_15_r20/system/teeui/libteeui/src/
H A Dfont_rendering.cpp22 bool isBreakable(unsigned long codePoint) { in isBreakable()
56 bool isNewline(unsigned long codePoint) { in isNewline()
75 GlyphIndex TextFace::getCharIndex(unsigned long codePoint) { in getCharIndex()
157 auto codePoint = UTF8Range<const char*>::codePoint(**wordStart); in findLongestWordSequence() local
222 auto codePoint = UTF8Range<const char*>::codePoint(c); in drawText() local
/aosp_15_r20/frameworks/base/core/java/android/text/method/
H A DWordIterator.java331 final int codePoint = Character.codePointBefore(mCharSeq, offset); in isAfterPunctuation() local
347 final int codePoint = Character.codePointAt(mCharSeq, offset); in isOnPunctuation() local
367 public static boolean isMidWordPunctuation(Locale locale, int codePoint) { in isMidWordPunctuation()
384 final int codePoint = Character.codePointBefore(mCharSeq, offset); in isAfterLetterOrDigit() local
392 final int codePoint = Character.codePointAt(mCharSeq, offset); in isOnLetterOrDigit() local
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/translate/
H A DUnicodeEscaper.java66 public static UnicodeEscaper below(final int codePoint) { in below()
76 public static UnicodeEscaper above(final int codePoint) { in above()
106 public boolean translate(final int codePoint, final Writer out) throws IOException { in translate()
137 protected String toUtf16Escape(final int codePoint) { in toUtf16Escape()
H A DJavaUnicodeEscaper.java37 public static JavaUnicodeEscaper above(final int codePoint) { in above()
48 public static JavaUnicodeEscaper below(final int codePoint) { in below()
102 protected String toUtf16Escape(final int codePoint) { in toUtf16Escape()
H A DNumericEntityEscaper.java66 public static NumericEntityEscaper below(final int codePoint) { in below()
76 public static NumericEntityEscaper above(final int codePoint) { in above()
106 public boolean translate(final int codePoint, final Writer out) throws IOException { in translate()
/aosp_15_r20/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DUrlComponentEncodingTester.java210 int codePoint = entry.getKey(); in test() local
228 private void testParseAlreadyEncoded(int codePoint, Encoding encoding, Component component) { in testParseAlreadyEncoded()
237 private void testEncodeAndDecode(int codePoint, Component component) { in testEncodeAndDecode()
248 private void testParseOriginal(int codePoint, Encoding encoding, Component component) { in testParseOriginal()
261 private void testToUrl(int codePoint, Encoding encoding, Component component) { in testToUrl()
270 private void testFromUrl(int codePoint, Encoding encoding, Component component) { in testFromUrl()
280 int codePoint, Encoding encoding, Component component, boolean uriEscaped) { in testUri()
307 public String encode(int codePoint) { in encode()
313 public String encode(int codePoint) { in encode()
325 public String encode(int codePoint) { in encode()
/aosp_15_r20/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DDictionaryInfoUtils.java124 private static boolean isFileNameCharacter(int codePoint) { in isFileNameCharacter()
145 final int codePoint = name.codePointAt(i); in replaceFileNameDangerousCharacters() local
150 codePoint)); in replaceFileNameDangerousCharacters() local
185 final int codePoint = fname.codePointAt(i); in getWordListIdFromFileName() local
/aosp_15_r20/external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/
H A DUCharacterThreadTest.java47 int codePoint = 47 + t; in TestUCharactersGetName() local
64 private final int codePoint; field in UCharacterThreadTest.GetNameThread
68 GetNameThread(int codePoint, String correctName) { in GetNameThread()
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUCharacterThreadTest.java50 int codePoint = 47 + t; in TestUCharactersGetName() local
67 private final int codePoint; field in UCharacterThreadTest.GetNameThread
71 GetNameThread(int codePoint, String correctName) { in GetNameThread()
/aosp_15_r20/external/cronet/third_party/icu/source/common/
H A Ducnv_err.cpp96 UChar32 codePoint, in UCNV_FROM_U_CALLBACK_STOP()
137 UChar32 codePoint, in UCNV_FROM_U_CALLBACK_SKIP()
168 UChar32 codePoint, in UCNV_FROM_U_CALLBACK_SUBSTITUTE()
204 UChar32 codePoint, in UCNV_FROM_U_CALLBACK_ESCAPE()

12345678910>>...50