Searched refs:toupper (Results 1 - 25 of 477) sorted by relevance

1234567891011>>

/macosx-10.10/dtrace-147/test/tst/common/funcs/
H A Derr.D_PROTO_ARG.toupperbadarg.d24 * toupper() should handle an invalid argument passed.
26 * SECTION: Actions and Subroutines/toupper()
32 trace(toupper(42));
H A Derr.D_PROTO_LEN.touppertoofew.d24 * Calling toupper() with less than 1 arguments will generate an error
26 * SECTION: Actions and Subroutines/toupper()
32 toupper();
H A Derr.D_PROTO_LEN.touppertoomany.d24 * toupper() should handle too many arguments passed.
26 * SECTION: Actions and Subroutines/toupper();
33 toupper("foo", "bar");
H A Dtst.toupper.d27 printf("%s\n", toupper("abcdefghijklmnopqrstuvwxyz"));
28 printf("%s\n", toupper("0123456789!"));
29 printf("%s\n", toupper("/stairway/to/heaven"));
30 printf("%s\n", toupper("aaaaaaaaaaaaaaaaaaaaaaaaaaaa"));
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dstrcasecmp.c46 while(toupper((unsigned char)*s1) == toupper((unsigned char)*s2)) {
52 return toupper((unsigned char)*s1) - toupper((unsigned char)*s2);
H A Dstrncasecmp.c46 && toupper((unsigned char)*s1) == toupper((unsigned char)*s2))
56 return toupper((unsigned char)*s1) - toupper((unsigned char)*s2);
H A Dstrupr.c47 *s = toupper((unsigned char)*s);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dstrequal.c44 if(toupper(*first) != toupper(*second)) {
50 return toupper(*first) == toupper(*second);
67 if(toupper(*first) != toupper(*second)) {
77 return toupper(*first) == toupper(*second);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dctype.h26 # define TOUPPER(c) (islower(c) ? toupper(c) : (c))
29 # define TOUPPER(c) toupper(c)
/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dprocvar2.tcl17 set m [string toupper $y ]
H A Dprocepc1.tcl16 set m [string toupper $y ]
H A Dprocepc2.tcl16 set m [string toupper $y ]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvnode_if.sh83 # Does this awk have a "toupper" function? (i.e. is it GNU awk)
84 isgawk=`$awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null`
86 # If this awk does not define "toupper" then define our own.
89 toupper=
91 # Provide our own toupper()
92 toupper='
93 function toupper(str) { function
184 # This awk program needs toupper() so define it if necessary.
185 sed -e "$sed_prep" $src | $awk "$toupper"'
196 printf("#define %s(", toupper(nam
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/
H A Do_str.c74 int res = toupper(*str1) - toupper(*str2);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DDisallowCType.h62 #undef toupper macro
79 #define toupper toupper_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/tcl-105/tcl/tcl/tools/
H A DuniParse.tcl49 if {[scan [lindex $items 12] %4x toupper] == 1} {
50 set toupper [expr {$index - $toupper}]
52 set toupper {}
73 return "$categoryIndex,$toupper,$tolower,$totitle"
277 foreach {type toupper tolower totitle} [split [lindex $groups $i] ,] {}
282 if {$totitle == $toupper} {
285 set delta $toupper
286 } elseif {$toupper != ""} {
289 set delta $toupper
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/tools/
H A DuniParse.tcl49 if {[scan [lindex $items 12] %4x toupper] == 1} {
50 set toupper [expr {$index - $toupper}]
52 set toupper {}
73 return "$categoryIndex,$toupper,$tolower,$totitle"
277 foreach {type toupper tolower totitle} [split [lindex $groups $i] ,] {}
282 if {$totitle == $toupper} {
285 set delta $toupper
286 } elseif {$toupper != ""} {
289 set delta $toupper
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dctype_noninline.h70 { return ::toupper((int) __c); }
77 *__low = ::toupper((int) *__low);
/macosx-10.10/ksh-23/ksh/src/lib/libast/regex/
H A Dregsub.c86 c = toupper(c);
96 c = toupper(c);
145 c = toupper(c);
219 c = toupper(c);
229 c = toupper(c);
/macosx-10.10/file_cmds-242/ipcrm/
H A Dipcrm.c122 IPC_TO_STRING(toupper(c)), optarg);
134 warn("%sid(%d): ", IPC_TO_STR(toupper(c)), target_id);
137 IPC_TO_STRING(toupper(c)));
/macosx-10.10/iodbc-42.5/iodbc/iodbc/trace/
H A DDriverConnect.c102 if (toupper(*ptr) == 'P')
109 if (toupper(*ptr) == 'W')
116 if (toupper(*ptr) == 'D')
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_read_radix.c51 ch = (char) ((radix < 36) ? toupper (*str) : *str);
/macosx-10.10/bind9-45.101/bind9/contrib/zkt/
H A Dzfparse.c234 if ( (toupper (*p) == 'I' && toupper (p[1]) == 'N') ||
235 (toupper (*p) == 'C' && toupper (p[1]) == 'H') )
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dcmap.cpp53 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i;

Completed in 297 milliseconds

1234567891011>>