Searched refs:ch (Results 26 - 50 of 1921) sorted by relevance

1234567891011>>

/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/
H A Dmac_krb_lib1.c84 char ch= *alias++; local
85 if(ch==0) break;
86 if(isupper(ch))
87 ch=tolower(ch);
88 if(ch=='.')
90 *dst++=ch;
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dheader_token.c114 int ch; local
134 while ((ch = *cp) != 0 && (user_terminator != 0 || tok_count < token_len)) {
140 if (IS_SPACE_TAB_CR_LF(ch))
146 if (ch == user_terminator)
152 if (ch == '(') {
154 while ((ch = *cp) != 0) {
156 if (ch == '(') { /* comments can nest! */
158 } else if (ch == ')') {
161 } else if (ch == '\\') {
162 if ((ch
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/scr018/
H A Dt.c13 int ch, l, r; local
19 for (l = 1, r = 0; (ch = getchar()) != EOF;) {
20 if (ch != ',')
22 do { ch = getchar(); } while (isblank(ch));
23 if (ch != '\n')
26 do { ch = getchar(); } while (isblank(ch));
27 if (ch != '}')
32 next: if (ch
[all...]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/widechar/
H A Dcharable.c37 NCURSES_EXPORT(bool) _nc_is_charable(wchar_t ch)
41 result = (wctob((wint_t) ch) == (int) ch);
43 result = (_nc_to_char(ch) >= 0);
48 NCURSES_EXPORT(int) _nc_to_char(wint_t ch) argument
52 result = wctob(ch);
55 result = wctomb(temp, ch);
64 NCURSES_EXPORT(wint_t) _nc_to_widechar(int ch)
68 result = btowc(ch);
72 temp[0] = ch;
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dbasename.c36 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
38 # define IS_DIR_SEPARATOR(ch) \
39 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
/macosx-10.9.5/ncurses-42/ncurses/form/
H A Dfld_pad.c39 | Function : int set_field_pad(FIELD *field, int ch)
49 set_field_pad(FIELD *field, int ch) argument
53 T((T_CALLED("set_field_pad(%p,%d)"), field, ch));
56 if (isprint(UChar(ch)))
58 if (field->pad != ch)
60 field->pad = ch;
/macosx-10.9.5/CF-855.17/
H A DCFStringScanner.c36 CF_INLINE Boolean __CFCharacterIsADigit(UniChar ch) { argument
37 return (ch >= '0' && ch <= '9') ? true : false;
41 CF_INLINE SInt32 __CFCharacterNumericOrHexValue (UniChar ch) { argument
42 if (ch >= '0' && ch <= '9') {
43 return ch - '0';
44 } else if (ch >= 'A' && ch <= 'F') {
45 return ch
54 __CFCharacterNumericValue(UniChar ch) argument
59 UniChar ch; local
71 UniChar ch; local
127 UniChar ch; local
187 UniChar ch; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DANTLRUtil.cpp49 char ch; variable
57 while( state != FINISHED && in.get(ch) )
63 if( ch != '"' )
69 if( ch == '\\' ) // got escape sequence
74 if( ch == '"' ) // close quote -> stop
79 ret += ch; // else append...
82 switch(ch)
85 ret += ch;
89 ret += ch;
98 ret += ch;
115 char ch; variable
155 char ch; variable
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/build_windows/
H A Ddbkill.cpp38 char ch; local
44 while ((ch = *s++) != '\0') {
45 if (ch == '-') {
48 else if (ch >= '0' && ch <= '9') {
49 result = result * base + (ch - '0');
51 else if (ch == 'x' || ch == 'X') {
55 else if (base == 16 && ch >= 'a' && ch <
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dwinduni.c84 unichar ch; local
91 ch = *unicode;
93 if (ch == 0 && length < 0)
98 if ((ch & 0x7f) == ch)
100 if (ch == '\\')
102 else if (ISPRINT (ch))
103 putc (ch, e);
106 switch (ch)
137 fprintf (e, "\\%03o", (unsigned int) ch);
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dustrtrns.cpp46 UChar32 ch; local
75 while((ch=*src) != 0 &&
76 ((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))) {
79 *pDest++ = (UChar)ch;
85 if(ch != 0) {
95 ch = *src++;
98 if((uint32_t)ch < 0xd800 || (0xe000 <= ch
160 UChar32 ch; local
[all...]
/macosx-10.9.5/curl-78.94.1/curl/docs/examples/
H A Dcacertinmem.c112 CURL * ch; local
116 ch=curl_easy_init();
117 rv=curl_easy_setopt(ch,CURLOPT_VERBOSE, 0L);
118 rv=curl_easy_setopt(ch,CURLOPT_HEADER, 0L);
119 rv=curl_easy_setopt(ch,CURLOPT_NOPROGRESS, 1L);
120 rv=curl_easy_setopt(ch,CURLOPT_NOSIGNAL, 1L);
121 rv=curl_easy_setopt(ch,CURLOPT_WRITEFUNCTION, *writefunction);
122 rv=curl_easy_setopt(ch,CURLOPT_WRITEDATA, stdout);
123 rv=curl_easy_setopt(ch,CURLOPT_HEADERFUNCTION, *writefunction);
124 rv=curl_easy_setopt(ch,CURLOPT_WRITEHEADE
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dhex_quote.c61 int ch; local
64 for (cp = raw; (ch = *(unsigned const char *) cp) != 0; cp++) {
65 if (ch != '%' && !ISSPACE(ch) && ISPRINT(ch)) {
66 VSTRING_ADDCH(hex, ch);
68 vstring_sprintf_append(hex, "%%%02X", ch);
80 int ch; local
83 for (cp = hex; (ch = *cp) != 0; cp++) {
84 if (ch
[all...]
H A Dneuter.c50 int ch; local
52 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
53 if (strchr(bad, ch) != 0)
/macosx-10.9.5/cups-372.4/cups/ppdc/
H A Dppdc-catalog.cxx55 static int put_utf8(int ch, char *&ptr, char *end);
56 static int put_utf16(cups_file_t *fp, int ch);
218 int ch; // Current character from file local
227 while ((ch = get_utf16(fp, cs)) != 0)
231 if (ch == '\\')
233 if ((ch = get_utf16(fp, cs)) == 0)
236 if (ch == 'n')
237 ch = '\n';
238 else if (ch == 't')
239 ch
481 int ch; // Current character local
620 int ch; // Current character local
678 int ch; // Current character local
810 put_utf8(int ch, char *&ptr, char *end) argument
862 put_utf16(cups_file_t *fp, int ch) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dcss.js192 var ch = stream.next();
193 if (ch == "@") {stream.eatWhile(/[\w\\\-]/); return ret("def", stream.current());}
194 else if (ch == "/" && stream.eat("*")) {
198 else if (ch == "<" && stream.eat("!")) {
202 else if (ch == "=") ret(null, "compare");
203 else if ((ch == "~" || ch == "|") && stream.eat("=")) return ret(null, "compare");
204 else if (ch == "\"" || ch == "'") {
205 state.tokenize = tokenString(ch);
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dstrrchr.c45 char *strrchr(const char *p, int ch) argument
50 c = ch;
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclUtf.c95 static int UtfCount _ANSI_ARGS_((int ch));
104 * Find the number of bytes in the Utf character "ch".
107 * The return values is the number of bytes in the Utf character "ch".
116 UtfCount(ch)
117 int ch; /* The Tcl_UniChar whose size is returned. */
119 if ((ch > 0) && (ch < UNICODE_SELF)) {
122 if (ch <= 0x7FF) {
125 if (ch <= 0xFFFF) {
129 if (ch <
353 int ch, total, trail; local
463 int ch; local
493 Tcl_UniChar ch; local
634 Tcl_UniChar ch; local
713 Tcl_UniChar ch; local
744 Tcl_UniChar ch; local
826 Tcl_UniChar ch, upChar; local
879 Tcl_UniChar ch, lowChar; local
933 Tcl_UniChar ch, titleChar, lowChar; local
[all...]
/macosx-10.9.5/network_cmds-433/alias/
H A Dalias_ftp.c194 char ch; local
209 ch = sptr[i];
211 case -4: if (ch == 'P') state++; else return 0; break;
212 case -3: if (ch == 'O') state++; else return 0; break;
213 case -2: if (ch == 'R') state++; else return 0; break;
214 case -1: if (ch == 'T') state++; else return 0; break;
217 if (isspace(ch))
222 if (isdigit(ch)) {
223 octet = ch - '0';
229 if (isdigit(ch))
260 char ch, delim; local
347 char ch; local
413 char ch, delim; local
[all...]
/macosx-10.9.5/shell_cmds-175/locate/locate/
H A Dlocate.h63 define TOLOWER(ch) tolower(ch)
71 #define TOLOWER(ch) (myctype[ch])
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dnptrans.h52 inline UBool isProhibited(UChar32 ch);
114 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
116 inline UBool isLDHChar(UChar32 ch);
126 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){ argument
128 if(ch>0x007A){
132 if( (ch==0x002D) ||
133 (0x0030 <= ch && ch <= 0x0039) ||
134 (0x0041 <= ch && ch <
[all...]
/macosx-10.9.5/OpenPAM-20/openpam/lib/
H A Dopenpam_readline.c58 int ch; local
65 #define line_putch(ch) do { \
72 line[len++] = ch; \
77 ch = fgetc(f);
79 if (ch == '#') {
81 ch = fgetc(f);
82 } while (ch != EOF && ch != '\n');
85 if (ch == EOF) {
95 if (ch
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/term/
H A Dsend.tcl18 proc ::term::send::wrch {ch str} {
19 puts -nonewline $ch $str
20 flush $ch
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxslt/test/
H A Dext-test.tcl17 set ch [open ext-test.xsl]
18 set xsl [read $ch]
19 close $ch
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/misc/win32/
H A Dutf8.c78 int ch; local
82 ch = (unsigned char)(*in++);
83 if (!(ch & 0200)) {
88 *(out++) = ch;
92 if ((ch & 0300) != 0300) {
106 while ((ch & mask) == mask) {
111 newch = ch & ~mask;
151 if (((ch = (unsigned char)*(in++)) & 0300) != 0200)
154 newch |= (ch & 0077);
190 int ch; local
[all...]

Completed in 195 milliseconds

1234567891011>>