#include <unicode.h>
Definition at line 16 of file unicode.h.
◆ IsBmp()
static bool dart::Utf::IsBmp |
( |
int32_t |
code_point | ) |
|
|
inlinestatic |
Definition at line 27 of file unicode.h.
27 {
28 return (code_point >= 0) && (code_point <= 0xFFFF);
29 }
◆ IsLatin1()
static bool dart::Utf::IsLatin1 |
( |
int32_t |
code_point | ) |
|
|
inlinestatic |
Definition at line 23 of file unicode.h.
23 {
24 return (code_point >= 0) && (code_point <= 0xFF);
25 }
◆ IsOutOfRange()
static bool dart::Utf::IsOutOfRange |
( |
int32_t |
code_point | ) |
|
|
inlinestatic |
Definition at line 36 of file unicode.h.
36 {
38 }
static constexpr int32_t kMaxCodePoint
◆ IsSupplementary()
static bool dart::Utf::IsSupplementary |
( |
int32_t |
code_point | ) |
|
|
inlinestatic |
◆ kInvalidChar
constexpr int32_t dart::Utf::kInvalidChar = 0xFFFFFFFF |
|
staticconstexpr |
◆ kMaxCodePoint
constexpr int32_t dart::Utf::kMaxCodePoint = 0x10FFFF |
|
staticconstexpr |
◆ kReplacementChar
constexpr int32_t dart::Utf::kReplacementChar = 0xFFFD |
|
staticconstexpr |
The documentation for this class was generated from the following file:
- third_party/dart-lang/sdk/runtime/platform/unicode.h