Searched refs:strcoll (Results 1 - 25 of 51) sorted by relevance

123

/macosx-10.9.5/libstdcxx-60/src/
H A Dcollate_members.cc46 int __cmp = strcoll(__one, __two);
/macosx-10.9.5/Libc-997.90.3/string/FreeBSD/
H A Dstrcoll.c29 __FBSDID("$FreeBSD: src/lib/libc/string/strcoll.c,v 1.14 2009/02/03 17:58:20 danger Exp $");
65 strcoll(const char *s, const char *s2) function
/macosx-10.9.5/text_cmds-87/sort/
H A Dmemcoll.c47 while (! (errno = 0, (diff = strcoll (s1, s2)) || errno))
49 /* strcoll found no difference, but perhaps it was fooled by NUL
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dastdynamic.c35 #undef strcoll macro
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/collationperf/
H A DCollPerf.pl186 <td>strcoll</td>
213 the hardware and compiler. The strcoll operation is particularly sensitive; we
242 <td align="left"><b>strcoll</b> <i>(ICU)</i></td>
245 <td align="left"><b>strcoll</b> <i>(GLIBC)</i></td>
248 <td align="left"><b>strcoll</b> <i>(GLIBC-ICU)/ICU)</i></td>
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/include/
H A Dast_std.h215 #undef strcoll macro
217 #define strcoll _ast_info.collate macro
219 #define strcoll strcmp macro
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Dcs_s_reg.c148 if ((k = strcoll(codesets[j]->code_set_name, (const char *)temp->code_set_name)) > 0)
260 if ((k = strcoll(key_name, codesets[middle]->code_set_name)) == 0)
403 if ((k = strcoll(ep->code_set_name, "NONE")) != 0)
726 if ((i = strcoll(found->code_set_name, "NONE")) == 0)
835 if ((i = strcoll(found->code_set_name, "NONE")) == 0)
/macosx-10.9.5/Libc-997.90.3/include/
H A Dstring.h78 int strcoll(const char *, const char *);
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dexpr.c424 np->num = (strcoll(left,right)>0);
427 np->num = (strcoll(left,right)<0);
430 np->num = (strcoll(left,right)>=0);
433 np->num = (strcoll(left,right)<=0);
H A Dcksum.c426 return strcoll((*f1)->fts_name, (*f2)->fts_name);
/macosx-10.9.5/tcsh-65/tcsh/
H A Dtc.func.c1725 errno = 0; /* strcoll sets errno, another brain-damage */
1727 rv = strcoll(sa, sb);
1732 * only documented valid errno value for strcoll [EINVAL]
1737 stderror(ERR_SYSTEM, "strcoll", strerror(errno));
H A Dglob.c163 * strcoll does not guarantee case sorting, so we pre-process now:
177 return strcoll(s1, s2);
272 return (strcoll(*(char *const *) p, *(char *const *) q));
/macosx-10.9.5/file_cmds-230/ls/
H A Dcmp.c75 return (strcoll(a->fts_name, b->fts_name));
81 return (strcoll(b->fts_name, a->fts_name));
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstringvec.c146 strcoll(3) if available, otherwise it uses strcmp(3). */
152 return (strcoll (*s1, *s2));
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Ddir.c41 /* Whether file names in directories should be compared with strcoll. */
44 /* Where to go if strcoll fails. */
159 r = strcoll (name1, name2);
/macosx-10.9.5/bash-92/bash-3.2/lib/glob/
H A Dsmatch.c46 /* We use strcoll(3) for range comparisons in bracket expressions,
70 if ((ret = strcoll (s1, s2)) != 0)
221 #define STRCOLL(S1, S2) strcoll((S1), (S2))
/macosx-10.9.5/awk-18/src/
H A DFIXES144 i have rescinded the attempt to use strcoll in expanding shorthands in
151 the issue appears to be that strcoll is meant for sorting, where
198 locales, using strcoll and iswhatever tests for posix character
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dutil.c324 return (strcoll (*s1, *s2));
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dfnmatch.c172 # define STRCOLL(S1, S2) strcoll (S1, S2)
/macosx-10.9.5/shell_cmds-175/find/
H A Dfind.c83 return (strcoll((*s1)->fts_name, (*s2)->fts_name));
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dsort.c87 * to handle this here since strcoll() or strcmp()
117 cmp = strcoll(as, bs);
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/bltins/
H A Dtest.c484 return(strcoll(left, right)>0);
486 return(strcoll(left, right)<0);
/macosx-10.9.5/text_cmds-87/tr/
H A Dtr.c366 return (strcoll(sa, sb));
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dargs.c334 strsort(argv,argc,strcoll);
336 strsort(ap->sh->st.dolv+1,ap->sh->st.dolc,strcoll);
768 strsort(comargn,argn,strcoll);
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/collperf/
H A Dcollperf.cpp330 QFUNC(posix_strcoll_null, strcoll, posix_data)
479 BFUNC(posix_strcoll_null, strcoll, posix_data)

Completed in 253 milliseconds

123