Searched refs:tolower (Results 1 - 25 of 490) sorted by relevance

1234567891011>>

/macosx-10.10/dtrace-147/test/tst/common/funcs/
H A Derr.D_PROTO_ARG.tolowerbadarg.d24 * tolower() should handle an invalid argument passed.
26 * SECTION: Actions and Subroutines/tolower()
32 trace(tolower(42));
H A Derr.D_PROTO_LEN.tolowertoofew.d24 * Calling tolower() with less than 1 arguments will generate an error
26 * SECTION: Actions and Subroutines/tolower()
32 tolower();
H A Derr.D_PROTO_LEN.tolowertoomany.d24 * tolower() should handle too many arguments passed.
26 * SECTION: Actions and Subroutines/tolower();
33 tolower("foo", "bar");
H A Dtst.tolower.d27 printf("%s\n", tolower("ABCDEFGHIJKLMNOPQRSTUVWXYZ"));
28 printf("%s\n", tolower("0123456789!"));
29 printf("%s\n", tolower("/STAIRWAY/TO/HEAVEN"));
30 printf("%s\n", tolower("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
/macosx-10.10/postfix-255/postfix/src/util/
H A Dstrcasecmp.c46 while (tolower(*us1) == tolower(*us2++))
49 return (tolower(*us1) - tolower(*--us2));
59 if (tolower(*us1) != tolower(*us2++))
60 return (tolower(*us1) - tolower(*--us2));
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/port/
H A Dstrcasecmp.c46 while (tolower(*us1) == tolower(*us2++))
49 return (tolower(*us1) - tolower(*--us2));
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dstd.cpp42 c1 = tolower(*p1++);
43 c2 = tolower(*p2++);
49 } while (c1 != 0 && (c1 == c2 || tolower(c1) == tolower(c2)));
51 c1 = tolower(c1);
52 c2 = tolower(c2);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dctype.h27 # define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
30 # define TOLOWER(c) tolower(c)
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dstrlwr.c47 *s = tolower((unsigned char)*s);
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dstrcasecmp.c47 ac = tolower(ac);
50 bc = tolower(bc);
H A Dstrncasecmp.c51 ac = tolower(ac);
54 bc = tolower(bc);
/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dprocvar2.tcl16 set l [string tolower $x ]
H A Dprocepc1.tcl15 set l [string tolower $x ]
H A Dprocepc2.tcl15 set l [string tolower $x ]
/macosx-10.10/uucp-11/uucp/lib/
H A Dstrcas.c22 b1 = tolower (BUCHAR (b1));
24 b2 = tolower (BUCHAR (b2));
H A Dstrncs.c25 b1 = tolower (BUCHAR (b1));
27 b2 = tolower (BUCHAR (b2));
/macosx-10.10/Heimdal-398.1.2/appl/telnet/libtelnet/
H A Dgenget.c44 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
63 while (tolower((unsigned char)c1) == tolower((unsigned char)c2)) {
/macosx-10.10/WTF-7600.1.24/wtf/
H A DDisallowCType.h61 #undef tolower macro
78 #define tolower tolower_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtmword.c56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t)
76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPSchema.cpp40 (*k) = tolower(*k);
60 (*k) = tolower(*k);
71 (*k) = tolower(*k);
80 (*k) = tolower(*k);
/macosx-10.10/shell_cmds-179/locate/locate/
H A Dlocate.h63 define TOLOWER(ch) tolower(ch)
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dstrcasecmp.c26 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
H A Dstrncasecmp.c26 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
/macosx-10.10/xnu-2782.1.97/osfmk/device/
H A Dsubrs.c220 tolower(unsigned char ch) function
234 while (tolower(*us1) == tolower(*us2++))
237 return (tolower(*us1) - tolower(*--us2));
248 if (tolower(*us1) != tolower(*us2++))
249 return (tolower(*us1) - tolower(*--us2));
/macosx-10.10/apr-32/apr/apr/strings/
H A Dapr_fnmatch.c140 && (tolower(**string) >= tolower(*startch))
141 && (tolower(**string) <= tolower(**pattern)))
152 && (tolower(**string) == tolower(**pattern)))
179 && (tolower(**string) == tolower(**pattern)))

Completed in 289 milliseconds

1234567891011>>