Searched refs:char (Results 26 - 50 of 485) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/TermReadKey/
H A Dtest.pl92 my ($char) = $_[0];
93 if ( ord($char) < 32 ) { $char = "^" . pack( "c", ord($char) + 64 ) }
94 elsif ( ord($char) > 126 ) { $char = ord($char) }
95 $char;
100 my ($char) = $_[0];
101 $char
[all...]
H A Dgenchars.pl134 char * cc_names[] = { ".join('',map("
177 PUSHs(sv_2mortal(newSVpv((char*)&s.c_cc[$values[$_]],1))); "."
212 char * name, value;
216 value = (char)SvIV(ST(i+1)); /* Store int value */
218 value = SvPV(ST(i+1),PL_na)[0]; /* Use first char of PV */
312 #main () { char c = s2.t_$c; }
323 #main () { char c = s3.t_$c; }
367 char * cc_names[] = { ".join('',map("
428 char * name, value;
432 value = (char)SvI
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/mail/
H A Dmailclient.el64 (lambda (char)
66 ((eq char ?\x20) "%20") ;; space
67 ((eq char ?\n) "%0D%0A") ;; newline
68 ((string-match "[-a-zA-Z0-9_:/.@]" (char-to-string char))
69 (char-to-string char)) ;; printable
71 (format "%%%02x" char)))) ;; escape
120 (goto-char (point-min))
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Debnf-bnf.el152 (goto-char start)
165 (goto-char origin)
379 (let ((char ?\040))
381 (while (< char ?\060)
382 (aset ebnf-bnf-token-table char 'non-terminal)
383 (setq char (1+ char)))
385 (while (< char ?\072)
386 (aset ebnf-bnf-token-table char 'integer)
387 (setq char (
[all...]
H A Debnf-ebx.el59 ;; factor ::= hex-char+
60 ;; | '[' '^'? ( char ( '-' char )? )+ ']'
70 ;; hex-char ::= '#x' [0-9A-Fa-f]+
72 ;; char ::= hex-char | 'any character except control characters'
75 ;; any-char ::= char | 'newline' | 'tab'
77 ;; ignore ::= '[' ('wfc' | 'WFC' | 'vc' | 'VC') ':' ( any-char - ']' )* ']'
79 ;; comment ::= '/*' ( any-char
[all...]
H A Debnf-dtd.el571 (goto-char start)
594 (goto-char origin)
940 (ebnf-dtd-namelist "enumeration" '(name name-char)))
1066 (let ((char ?\060))
1068 (while (< char ?\072)
1069 (aset ebnf-dtd-token-table char 'name-char)
1070 (setq char (1+ char)))
1072 (setq char
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/obsolete/
H A Dsun-curs.el39 (defvar char) function
117 (defun sc::pic-ins-at-mouse (char)
118 "Picture insert char at mouse location"
121 (delete-char -1)
122 (insert char)
196 (let ((char (aref string index))
199 (insert (sc::char-at-bit char bit))
205 (defun sc::char-at-bit (char bi
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dnovice.el51 (let (char)
60 (eq (aref keys 0) meta-prefix-char)
73 (goto-char (point-max))
82 (goto-char (point-max))
95 (while (progn (setq char (read-event))
96 (or (not (numberp char))
97 (not (memq (downcase char)
101 (setq char (downcase char))
102 (if (= char
[all...]
H A Ddescr-text.el114 (goto-char (point-min)))))
141 (goto-char (point-min))))))))
146 (wid-field (get-char-property pos 'field))
147 (wid-button (get-char-property pos 'button))
148 (wid-doc (get-char-property pos 'widget-doc))
188 (defcustom describe-char-unicodedata-file nil
191 diagnostics. If it is non-nil `describe-char' will print data
210 (defun describe-char-unicode-data (char)
213 The list is null if CHAR isn't found in `describe-char
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/rc4/
H A Drc4c.tcl24 unsigned char x;
25 unsigned char y;
26 unsigned char s[256];
32 static void trace(const char *format, ...)
45 Tcl_Free((char *)ctx);
61 char* str;
64 tmpObj = Tcl_NewByteArrayObj((char *)ctx, sizeof(RC4_CTX));
88 void swap (unsigned char *lhs, unsigned char *rhs) {
89 unsigned char
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/widget/
H A Darrowb.tcl55 static char up_bits = {
63 static char down_bits = {
71 static char left_bits = {
79 static char right_bits = {
87 static char upleft_bits = {
95 static char upright_bits = {
103 static char downleft_bits = {
111 static char downright_bits = {
119 static char plus_bits = {
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml15 | Kwd of char
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml15 | Kwd of char
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml15 | Kwd of char
/macosx-10.9.5/CPANInternal-140/Class-DBI/t/testlib/
H A DMyFoo.pm21 val char(1) default 'A',
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/cdbi/testlib/
H A DMyFoo.pm23 val char(1) default 'A',
/macosx-10.9.5/emacs-92/emacs/lisp/international/
H A Dencoded-kb.el68 final-char)
70 (setq final-char (charset-iso-final-char (car l)))
71 (if (> final-char 0)
72 (define-key map (char-to-string final-char)
106 intermediate-char final-char
109 ;; ESC $ <intermediate-char> <final-char>
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A Dmakeprop.pl79 print GPERF "const char* const propertyNameStrings[numCSSProperties] = {\n";
118 const Property* findProperty(register const char* str, register unsigned int len)
123 const char* getPropertyName(CSSPropertyID id)
144 const char* propertyName = propertyNameStrings[index];
158 char result[maxCSSPropertyNameLength + 1];
159 const char* cssPropertyName = getPropertyName(id);
160 const char* propertyNamePointer = cssPropertyName;
164 char* resultPointer = result;
165 while (char character = *propertyNamePointer++) {
167 char nextCharacte
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/base32/
H A Dbase32_c.tcl26 unsigned char* buf;
29 unsigned char* out;
30 unsigned char* at;
36 static const char map[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
47 out = (unsigned char*) Tcl_Alloc (nout*sizeof(char));
136 Tcl_Free ((char*) out);
146 unsigned char* buf;
149 unsigned char* out;
150 unsigned char* a
[all...]
H A Dbase32hex_c.tcl26 unsigned char* buf;
29 unsigned char* out;
30 unsigned char* at;
36 static const char map[] = "0123456789ABCDEFGHIJKLMNOPQRSTUV";
47 out = (unsigned char*) Tcl_Alloc (nout*sizeof(char));
136 Tcl_Free ((char*) out);
146 unsigned char* buf;
149 unsigned char* out;
150 unsigned char* a
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmonk.vim84 syn keyword monkFunc inexact->exact number->string string->number char=?
85 syn keyword monkFunc char-ci=? char<? char-ci<? char>? char-ci>? char<=?
86 syn keyword monkFunc char-ci<=? char>=? char
[all...]
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dswig.mli8 | C_char of char
9 | C_uchar of char
37 val get_char : 'a c_obj_t -> char
44 val make_char : char -> 'a c_obj_t
46 val make_uchar : char -> 'a c_obj_t
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/datefield/
H A Ddatefield.tcl59 proc KeyPress {w char sym state} {
117 if {! [regexp {[0-9]} $char]} { ;# Unknown character
133 if {$char < 2} {
134 set month "$char$m2"
137 set month "0$char"
142 set month "$m1$char"
143 if {$month > 12} {set month "0$char"}
166 if {$char < 3 || ($char == 3 && $month != "02")} {
167 set day "$char
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/term/
H A Dsup-mouse.el68 C proportional goto-char line to middle mouse-help
96 (goto-char (/ (* x
174 (defun sup-get-tty-num (term-char)
179 (char (read-char)))
180 (while (and (>= char ?0)
181 (<= char ?9))
182 (setq num (+ (* num 10) (- char ?0)))
183 (setq char (read-char)))
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dtimefield.itk77 method _keyPress {char sym state}
439 itcl::body iwidgets::Timefield::_keyPress {char sym state} {
472 if {![catch {expr {int($char)}}]} {
486 $itk_component(time) insert $icursor $char
494 if {$char < 2} {
496 $itk_component(time) insert 0 $char
502 } elseif {$char == 2} {
504 $itk_component(time) insert 0 $char
517 } elseif {$char > 2} {
519 $itk_component(time) insert 0 "0$char"
[all...]

Completed in 313 milliseconds

1234567891011>>