HomeSort by relevance Sort by last modified time
    Searched defs:nfd (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/common/unicode/
caniter.h 89 * Gets the NFD form of the current source we are iterating over.
90 * @return gets the source: NOTE: it is the NFD form of source
181 const Normalizer2 &nfd; member in class:CanonicalIterator
184 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
  /external/icu/icu4c/source/common/unicode/
caniter.h 89 * Gets the NFD form of the current source we are iterating over.
90 * @return gets the source: NOTE: it is the NFD form of source
181 const Normalizer2 &nfd; member in class:CanonicalIterator
184 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
  /system/core/toolbox/
alarm.c 21 int nfd; local
159 nfd = open("/sys/android_power/acquire_full_wake_lock", O_RDWR);
160 write(nfd, wake_lock_id, sizeof(wake_lock_id) - 1);
161 close(nfd);
163 nfd = open("/sys/android_power/release_wake_lock", O_RDWR);
164 write(nfd, wake_lock_id, sizeof(wake_lock_id) - 1);
165 close(nfd);
notify.c 14 int nfd, ffd; local
61 nfd = inotify_init();
62 if(nfd < 0) {
69 res = inotify_add_watch(nfd, file_names[i], event_mask);
86 res = read(nfd, event_buf, sizeof(event_buf));
  /external/bison/lib/
w32spawn.h 59 int nfd = fd_safer_noinherit (dup_noinherit (fd)); local
63 return nfd;
  /external/icu/icu4c/source/i18n/
collationruleparser.h 178 const Normalizer2 &nfd, &nfc; member in class:CollationRuleParser
collationbuilder.h 293 const Normalizer2 &nfd, &fcd; member in class:CollationBuilder
usrchimp.h 170 const icu::Normalizer2 *nfd; member in struct:UStringSearch
rulebasedcollator.cpp 774 * Returns FCD code points and handles temporary switching to NFD.
1372 UnicodeString nfd; local
    [all...]
  /frameworks/base/native/android/
sensor.cpp 125 int nfd = poll(&pfd, 1, 0); local
127 if (nfd < 0)
133 return (nfd == 0) ? 0 : 1;
  /external/chromium_org/ash/wm/
window_manager_unittest.cc 358 NonFocusableDelegate nfd; local
360 &nfd, -1, gfx::Rect(10, 10, 10, 10), w1.get()));
402 NonFocusableDelegate nfd; local
404 &nfd, -1, gfx::Rect(70, 70, 50, 50)));
  /external/chromium_org/third_party/icu/source/i18n/
usrchimp.h 64 const icu::Normalizer2 *nfd; member in struct:UStringSearch
  /external/chromium_org/third_party/icu/source/test/intltest/
ucdtest.cpp 346 const Normalizer2 *nfd=Normalizer2::getNFDInstance(errorCode); local
349 dataerrln("Normalizer2::getInstance(NFD) or Normalizer2Factory::getNFCImpl() failed - %s\n",
359 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode);
transrt.cpp 1092 Transliterator *nfd = Transliterator::createInstance("nfd", UTRANS_FORWARD, status); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
ucdtest.cpp 346 const Normalizer2 *nfd=Normalizer2::getNFDInstance(errorCode); local
349 dataerrln("Normalizer2::getInstance(NFD) or Normalizer2Factory::getNFCImpl() failed - %s\n",
359 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode);
transrt.cpp 1092 Transliterator *nfd = Transliterator::createInstance("nfd", UTRANS_FORWARD, status); local
    [all...]
collationtest.cpp 63 : fcd(NULL), nfd(NULL),
125 const Normalizer2 *fcd, *nfd; member in class:CollationTest
    [all...]
  /external/libedit/src/
