Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
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 …]
/libcore/ojluni/annotations/hiddenapi/java/lang/
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 …]
DAbstractStringBuilder.java165 public java.lang.AbstractStringBuilder appendCodePoint(int codePoint) { in appendCodePoint()
/libcore/ojluni/src/main/java/java/lang/
DCharacter.java3150 public static UnicodeBlock of(int codePoint) { in of()
4511 public static UnicodeScript of(int codePoint) { in of()
4700 public static boolean isValidCodePoint(int codePoint) { in isValidCodePoint()
4718 public static boolean isBmpCodePoint(int codePoint) { in isBmpCodePoint()
4737 public static boolean isSupplementaryCodePoint(int codePoint) { in isSupplementaryCodePoint()
4852 public static int charCount(int codePoint) { in charCount()
5107 public static char highSurrogate(int codePoint) { in highSurrogate()
5136 public static char lowSurrogate(int codePoint) { in lowSurrogate()
5171 public static int toChars(int codePoint, char[] dst, int dstIndex) { in toChars()
5199 public static char[] toChars(int codePoint) { in toChars()
[all …]
DStringBuilder.java235 public StringBuilder appendCodePoint(int codePoint) { in appendCodePoint()
DStringBuffer.java396 public synchronized StringBuffer appendCodePoint(int codePoint) { in appendCodePoint()
DAbstractStringBuilder.java788 public AbstractStringBuilder appendCodePoint(int codePoint) { in appendCodePoint()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DIllegalFormatCodePointExceptionTest.java42 int codePoint = 12345; in test_getCodePoint() local
52 int codePoint = 12345; in test_getMessage() local
/libcore/ojluni/annotations/sdk/nullability/java/lang/
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 …]
DStringBuffer.annotated.java85 @libcore.util.NonNull public synchronized java.lang.StringBuffer appendCodePoint(int codePoint) { t… in appendCodePoint()
DStringBuilder.annotated.java68 @libcore.util.NonNull public java.lang.StringBuilder appendCodePoint(int codePoint) { throw new Run… in appendCodePoint()
/libcore/luni/src/test/java/libcore/java/nio/charset/
DStandardCharsetsEncoderTest.java91 int codePoint = Integer.parseInt(parts[0]); in testCharset() local
164 private static String createCodePointInfo(CharsetEncoder encoder, int codePoint) { in createCodePointInfo()
/libcore/ojluni/src/main/java/java/util/
DStringTokenizer.java299 private boolean isDelimiter(int codePoint) { in isDelimiter()
/libcore/luni/src/test/java/libcore/xml/
DKxmlSerializerTest.java92 public String fromCodePoint(int codePoint) { in fromCodePoint()
/libcore/libart/src/main/java/java/lang/
DStringFactory.java131 int codePoint = 0; in newStringFromBytes() local
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java420 int codePoint = Integer.parseInt(value, base); in resolveCharacterReference() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DMatcherTest.java664 int[] codePoint = new int[1]; in testAllCodePoints_p() local
683 int[] codePoint = new int[1]; in testAllCodePoints_P() local
/libcore/xml/src/main/java/com/android/org/kxml2/io/
DKXmlSerializer.java611 int codePoint = Character.toCodePoint(high, low); in writeSurrogate() local