HomeSort by relevance Sort by last modified time
    Searched refs:wc (Results 1 - 25 of 459) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/android/support/src/musl-ctype/
iswlower.c 3 int iswlower(wint_t wc)
5 return towupper(wc) != wc || wc == 0xdf;
wcwidth.c 11 int wcwidth(wchar_t wc)
13 if (wc < 0xffU)
14 return (wc+1 & 0x7f) >= 0x21 ? 1 : wc ? -1 : 0;
15 if ((wc & 0xfffeffffU) < 0xfffe) {
16 if ((table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1)
18 if ((wtable[wtable[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1
    [all...]
iswupper.c 3 int iswupper(wint_t wc)
5 return towlower(wc) != wc;
iswcntrl.c 4 int iswcntrl(wint_t wc)
6 return (unsigned)wc < 32
7 || (unsigned)(wc-0x7f) < 33
8 || (unsigned)(wc-0x2028) < 2
9 || (unsigned)(wc-0xfff9) < 3;
iswpunct.c 7 int iswpunct(wint_t wc)
9 if (wc<0x20000U)
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
iswalpha.c 7 int iswalpha(wint_t wc)
9 if (wc<0x20000U)
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
11 if (wc<0x2fffeU)
iswgraph.c 3 int iswgraph(wint_t wc)
6 return !iswspace(wc) && iswprint(wc);
iswxdigit.c 4 int iswxdigit(wint_t wc)
6 return (unsigned)(wc-'0') < 10 || (unsigned)((wc|32)-'a') < 6;
iswprint.c 10 int iswprint(wint_t wc)
12 if (wc < 0xffU)
13 return (wc+1 & 0x7f) >= 0x21;
14 if (wc < 0x2028U || wc-0x202aU < 0xd800-0x202a || wc-0xe000U < 0xfff9-0xe000)
16 if (wc-0xfffcU > 0x10ffff-0xfffc || (wc&0xfffe)==0xfffe)
iswalnum.c 4 int iswalnum(wint_t wc)
6 return iswdigit(wc) || iswalpha(wc);
  /prebuilts/ndk/r13/sources/android/support/src/musl-ctype/
iswlower.c 3 int iswlower(wint_t wc)
5 return towupper(wc) != wc || wc == 0xdf;
wcwidth.c 11 int wcwidth(wchar_t wc)
13 if (wc < 0xffU)
14 return (wc+1 & 0x7f) >= 0x21 ? 1 : wc ? -1 : 0;
15 if ((wc & 0xfffeffffU) < 0xfffe) {
16 if ((table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1)
18 if ((wtable[wtable[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1
    [all...]
iswupper.c 3 int iswupper(wint_t wc)
5 return towlower(wc) != wc;
iswcntrl.c 4 int iswcntrl(wint_t wc)
6 return (unsigned)wc < 32
7 || (unsigned)(wc-0x7f) < 33
8 || (unsigned)(wc-0x2028) < 2
9 || (unsigned)(wc-0xfff9) < 3;
iswpunct.c 7 int iswpunct(wint_t wc)
9 if (wc<0x20000U)
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
iswalpha.c 7 int iswalpha(wint_t wc)
9 if (wc<0x20000U)
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
11 if (wc<0x2fffeU)
iswgraph.c 3 int iswgraph(wint_t wc)
6 return !iswspace(wc) && iswprint(wc);
iswxdigit.c 4 int iswxdigit(wint_t wc)
6 return (unsigned)(wc-'0') < 10 || (unsigned)((wc|32)-'a') < 6;
iswprint.c 10 int iswprint(wint_t wc)
12 if (wc < 0xffU)
13 return (wc+1 & 0x7f) >= 0x21;
14 if (wc < 0x2028U || wc-0x202aU < 0xd800-0x202a || wc-0xe000U < 0xfff9-0xe000)
16 if (wc-0xfffcU > 0x10ffff-0xfffc || (wc&0xfffe)==0xfffe)
iswalnum.c 4 int iswalnum(wint_t wc)
6 return iswdigit(wc) || iswalpha(wc);
  /external/bison/lib/
iswblank.c 23 iswblank (wint_t wc)
25 return wc == ' ' || wc == '\t';
  /external/curl/lib/
wildcard.c 33 CURLcode Curl_wildcard_init(struct WildcardData *wc)
35 DEBUGASSERT(wc->filelist == NULL);
36 /* now allocate only wc->filelist, everything else
38 wc->filelist = Curl_llist_alloc(Curl_fileinfo_dtor);
39 if(!wc->filelist) {;
45 void Curl_wildcard_dtor(struct WildcardData *wc)
47 if(!wc)
50 if(wc->tmp_dtor) {
51 wc->tmp_dtor(wc->tmp)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
WordComposerTests.java 32 final WordComposer wc = new WordComposer(); local
44 wc.setComposingWord(CODEPOINTS_WITHIN_BMP, COORDINATES_WITHIN_BMP);
45 assertEquals(wc.size(), STR_WITHIN_BMP.codePointCount(0, STR_WITHIN_BMP.length()));
46 assertFalse(wc.isCursorFrontOrMiddleOfComposingWord());
47 wc.setCursorPositionWithinWord(2);
48 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
50 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(2));
51 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
53 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(1));
54 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord())
    [all...]
  /prebuilts/ndk/r11/sources/android/support/src/musl-multibyte/
wcrtomb.c 10 size_t wcrtomb(char *restrict s, wchar_t wc, mbstate_t *restrict st)
13 if ((unsigned)wc < 0x80) {
14 *s = wc;
16 } else if ((unsigned)wc < 0x800) {
17 *s++ = 0xc0 | (wc>>6);
18 *s = 0x80 | (wc&0x3f);
20 } else if ((unsigned)wc < 0xd800 || (unsigned)wc-0xe000 < 0x2000) {
21 *s++ = 0xe0 | (wc>>12);
22 *s++ = 0x80 | ((wc>>6)&0x3f)
    [all...]
  /prebuilts/ndk/r13/sources/android/support/src/musl-multibyte/
wcrtomb.c 10 size_t wcrtomb(char *restrict s, wchar_t wc, mbstate_t *restrict st)
13 if ((unsigned)wc < 0x80) {
14 *s = wc;
16 } else if ((unsigned)wc < 0x800) {
17 *s++ = 0xc0 | (wc>>6);
18 *s = 0x80 | (wc&0x3f);
20 } else if ((unsigned)wc < 0xd800 || (unsigned)wc-0xe000 < 0x2000) {
21 *s++ = 0xe0 | (wc>>12);
22 *s++ = 0x80 | ((wc>>6)&0x3f)
    [all...]

Completed in 331 milliseconds

1 2 3 4 5 6 7 8 91011>>