refresh.c 504 Char *ofd, *ols, *oe, *nfd, *nls, *ne; local
515 nfd = n;
538 while (nfd < n) {
549 if (*ofd == '\0' && *nfd == '\0') {
556 while ((o > ofd) && (n > nfd) && (*--o == *--n))
570 * case 1: insert: scan from nfd to nls looking for *ofd
573 for (c = *ofd, n = nfd; n < nls; n++) {
584 (2 * (p - n) > n - nfd)) {
594 * case 2: delete: scan from ofd to ols looking for *nfd
596 if (*nfd) {
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uprops.cpp 110 UnicodeString nfd; local
116 if(nfcNorm2->getDecomposition(c, nfd)) {
118 if(nfd.length()==1) {
119 c=nfd[0]; /* single BMP code point */
120 } else if(nfd.length()<=U16_MAX_LENGTH &&
121 nfd.length()==U16_LENGTH(c=nfd.char32At(0))
140 nfd.getBuffer(), nfd.length(),
143 0!=u_strCompare(nfd.getBuffer(), nfd.length()
    [all...]
  /external/icu/icu4c/source/common/
uprops.cpp 110 UnicodeString nfd; local
116 if(nfcNorm2->getDecomposition(c, nfd)) {
118 if(nfd.length()==1) {
119 c=nfd[0]; /* single BMP code point */
120 } else if(nfd.length()<=U16_MAX_LENGTH &&
121 nfd.length()==U16_LENGTH(c=nfd.char32At(0))
140 nfd.getBuffer(), nfd.length(),
143 0!=u_strCompare(nfd.getBuffer(), nfd.length()
    [all...]
  /external/mksh/src/
shf.c 73 int nfd; local
75 nfd = fcntl(fd, F_DUPFD, FDBASE);
78 if (nfd < 0) {
83 fd = nfd;
main.c 1357 int nfd; local
1359 nfd = fcntl(shl_dbg_fd, F_DUPFD, FDBASE);
1361 if ((shl_dbg_fd = nfd) == -1)
1373 ksh_dup2(int ofd, int nfd, bool errok)
1377 if (((rv = dup2(ofd, nfd)) < 0) && !errok && (errno != EBADF))
1383 fcntl(nfd, F_SETFD, 0);
1396 int nfd = fd; local
1398 if (fd < FDBASE && (nfd = fcntl(fd, F_DUPFD, FDBASE)) < 0 &&
1401 if (nfd < 0 || nfd > SHRT_MAX
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnormtst.c 342 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
387 log_data_err("ERROR in NFD quick check at U+%04x - (Are you missing data?)\n", cp);
415 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
452 /* NFD and NFKD does not have any MAYBE codepoints */
484 log_data_err("ERROR in NFD quick check for string at count %d - (Are you missing data?)\n", count);
665 UChar nfd[100]; local
683 nfd, 100, &status);
688 if (nfdsize != normsize || u_memcmp(nfd, norm, nfdsize) != 0) {
715 log_data_err("unorm_normalize(pure preflighting NFD)=%ld failed with %s - (Are you missing data?)\n", length, u_errorName(errorCode));
722 log_err("unorm_normalize(NFD)=%ld failed with %s\n", length, u_errorName(errorCode))
1147 nfd[]={ \/* + separates expected output pieces *\/ local
1360 UChar s[U16_MAX_LENGTH], nfd[16]; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c 342 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
387 log_data_err("ERROR in NFD quick check at U+%04x - (Are you missing data?)\n", cp);
415 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
452 /* NFD and NFKD does not have any MAYBE codepoints */
484 log_data_err("ERROR in NFD quick check for string at count %d - (Are you missing data?)\n", count);
665 UChar nfd[100]; local
683 nfd, 100, &status);
688 if (nfdsize != normsize || u_memcmp(nfd, norm, nfdsize) != 0) {
715 log_data_err("unorm_normalize(pure preflighting NFD)=%ld failed with %s - (Are you missing data?)\n", length, u_errorName(errorCode));
722 log_err("unorm_normalize(NFD)=%ld failed with %s\n", length, u_errorName(errorCode))
1147 nfd[]={ \/* + separates expected output pieces *\/ local
1360 UChar s[U16_MAX_LENGTH], nfd[16]; local
    [all...]
  /external/chromium_org/third_party/libevent/
http.c 2238 int nfd; local
    [all...]

Completed in 585 milliseconds

1 2