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

1 2 3

  /external/vixl/src/vixl/a64/
disasm-a64.cc     [all...]
simulator-a64.cc     [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/bison/lib/
w32spawn.h 59 int nfd = fd_safer_noinherit (dup_noinherit (fd)); local
63 return nfd;
  /external/icu/icu4c/source/common/
uprops.cpp 107 UnicodeString nfd; local
113 if(nfcNorm2->getDecomposition(c, nfd)) {
115 if(nfd.length()==1) {
116 c=nfd[0]; /* single BMP code point */
117 } else if(nfd.length()<=U16_MAX_LENGTH &&
118 nfd.length()==U16_LENGTH(c=nfd.char32At(0))
137 nfd.getBuffer(), nfd.length(),
140 0!=u_strCompare(nfd.getBuffer(), nfd.length()
    [all...]
caniter.cpp 74 nfd(*Normalizer2::getNFDInstance(status)),
110 *@return gets the source: NOTE: it is the NFD form of source
173 nfd.normalize(newSource, source, status);
217 // on the NFD form - see above).
243 // it after NFD normalization
341 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
382 nfd.normalize(possible, attempt, status);
510 nfd.normalize(temp, decompString, status);
574 nfd.normalize(temp, trial, status);
  /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:U_FINAL
184 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
  /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);
  /external/netcat/
netcat.c 760 readwrite(int nfd)
771 pfd[0].fd = nfd;
783 close(nfd);
791 if ((n = read(nfd, buf, plen)) < 0)
794 shutdown(nfd, SHUT_RD);
799 atelnet(nfd, buf, n);
809 shutdown(nfd, SHUT_WR);
813 if (atomicio(vwrite, nfd, buf, n) != n)
822 atelnet(int nfd, unsigned char *buf, unsigned int size)
846 if (atomicio(vwrite, nfd, obuf, 3) != 3
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 311 int ExtractResolvFDs(void *state, int *fds, int nfd) {
315 for (int i = 0; i < MAXNS && cnt < nfd; i++) {
328 int ExtractRecvmsgFDs(void *msgp, int *fds, int nfd) {
338 if (res == nfd)
  /frameworks/base/native/android/
sensor.cpp 142 int nfd = poll(&pfd, 1, 0); local
144 if (nfd < 0)
150 return (nfd == 0) ? 0 : 1;
  /external/curl/tests/server/
sockfilt.c 687 DWORD nfd = 0, thd = 0, wsa = 0; local
731 handles[nfd] = 0;
744 data[nfd].fd = curlx_sitosk(fds);
748 handles[nfd] = handle;
753 handles[nfd] = GetStdHandle(STD_OUTPUT_HANDLE);
756 handles[nfd] = GetStdHandle(STD_ERROR_HANDLE);
764 handles[nfd] = handle;
773 handles[nfd] = handle;
779 nfd++;
792 wait = WaitForMultipleObjectsEx(nfd, handles, FALSE, milliseconds, FALSE)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationBuilder.java 41 nfd = Normalizer2.getNFDInstance();
117 String nfdString = nfd.normalize(str);
444 nfdPrefix = nfd.normalize(prefix);
446 String nfdString = nfd.normalize(str);
506 String nfdExtension = nfd.normalize(extension);
1490 private Normalizer2 nfd, fcd; field in class:CollationBuilder
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationBuilder.java 37 nfd = Normalizer2.getNFDInstance();
113 String nfdString = nfd.normalize(str);
440 nfdPrefix = nfd.normalize(prefix);
442 String nfdString = nfd.normalize(str);
502 String nfdExtension = nfd.normalize(extension);
1486 private Normalizer2 nfd, fcd; field in class:CollationBuilder
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 52 nfd = allModes.decomp;
58 * Gets the NFD form of the current source we are iterating over.
59 * @return gets the source: NOTE: it is the NFD form of the source originally passed in
112 source = nfd.normalize(newSource);
229 private final Normalizer2 nfd; field in class:CanonicalIterator
243 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
471 if (Normalizer.isNormalized(cp, Normalizer.NFD)) continue;
474 String decomp = Normalizer.normalize(cp, Normalizer.NFD);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 52 nfd = allModes.decomp;
58 * Gets the NFD form of the current source we are iterating over.
59 * @return gets the source: NOTE: it is the NFD form of the source originally passed in
116 source = nfd.normalize(newSource);
233 private final Normalizer2 nfd; field in class:CanonicalIterator
247 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
475 if (Normalizer.isNormalized(cp, Normalizer.NFD)) continue;
478 String decomp = Normalizer.normalize(cp, Normalizer.NFD);
  /external/mksh/src/
main.c 1375 int nfd; local
1377 nfd = fcntl(shl_dbg_fd, F_DUPFD, FDBASE);
1379 if ((shl_dbg_fd = nfd) == -1)
1391 ksh_dup2(int ofd, int nfd, bool errok)
1395 if (((rv = dup2(ofd, nfd)) < 0) && !errok && (errno != EBADF))
1401 fcntl(nfd, F_SETFD, 0);
1414 int nfd = fd; local
1416 if (fd < FDBASE && (nfd = fcntl(fd, F_DUPFD, FDBASE)) < 0 &&
1419 if (nfd < 0 || nfd > SHRT_MAX
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c 341 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
386 log_data_err("ERROR in NFD quick check at U+%04x - (Are you missing data?)\n", cp);
414 log_err("ERROR in NFD quick check at U+%04x\n", CPNFD[count]);
451 /* NFD and NFKD does not have any MAYBE codepoints */
483 log_data_err("ERROR in NFD quick check for string at count %d - (Are you missing data?)\n", count);
664 UChar nfd[100]; local
682 nfd, 100, &status);
687 if (nfdsize != normsize || u_memcmp(nfd, norm, nfdsize) != 0) {
714 log_data_err("unorm_normalize(pure preflighting NFD)=%ld failed with %s - (Are you missing data?)\n", length, u_errorName(errorCode));
721 log_err("unorm_normalize(NFD)=%ld failed with %s\n", length, u_errorName(errorCode))
1146 nfd[]={ \/* + separates expected output pieces *\/ local
1359 UChar s[U16_MAX_LENGTH], nfd[16]; local
    [all...]
  /external/libvncserver/utils/
git2cl.pl 64 my ($rin, $nfd);
66 return $nfd = select($rin, undef, undef, 0);
  /system/core/debuggerd/
getevent.cpp 105 static int read_notify(const char* dirname, int nfd) {
114 res = read(nfd, event_buf, sizeof(event_buf));
  /external/icu/icu4c/source/i18n/
collationbuilder.cpp 200 : nfd(*Normalizer2::getNFDInstance(errorCode)),
303 UnicodeString nfdString = nfd.normalize(str, errorCode);
652 nfd.normalize(prefix, nfdPrefix, errorCode);
658 UnicodeString nfdString = nfd.normalize(str, errorCode);
731 UnicodeString nfdExtension = nfd.normalize(extension, errorCode);
    [all...]
collationruleparser.h 178 const Normalizer2 &nfd, &nfc; member in class:CollationRuleParser
usrchimp.h 170 const icu::Normalizer2 *nfd; member in struct:UStringSearch
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharacterProperty.java 353 String nfd=Norm2AllModes.getNFCInstance().impl.getDecomposition(c);
354 if(nfd!=null) {
356 c=nfd.codePointAt(0);
357 if(Character.charCount(c)!=nfd.length()) {
371 String folded=UCharacter.foldCase(nfd, true);
372 return !folded.equals(nfd);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterProperty.java 352 String nfd=Norm2AllModes.getNFCInstance().impl.getDecomposition(c);
353 if(nfd!=null) {
355 c=nfd.codePointAt(0);
356 if(Character.charCount(c)!=nfd.length()) {
370 String folded=UCharacter.foldCase(nfd, true);
371 return !folded.equals(nfd);
    [all...]

Completed in 754 milliseconds

1 2 3