Home | History | Annotate | Download | only in share

Lines Matching refs:char16

26   char16* utf16_strtok(char16 *utf16_str, size_t *token_size,
27 char16 **utf16_str_next) {
34 while ((char16)' ' == utf16_str[pos] || (char16)'\n' == utf16_str[pos]
35 || (char16)'\t' == utf16_str[pos])
41 while ((char16)'\0' != utf16_str[pos] && (char16)' ' != utf16_str[pos]
42 && (char16)'\n' != utf16_str[pos]
43 && (char16)'\t' != utf16_str[pos]) {
47 char16 *ret_val = utf16_str;
48 if ((char16)'\0' == utf16_str[pos]) {
56 utf16_str[pos] = (char16)'\0';
62 int utf16_atoi(const char16 *utf16_str) {
70 if ((char16)'-' == utf16_str[pos]) {
75 while ((char16)'0' <= utf16_str[pos] &&
76 (char16)'9' >= utf16_str[pos]) {
77 value = value * 10 + static_cast<int>(utf16_str[pos] - (char16)'0');
84 float utf16_atof(const char16 *utf16_str) {
93 size_t utf16_strlen(const char16 *utf16_str) {
98 while ((char16)'\0' != utf16_str[size])
103 int utf16_strcmp(const char16* str1, const char16* str2) {
105 while (str1[pos] == str2[pos] && (char16)'\0' != str1[pos])
111 int utf16_strncmp(const char16 *str1, const char16 *str2, size_t size) {
113 while (pos < size && str1[pos] == str2[pos] && (char16)'\0' != str1[pos])
123 char16* utf16_strcpy(char16 *dst, const char16 *src) {
127 char16* cp = dst;
129 while ((char16)'\0' != *src) {
140 char16* utf16_strncpy(char16 *dst, const char16 *src, size_t size) {
147 char16* cp = dst;
163 char* utf16_strcpy_tochar(char *dst, const char16 *src) {
169 while ((char16)'\0' != *src) {