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

1234567891011>>

/macosx-10.10/ncurses-44/ncurses/test/
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...]
H A Drailroad.c71 PutChar(int ch) argument
73 putchar(ch);
112 int ch, first, last; local
120 ch = *string;
121 if (ch != ' ') {
129 PutChar(ch);
132 last = ch;
133 if (isalpha(ch)) {
134 first = isupper(ch) ? 'A' : 'a';
135 } else if (isdigit(ch)) {
[all...]
/macosx-10.10/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.10/emacs-93/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.10/ruby-106/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.10/tidy-15.15/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.10/WTF-7600.1.24/wtf/unicode/
H A DUTF8.cpp136 UChar32 ch; local
141 ch = static_cast<unsigned short>(*source++);
144 if (ch < (UChar32)0x80)
158 *--target = (char)((ch | byteMark) & byteMask);
159 ch >>= 6;
162 *--target = (char)(ch | firstByteMark[bytesToWrite]);
179 UChar32 ch; local
184 ch = static_cast<unsigned short>(*source++);
186 if (ch >= 0xD800 && ch <
[all...]
/macosx-10.10/less-25/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.10/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dsass.js28 var ch = stream.peek();
30 if (ch === ")"){
34 }else if (ch === "("){
39 }else if (ch === "'" || ch === '"'){
120 var ch = stream.peek();
140 if (ch === "."){
155 if (ch === "#"){
195 if (ch === "$"){
207 if (ch
[all...]
/macosx-10.10/lukemftp-14/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.10/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.10/OpenSSL098-52/src/fips/
H A Dfips_utl.h83 unsigned char ch; local
88 ch = in[n1++] - '0';
90 ch = in[n1++] - 'A' + 10;
92 ch = in[n1++] - 'a' + 10;
97 out[n2++]=ch;
100 out[n2] = ch << 4;
103 ch = in[n1++] - '0';
105 ch = in[n1++] - 'A' + 10;
107 ch = in[n1++] - 'a' + 10;
110 out[n2++] |= ch;
229 unsigned char ch; local
[all...]
/macosx-10.10/remote_cmds-47/wall.tproj/
H A Dwall.c115 int ch; local
135 while ((ch = getopt(argc, argv, "g:n")) != -1)
136 switch (ch) {
238 unsigned char ch; local
293 for (cnt = 0, p = lbuf; (ch = *p) != '\0'; ++p, ++cnt) {
294 if (ch == '\r') {
298 } else if (ch == '\n') {
313 if (((ch & 0x80) && ch < 0xA0) ||
315 (!isprint(ch)
[all...]
/macosx-10.10/Heimdal-398.1.2/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.10/ICU-531.30/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.10/ICU-531.30/icuSources/test/perf/leperf/
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.10/diskdev_cmds-576/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.10/diskdev_cmds-576/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.10/dtrace-147/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);
/macosx-10.10/libpcap-48/libpcap/msdos/
H A Dbin2c.c20 int ch, i; local
34 while ((ch = fgetc(inFile)) != EOF)
38 fprintf (outFile, "0x%02X,", ch);
/macosx-10.10/postfix-255/postfix/src/global/
H A Ddomain_list.c101 int ch; local
105 while ((ch = GETOPT(argc, argv, "v")) > 0) {
106 switch (ch) {
H A Dnamadr_list.c109 int ch; local
113 while ((ch = GETOPT(argc, argv, "v")) > 0) {
114 switch (ch) {
H A Dstring_list.c94 int ch; local
98 while ((ch = GETOPT(argc, argv, "v")) > 0) {
99 switch (ch) {
/macosx-10.10/remote_cmds-47/domainname.tproj/
H A Ddomainname.c57 int ch; local
60 while ((ch = getopt(argc, argv, "")) != -1)
61 switch (ch) {
/macosx-10.10/shell_cmds-179/env/
H A Denv.c65 int ch; local
67 while ((ch = getopt(argc, argv, "-i")) != -1)
68 switch(ch) {

Completed in 193 milliseconds

1234567891011>>