Searched refs:ch (Results 176 - 200 of 1921) sorted by relevance

1234567891011>>

/macosx-10.9.5/ncurses-42/ncurses/ncurses/trace/
H A Dlib_traceatr.c183 _nc_altcharset_name(attr_t attr, chtype ch) argument
234 if (ChCharOf(cp[1]) == ChCharOf(ch)) {
241 ch = ChCharOf(*found);
243 if (sp->val == ch) {
253 _tracechtype2(int bufnum, chtype ch) argument
260 if ((found = _nc_altcharset_name(ChAttrOf(ch), ch)) != 0) {
263 (void) _nc_trace_bufcat(bufnum, _nc_tracechar(SP, (int) ChCharOf(ch)));
265 if (ChAttrOf(ch) != A_NORMAL) {
268 _traceattr2(bufnum + 20, ChAttrOf(ch)));
277 _tracechtype(chtype ch) argument
292 _tracecchar_t2(int bufnum, const cchar_t *ch) argument
350 _tracecchar_t(const cchar_t *ch) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dattr_scan0.c170 int ch; local
172 if ((ch = vstring_get_null(plain_buf, fp)) == VSTREAM_EOF) {
178 if (ch != 0) {
185 return (ch);
194 int ch; local
198 if ((ch = attr_scan0_string(fp, base64_buf, context)) < 0)
205 return (ch);
214 int ch; local
216 if ((ch = attr_scan0_string(fp, str_buf, context)) < 0)
223 return (ch);
233 int ch; local
258 int ch; local
[all...]
/macosx-10.9.5/text_cmds-87/paste/
H A Dpaste.c78 int ch, rval, seq; local
86 while ((ch = getopt(argc, argv, "d:s")) != -1)
87 switch(ch) {
139 wchar_t ch; local
166 (ch = delim[(lp->cnt - 1) % delimcnt]))
167 putwchar(ch);
175 (ch = delim[(lp->cnt - 1) % delimcnt]))
176 putwchar(ch);
186 if ((ch = delim[cnt % delimcnt]))
187 putwchar(ch);
211 wint_t ch; local
250 wchar_t ch, *p; local
[all...]
/macosx-10.9.5/text_cmds-87/tr/
H A Dcset.c69 cset_add(struct cset *cs, wchar_t ch) argument
84 csn->csn_min = csn->csn_max = ch;
93 csn = cs->cs_root = cset_splay(cs->cs_root, ch);
98 if (cset_rangecmp(csn, ch) == 0)
107 ncsn->csn_min = ncsn->csn_max = ch;
108 if (cset_rangecmp(csn, ch) < 0) {
151 cset_in_hard(struct cset *cs, wchar_t ch) argument
156 if (csc->csc_invert ^ iswctype(ch, csc->csc_type) != 0)
159 cs->cs_root = cset_splay(cs->cs_root, ch);
160 return (cs->cs_invert ^ cset_rangecmp(cs->cs_root, ch)
214 cset_rangecmp(struct csnode *t, wchar_t ch) argument
225 cset_splay(struct csnode *t, wchar_t ch) argument
275 cset_delete(struct csnode *t, wchar_t ch) argument
[all...]
/macosx-10.9.5/bless-98/
H A Dbless.c116 int ch, longindex; local
141 while ((ch = getopt_long_only(argc, argv, "", longopts, &longindex)) != -1) {
143 switch(ch) {
157 actargs[ch].present = 1;
175 if(actargs[ch].present) {
180 actargs[ch].present = 1;
185 actargs[ch].hasArg = 0;
188 actargs[ch].hasArg = 1;
189 strlcpy(actargs[ch].argument, optarg, sizeof(actargs[ch]
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFBuiltinConverters.c57 UTF32Char ch = *(character++), nextCh, composedChar; local
60 if (CFUniCharIsSurrogateHighCharacter(ch) || CFUniCharIsSurrogateLowCharacter(ch)) {
62 return ch;
70 if (CFUniCharIsMemberOf(nextCh, kCFUniCharNonBaseCharacterSet) && ((composedChar = CFUniCharPrecomposeCharacter(ch, nextCh)) != 0xFFFD)) {
74 ch = composedChar;
82 if (usedCharLen > 1) return ch;
913 CF_INLINE uint16_t __CFUTF8BytesToWriteForCharacter(uint32_t ch) { argument
914 if (ch < 0x80) return 1;
915 else if (ch <
923 __CFToUTF8Core(uint32_t ch, uint8_t *bytes, uint32_t maxByteLen) argument
948 uint32_t ch; local
1017 uint32_t ch; local
1110 uint32_t ch; local
1128 uint32_t ch; local
[all...]
H A DCFURL.inc.h75 UniChar ch = characterArray[idx]; variable
76 if (':' == ch) {
105 } else if (!scheme_valid(ch)) {
237 UniChar ch; variable
266 ch = characterArray[pathRg.location + pathRg.length - 1];
267 if (ch == '/') {
269 } else if (ch == '.') {
273 ch = characterArray[pathRg.location + pathRg.length - 2];
274 if (ch == '/') {
276 } else if (ch !
317 UniChar ch = characterArray[idx]; variable
[all...]
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Ddemo_termcap.c64 int ch = UChar(*str++); local
65 switch (ch) {
100 if (isgraph(ch))
101 fputc(ch, stdout);
102 else if (ch < 32)
103 printf("^%c", ch + '@');
105 printf("\\%03o", ch);
H A Dhashtest.c110 one_cycle(int ch) argument
113 genlines(ch);
114 } else if (ch != 'a') {
116 genlines(ch);
123 char ch; local
143 for (ch = hi; ch >= lo; ch--)
144 one_cycle(ch);
146 for (ch
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/wind/
H A Dutf8.c221 uint32_t ch; local
225 ch = in[i];
227 if (ch < 0x80) {
229 } else if (ch < 0x800) {
231 } else if (ch < 0x10000) {
233 } else if (ch <= 0x10FFFF) {
246 out[3] = (ch | 0x80) & 0xbf;
247 ch = ch << 6;
249 out[2] = (ch |
542 uint16_t ch; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DASTFactory.cpp308 char ch; variable
310 if( in.get(ch) )
312 if( ch == '<' )
320 in.putback(ch);
324 in.putback(ch);
328 in.putback(ch);
337 char ch; variable
343 infile.get(ch); // '<'
344 if( ch != '<' )
347 error += ch
412 char ch; variable
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/ex_apprec/
H A Dex_apprec_autop.c24 int ch; local
40 ch = ((u_int8_t *)argp->dirname.data)[i];
41 printf(isprint(ch) || ch == 0x0a ? "%c" : "%#x ", ch);
/macosx-10.9.5/CPANInternal-140/Net-DNS/
H A Dnetdns.c180 * special(ch)
187 special(int ch) { argument
188 switch (ch) {
208 * printable(ch)
215 printable(int ch) { argument
216 return (ch > 0x20 && ch < 0x7f);
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Dstudly.el44 (let ((ch (following-char)))
45 (or (and (>= ch ?a) (<= ch ?z))
46 (and (>= ch ?A) (<= ch ?Z)))))
/macosx-10.9.5/ruby-104/ruby/lib/irb/
H A Dslex.rb106 ch = chrs.shift
107 if node = @Tree[ch]
111 chrs.unshift ch
132 ch = chrs.shift
133 if node = @Tree[ch]
138 DebugLogger.pp ch
156 @Tree[ch] = node
177 ch = chrs.shift
178 if node = @Tree[ch]
179 if ret = node.match(chrs, op+ch)
[all...]
/macosx-10.9.5/tidy-15.12/tidy/src/
H A Dutf8.h31 uint TY_(GetUTF8)( ctmbstr str, uint *ch );
41 Bool TY_(IsHighSurrogate)( tchar ch );
42 Bool TY_(IsLowSurrogate)( tchar ch );
44 Bool TY_(IsCombinedChar)( tchar ch );
45 Bool TY_(IsValidCombinedChar)( tchar ch );
/macosx-10.9.5/less-23/less/
H A Dcharset.c454 prutfchar(ch)
455 LWCHAR ch;
459 if (ch == ESC)
461 else if (ch < 128 && control_char(ch))
463 if (!control_char(ch ^ 0100))
464 SNPRINTF1(buf, sizeof(buf), "^%c", ((char) ch) ^ 0100);
466 SNPRINTF1(buf, sizeof(buf), binfmt, (char) ch);
467 } else if (is_ubin_char(ch))
468 SNPRINTF1(buf, sizeof(buf), utfbinfmt, ch);
670 LWCHAR ch; local
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dkey.c70 char ch; /* single character of key */ member in struct:key_node_t
164 * Looks up *ch in map and then reads characters until a
168 * The last character read is returned in *ch.
171 key_get(EditLine *el, char *ch, key_value_t *val) argument
174 return (node_trav(el, el->el_key.map, ch, val));
272 node_trav(EditLine *el, key_node_t *ptr, char *ch, key_value_t *val) argument
275 if (ptr->ch == *ch) {
279 if (el_getc(el, ch) != 1) { /* if EOF or error */
284 return (node_trav(el, ptr->next, ch, va
451 node__get(int ch) argument
604 key__decode_char(char *buf, int cnt, int ch) argument
[all...]
/macosx-10.9.5/screen-22/screen/
H A Dinput.c152 char ch; local
172 ch = *pbuf++;
176 inpdata->inp.buf[inpdata->inp.len] = ch;
177 inpdata->inp.buf[inpdata->inp.len + 1] = ch; /* gross */
180 ch = inpdata->inp.buf[inpdata->inp.len];
185 (*inpdata->inpfinfunc)(&ch, 1, inpdata->priv); /* raw */
186 if (ch)
189 if (((unsigned char)ch & 0177) >= ' ' && ch != 0177 && inpdata->inp.len < inpdata->inpmaxlen)
193 inpdata->inp.buf[inpdata->inp.pos++] = ch;
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/wall.tproj/
H A Dwall.c113 int ch; local
133 while ((ch = getopt(argc, argv, "g:n")) != -1)
134 switch (ch) {
236 unsigned char ch; local
291 for (cnt = 0, p = lbuf; (ch = *p) != '\0'; ++p, ++cnt) {
292 if (ch == '\r') {
296 } else if (ch == '\n') {
311 if (((ch & 0x80) && ch < 0xA0) ||
313 (!isprint(ch)
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dbn_mp_read_radix.c22 char ch; local
51 ch = (char) ((radix < 36) ? toupper (*str) : *str);
53 if (ch == mp_s_rmap[y]) {
/macosx-10.9.5/ICU-511.35/icuSources/test/letest/
H A DSimpleFontInstance.h49 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
53 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
55 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const;
/macosx-10.9.5/diskdev_cmds-572.1.1/mount_devfs.tproj/
H A Dmount_devfs.c84 int ch, mntflags; local
88 while ((ch = getopt(argc, argv, "o:")) != EOF)
89 switch (ch) {
/macosx-10.9.5/diskdev_cmds-572.1.1/mount_fdesc.tproj/
H A Dmount_fdesc.c86 int ch, mntflags; local
91 while ((ch = getopt(argc, argv, "o:")) != EOF)
92 switch (ch) {
/macosx-10.9.5/dtrace-118.1/test/tst/common/typedef/
H A Dtst.TypedefDataAssign.d62 char ch;
68 char ch;
105 ns.ch = 'c';
109 nu.ch = 'd';
115 printf("Struct: %c, %d, %d\n", ns.ch, ns.in, ns.lg);
116 printf("Union: %c, %d, %d\n", nu.ch, nu.in, nu.lg);

Completed in 220 milliseconds

1234567891011>>