Searched refs:ch (Results 151 - 175 of 1921) sorted by relevance

1234567891011>>

/macosx-10.9.5/Security-55471.14.18/libsecurity_transform/misc/
H A Dbase32alpha2vals19 my $ch = substr($alphabet, $i, 1);
20 my $v = ord($ch);
21 print "$i: $ch $v\n";
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextBoundaries.cpp43 UChar32 ch; local
44 U16_NEXT(characters, i, length, ch);
45 if (!requiresContextForWordBoundary(ch))
55 UChar32 ch; local
56 U16_PREV(characters, 0, i, ch);
57 if (!requiresContextForWordBoundary(ch))
H A DDateTimeFormat.cpp93 static DateTimeFormat::FieldType mapCharacterToFieldType(const UChar ch) argument
95 if (isASCIIUpper(ch))
96 return upperCaseToFieldTypeMap[ch - 'A'];
98 if (isASCIILower(ch))
99 return lowerCaseToFieldTypeMap[ch - 'a'];
119 const UChar ch = source[index]; local
122 if (ch == '\'') {
127 literalBuffer.append(ch);
131 if (ch == '\'') {
137 fieldType = mapCharacterToFieldType(ch);
244 isASCIIAlphabetOrQuote(UChar ch) argument
[all...]
/macosx-10.9.5/file_cmds-230/pax/
H A Dcpio.h109 #define SHRT_EXT(ch) ((((unsigned)(ch)[0])<<8) | (((unsigned)(ch)[1])&0xff))
110 #define RSHRT_EXT(ch) ((((unsigned)(ch)[1])<<8) | (((unsigned)(ch)[0])&0xff))
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dreadlline.c73 int ch; local
87 while ((ch = VSTREAM_GETC(fp)) != VSTREAM_EOF && ch != '\n')
88 VSTRING_ADDCH(buf, ch);
89 if (ch == '\n' && lineno != 0)
97 if (ch == VSTREAM_EOF)
H A Dvalid_hostname.c85 int ch; local
99 for (cp = name; (ch = *(unsigned char *) cp) != 0; cp++) {
100 if (ISALNUM(ch) || ch == '_') { /* grr.. */
109 if (!ISDIGIT(ch))
111 } else if (ch == '.') {
118 } else if (ch == '-') {
128 else if (ch == ':' && valid_ipv6_hostaddr(name, DONT_GRIPE)) {
136 myname, ch, name);
190 int ch; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dtester17 set ch [open [lindex $argv 0]]
18 set data [read $ch]
19 close $ch
/macosx-10.9.5/text_cmds-87/colrm/
H A Dcolrm.c69 int ch, width; local
74 while ((ch = getopt(argc, argv, "")) != -1)
75 switch(ch) {
105 switch (ch = getwchar()) {
120 if ((width = wcwidth(ch)) > 0)
126 putwchar(ch) == WEOF)
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbase64.c200 int ch; local
206 while ((ch = *src++) != '\0') {
207 if (isspace(ch)) /* Skip whitespace anywhere. */
210 if (ch == Pad64)
213 pos = strchr(Base64, ch);
265 if (ch == Pad64) { /* We got a pad char. */
266 ch = *src++; /* Skip it, get next. */
274 for (; ch != '\0'; ch = *src++)
275 if (!isspace(ch))
[all...]
/macosx-10.9.5/basic_cmds-55/uudecode/
H A Dbase64.c203 int tarindex, state, ch; local
209 while ((ch = *src++) != '\0') {
210 if (isspace((unsigned char)ch)) /* Skip whitespace anywhere. */
213 if (ch == Pad64)
216 pos = strchr(Base64, ch);
270 if (ch == Pad64) { /* We got a pad char. */
271 ch = *src++; /* Skip it, get next. */
279 for ((void)NULL; ch != '\0'; ch = *src++)
280 if (!isspace((unsigned char)ch))
[all...]
/macosx-10.9.5/basic_cmds-55/uuencode/
H A Dbase64.c203 int tarindex, state, ch; local
209 while ((ch = *src++) != '\0') {
210 if (isspace((unsigned char)ch)) /* Skip whitespace anywhere. */
213 if (ch == Pad64)
216 pos = strchr(Base64, ch);
270 if (ch == Pad64) { /* We got a pad char. */
271 ch = *src++; /* Skip it, get next. */
279 for ((void)NULL; ch != '\0'; ch = *src++)
280 if (!isspace((unsigned char)ch))
[all...]
/macosx-10.9.5/less-23/less/
H A Dline.c142 is_ascii_char(ch)
143 LWCHAR ch;
145 return (ch <= 0x7F);
291 LWCHAR ch; local
296 ch = get_wchar(linebuf + from);
297 if (!is_composing_char(ch) && !is_combining_char(prev_ch, ch))
298 width = is_wide_char(ch) ? 2 : 1;
299 prev_ch = ch;
423 pwidth(ch,
491 LWCHAR ch = step_char(&p, -1, linebuf + lmargin); local
525 LWCHAR ch = step_char(&p, -1, linebuf); local
[all...]
/macosx-10.9.5/libresolv-54/
H A Dbase64.c212 int tarindex, state, ch; local
218 while ((ch = *src++) != '\0') {
219 if (isspace(ch)) /* Skip whitespace anywhere. */
222 if (ch == Pad64)
225 pos = strchr(Base64, ch);
279 if (ch == Pad64) { /* We got a pad char. */
280 ch = *src++; /* Skip it, get next. */
288 for ((void)NULL; ch != '\0'; ch = *src++)
289 if (!isspace(ch))
[all...]
/macosx-10.9.5/text_cmds-87/tr/
H A Dcmap.c121 cmap_lookup_hard(struct cmap *cm, wint_t ch) argument
125 cm->cm_root = cmap_splay(cm->cm_root, ch);
126 if (cm->cm_root->cmn_from == ch)
129 return (cm->cm_def == CM_DEF_SELF ? ch : cm->cm_def);
139 wint_t ch; local
141 for (ch = 0; ch < CM_CACHE_SIZE; ch++)
142 cm->cm_cache[ch] = cmap_lookup_hard(cm, ch);
165 cmap_splay(struct cmapnode *t, wint_t ch) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/generic/
H A DSphereFile.c25 if (ch) sp_close((SP_FILE *)ch); \
35 GetSphereHeader(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, Tcl_Obj *obj,
63 OpenSphereFile(Sound *s, Tcl_Interp *interp, Tcl_Channel *ch, char *mode) argument
66 *ch = (Tcl_Channel) sp_open(Snack_GetSoundFilename(s), mode);
67 if (*ch == NULL) {
76 GetSphereHeader(s, interp, *ch, NULL, NULL);
99 CloseSphereFile(Sound *s, Tcl_Interp *interp, Tcl_Channel *ch) argument
102 if (sp_close((SP_FILE *)*ch))
104 *ch
110 ReadSphereSamples(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, char *ibuf, float *obuf, int len) argument
196 SeekSphereFile(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, int pos) argument
208 GetSphereHeader(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, Tcl_Obj *obj, char *buf) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dclosebrackets.js19 if (cur.ch && cur.ch < line.length &&
20 pairs.indexOf(line.slice(cur.ch - 1, cur.ch + 1)) % 2 == 0)
21 cm.replaceRange("", CodeMirror.Pos(cur.line, cur.ch - 1), CodeMirror.Pos(cur.line, cur.ch + 1));
34 var cur = cm.getCursor(), ahead = cm.getRange(cur, CodeMirror.Pos(cur.line, cur.ch + 1));
41 var cur = cm.getCursor(), ahead = CodeMirror.Pos(cur.line, cur.ch + 1);
42 var line = cm.getLine(cur.line), nextChar = line.charAt(cur.ch);
43 if (line.length == cur.ch || closingBracket
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/network_io/unix/
H A Dinet_pton.c109 int saw_digit, octets, ch; local
115 while ((ch = *src++) != '\0') {
118 if ((pch = strchr(digits, ch)) != NULL) {
129 } else if (ch == '.' && saw_digit) {
165 int ch, saw_xdigit; local
178 while ((ch = *src++) != '\0') {
181 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
182 pch = strchr((xdigits = xdigits_u), ch);
191 if (ch == ':') {
207 if (ch
[all...]
/macosx-10.9.5/apr-30/apr/apr/network_io/unix/
H A Dinet_pton.c109 int saw_digit, octets, ch; local
115 while ((ch = *src++) != '\0') {
118 if ((pch = strchr(digits, ch)) != NULL) {
129 } else if (ch == '.' && saw_digit) {
165 int ch, saw_xdigit; local
178 while ((ch = *src++) != '\0') {
181 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
182 pch = strchr((xdigits = xdigits_u), ch);
191 if (ch == ':') {
207 if (ch
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dinet_pton.c84 int saw_digit, octets, ch; local
90 while ((ch = *src++) != '\0') {
93 if ((pch = strchr(digits, ch)) != NULL) {
106 } else if (ch == '.' && saw_digit) {
139 int ch, seen_xdigits; local
152 while ((ch = *src++) != '\0') {
155 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
156 pch = strchr((xdigits = xdigits_u), ch);
164 if (ch == ':') {
180 if (ch
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/
H A Dlwinetpton.c83 int saw_digit, octets, ch; local
89 while ((ch = *src++) != '\0') {
92 if ((pch = strchr(digits, ch)) != NULL) {
103 } else if (ch == '.' && saw_digit) {
141 int ch, seen_xdigits; local
154 while ((ch = *src++) != '\0') {
157 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
158 pch = strchr((xdigits = xdigits_u), ch);
166 if (ch == ':') {
182 if (ch
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dinet_pton.c96 int saw_digit, octets, ch; local
103 while((ch = *src++) != '\0') {
106 if((pch = strchr(digits, ch)) != NULL) {
120 else if(ch == '.' && saw_digit) {
156 int ch, saw_xdigit; local
169 while((ch = *src++) != '\0') {
172 if((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
173 pch = strchr((xdigits = xdigits_u), ch);
181 if(ch == ':') {
197 if(ch
[all...]
/macosx-10.9.5/ntp-88/lib/isc/
H A Dinet_pton.c84 int saw_digit, octets, ch; local
90 while ((ch = *src++) != '\0') {
93 if ((pch = strchr(digits, ch)) != NULL) {
106 } else if (ch == '.' && saw_digit) {
139 int ch, seen_xdigits; local
152 while ((ch = *src++) != '\0') {
155 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
156 pch = strchr((xdigits = xdigits_u), ch);
164 if (ch == ':') {
180 if (ch
[all...]
/macosx-10.9.5/rsync-42/rsync/lib/
H A Dinet_pton.c80 int saw_digit, octets, ch; local
86 while ((ch = *src++) != '\0') {
89 if ((pch = strchr(digits, ch)) != NULL) {
100 } else if (ch == '.' && saw_digit) {
137 int ch, saw_xdigit; local
150 while ((ch = *src++) != '\0') {
153 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
154 pch = strchr((xdigits = xdigits_u), ch);
163 if (ch == ':') {
179 if (ch
[all...]
/macosx-10.9.5/tcsh-65/tcsh/
H A Ded.xmap.c14 * int GetXkey(ch,val);
15 * CStr *ch;
18 * Looks up *ch in map and then reads characters until a
22 * The last character read is returned in *ch.
106 Char ch; /* single character of Xkey */ member in struct:Xmapnode
165 GetXkey(CStr *ch, XmapVal *val) argument
167 return (TraverseMap(Xmap, ch, val));
175 TraverseMap(XmapNode *ptr, CStr *ch, XmapVal *val) argument
179 if (ptr->ch == *(ch
415 GetFreeNode(CStr *ch) argument
577 unparsech(struct Strbuf *buf, Char ch) argument
663 Char ch; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/net/
H A Dinet_pton.c76 int saw_digit, octets, ch; local
83 while ((ch = *src++) != '\0') {
86 if ((pch = strchr(digits, ch)) != NULL) {
99 } else if (ch == '.' && saw_digit) {
135 int ch, seen_xdigits; local
148 while ((ch = *src++) != '\0') {
151 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
152 pch = strchr((xdigits = xdigits_u), ch);
160 if (ch == ':') {
178 if (ch
[all...]

Completed in 412 milliseconds

1234567891011>>