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

1 2

  /external/icu/icu4c/source/common/unicode/
caniter.h 91 * Gets the NFD form of the current source we are iterating over.
92 * @return gets the source: NOTE: it is the NFD form of source
183 const Normalizer2 &nfd; member in class:U_FINAL
186 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
  /external/ltp/testcases/kernel/syscalls/dup2/
dup204.c 61 int nfd[2]; variable
79 TEST(dup2(fd[i], nfd[i]));
89 if (fstat(nfd[i], &newbuf) == -1)
130 close(nfd[i]);
dup202.c 71 int *nfd; member in struct:test_case_t
107 TEST(dup2(ofd, *TC[i].nfd));
121 if (fstat(*TC[i].nfd, &newbuf) == -1)
133 if (close(*TC[i].nfd) == -1)
dup201.c 84 int *nfd; member in struct:test_case_t
122 TEST(dup2(*TC[i].ofd, *TC[i].nfd));
  /external/bison/lib/
w32spawn.h 59 int nfd = fd_safer_noinherit (dup_noinherit (fd)); local
63 return nfd;
  /external/ltp/testcases/kernel/syscalls/epoll_wait/
epoll_wait01.c 104 int nfd, write_size = 0; local
115 nfd = poll(pfd, 1, 1);
116 if (nfd == -1)
118 } while (nfd > 0);
  /external/icu/icu4c/source/i18n/
collationruleparser.h 180 const Normalizer2 &nfd, &nfc; member in class:CollationRuleParser
collationbuilder.h 295 const Normalizer2 &nfd, &fcd; member in class:CollationBuilder
usrchimp.h 172 const icu::Normalizer2 *nfd; member in struct:UStringSearch
  /external/ltp/testcases/kernel/syscalls/nftw/
test.c 787 int fd, nfd; local
811 if ((nfd = open("./tmp/data/dirh", O_RDONLY)) == -1) {
817 if (nfd != fd) {
820 nfd, fd);
825 if (close(nfd) == -1) {
test64.c 802 int fd, nfd; local
827 if ((nfd = open("./tmp/data/dirh", O_RDONLY)) == -1) {
833 if (nfd != fd) {
836 nfd, fd);
841 if (close(nfd) == -1) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 54 nfd = allModes.decomp;
60 * Gets the NFD form of the current source we are iterating over.
61 * @return gets the source: NOTE: it is the NFD form of the source originally passed in
114 source = nfd.normalize(newSource);
231 private final Normalizer2 nfd; field in class:CanonicalIterator
245 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
473 if (Normalizer.isNormalized(cp, Normalizer.NFD)) continue;
476 String decomp = Normalizer.normalize(cp, Normalizer.NFD);
  /external/icu/icu4c/source/test/intltest/
itutil.cpp 618 const UNormalizer2 *nfd=unorm2_getNFDInstance(errorCode); local
624 UNormalizer2 *p2 = unorm2_openFiltered(nfd, emptySet.toUSet(), errorCode);
ucdtest.cpp 329 const Normalizer2 *nfd=Normalizer2::getNFDInstance(errorCode); local
332 dataerrln("Normalizer2::getInstance(NFD) or Normalizer2Factory::getNFCImpl() failed - %s\n",
342 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode);
collationtest.cpp 60 : fcd(NULL), nfd(NULL),
124 const Normalizer2 *fcd, *nfd; member in class:CollationTest
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 54 nfd = allModes.decomp;
60 * Gets the NFD form of the current source we are iterating over.
61 * @return gets the source: NOTE: it is the NFD form of the source originally passed in
118 source = nfd.normalize(newSource);
235 private final Normalizer2 nfd; field in class:CanonicalIterator
249 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
477 if (Normalizer.isNormalized(cp, Normalizer.NFD)) continue;
480 String decomp = Normalizer.normalize(cp, Normalizer.NFD);
  /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/strace/tests/
msg_control.c 67 size_t nfd = cmsg_len > CMSG_LEN(0) local
69 if (!nfd)
75 for (i = 0; i < nfd; ++i) {
  /external/strace/tests-m32/
msg_control.c 67 size_t nfd = cmsg_len > CMSG_LEN(0) local
69 if (!nfd)
75 for (i = 0; i < nfd; ++i) {
  /external/strace/tests-mx32/
msg_control.c 67 size_t nfd = cmsg_len > CMSG_LEN(0) local
69 if (!nfd)
75 for (i = 0; i < nfd; ++i) {
  /frameworks/base/native/android/
sensor.cpp 146 native_handle_t *resourceHandle = native_handle_create(1 /* nFd */, 0 /* nInt */);
259 int nfd = poll(&pfd, 1, 0); local
261 if (nfd < 0)
267 return (nfd == 0) ? 0 : 1;
  /libcore/ojluni/src/main/java/sun/util/calendar/
AbstractCalendar.java 264 long nfd; local
266 nfd = 7 * nth + getDayOfWeekDateBefore(fd, dayOfWeek);
268 nfd = 7 * nth + getDayOfWeekDateAfter(fd, dayOfWeek);
270 getCalendarDateFromFixedDate(ndate, nfd);
  /system/core/sdcard/
sdcard.cpp 113 int nfd = inotify_init(); local
114 if (nfd == -1) {
122 int res = inotify_add_watch(nfd, PACKAGES_LIST_FILE, IN_DELETE_SELF);
145 ssize_t res = TEMP_FAILURE_RETRY(read(nfd, event_buf, sizeof(event_buf)));
  /external/icu/icu4c/source/common/
uprops.cpp 109 UnicodeString nfd; local
115 if(nfcNorm2->getDecomposition(c, nfd)) {
117 if(nfd.length()==1) {
118 c=nfd[0]; /* single BMP code point */
119 } else if(nfd.length()<=U16_MAX_LENGTH &&
120 nfd.length()==U16_LENGTH(c=nfd.char32At(0))
139 nfd.getBuffer(), nfd.length(),
142 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;

Completed in 1731 milliseconds

1 2