OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isvalidcodepoint
(Results
1 - 12
of
12
) sorted by null
/libcore/luni/src/main/java/java/util/
IllegalFormatCodePointException.java
23
* Unicode code point (defined by {@link Character#
isValidCodePoint
(int)}) is
Formatter.java
[
all
...]
/external/chromium/base/
utf_string_conversion_utils.cc
29
return
IsValidCodepoint
(code_point);
53
return
IsValidCodepoint
(*code_point);
65
return
IsValidCodepoint
(*code_point);
utf_string_conversion_utils.h
15
inline bool
IsValidCodepoint
(uint32 code_point) {
string_util.cc
282
!base::
IsValidCodepoint
(code_point)) {
[
all
...]
/external/chromium_org/base/strings/
utf_string_conversion_utils.cc
29
return
IsValidCodepoint
(code_point);
53
return
IsValidCodepoint
(*code_point);
65
return
IsValidCodepoint
(*code_point);
utf_string_conversion_utils.h
15
inline bool
IsValidCodepoint
(uint32 code_point) {
string_util.cc
232
!
IsValidCodepoint
(code_point)) {
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unilib.h
42
inline bool
IsValidCodepoint
(char32 c) {
unicodetext.cc
363
if (UniLib::
IsValidCodepoint
(c)) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java
26
assertFalse(Character.
isValidCodePoint
(-1));
27
assertTrue(Character.
isValidCodePoint
(0));
28
assertTrue(Character.
isValidCodePoint
(1));
29
assertFalse(Character.
isValidCodePoint
(Integer.MAX_VALUE));
32
assertTrue(Character.
isValidCodePoint
(c));
35
assertFalse(Character.
isValidCodePoint
(0x10FFFF + 1));
[
all
...]
/libcore/luni/src/main/java/java/lang/
Character.java
[
all
...]
Completed in 381 milliseconds