Searched refs:esc (Results 1 - 25 of 59) sorted by relevance

123

/macosx-10.10.1/Libc-1044.1.2/util/
H A Dfparseln.c47 * that starts in *sp, is escaped by the escape character esc.
50 isescaped(sp, p, esc)
52 int esc;
63 if (esc == '\0')
67 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
94 char esc, con, nl, com; local
107 esc = str[0];
127 if (*cp == com && !isescaped(ptr, cp, esc)) {
144 if (*cp == con && !isescaped(ptr, cp, esc)) {
164 if ((flags & FPARSELN_UNESCALL) != 0 && esc
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Doptesc.c28 * esc == '?' or ':' also escaped
35 optesc(Sfio_t* sp, register const char* s, int esc) argument
49 if (esc != '?' && esc != ':')
50 esc = 0;
87 if (c == ']' || c == esc)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/term/ansi/
H A Dcode.tcl15 proc ::term::ansi::code::esc {str} {return \033${str}}
16 proc ::term::ansi::code::escb {str} {esc \[${str}}
47 namespace export esc escb define const
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/term/ansi/code/
H A Dctrl.tcl43 proc ::term::ansi::code::ctrl::DEF {name esc value} {
45 define $name $esc $value
74 DEF sd esc D ; # Scroll Down
75 DEF su esc M ; # Scroll Up
82 DEF sca esc 7 ; # Save Cursor + Attributes
83 DEF rca esc 8 ; # Restore Cursor + Attributes
87 DEF st esc H ; # Set Tab (@ current position)
96 DEF rd esc c ; # Reset Device
105 DEF eg esc F ; # Enter Graphics Mode
106 DEF lg esc
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/international/
H A Dutf-7.el63 (let ((not-esc (if imap "^&" "^+"))
66 (skip-chars-forward not-esc)
73 (unless (= run-length 0) ; encoded lone esc-char
95 (esc (if imap ?& ?+))
102 (not-skip-chars (format "^%s%c" skip-chars esc)))
114 (insert esc)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/base64/
H A Dyencode.tcl42 set esc 0
45 if {$c == 61 && $esc == 0} {
46 set esc 1
50 if {$esc} {
52 set esc 0
109 int len, rlen, esc;
126 for (p = input, esc = 0, rlen = 0; p < input + len; p++) {
127 if (*p == 61 && esc == 0) {
128 esc = 1;
132 if (esc) {
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dshellwords.rb74 |word, sq, dq, esc, garbage, sep|
76 field << (word || sq || (dq || esc).gsub(/\\(.)/, '\\1'))
/macosx-10.10.1/KerberosHelper-151/Source/
H A DDeconstructServiceName.c100 static char *ConvertDomainLabelToCString_withescape(const domainlabel *const label, char *ptr, char esc) { argument
107 if (esc) {
108 if (c == '.' || c == esc) // If character is a dot or the escape character
109 *ptr++ = esc; // Output escape character
112 *ptr++ = esc;
125 static char *ConvertDomainNameToCString_withescape(const domainname *const name, char *ptr, char esc) { argument
133 ptr = ConvertDomainLabelToCString_withescape((const domainlabel *)src, ptr, esc);
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_string.c58 int esc = 0; local
62 if (esc) {
134 esc = 0;
137 if ((esc = c == '\\') == 0)
/macosx-10.10.1/less-25/less/
H A Dfilename.c89 char *esc = get_meta_escape(); local
90 int esclen = strlen(esc);
93 if (esclen > 0 && strncmp(str, esc, esclen) == 0)
153 char *esc = get_meta_escape(); local
154 int esclen = strlen(esc);
210 strcpy(p, esc);
747 char *esc; local
750 esc = get_meta_escape();
751 if (strlen(esc) == 0)
752 esc
[all...]
H A Dedit.c72 char *esc = get_meta_escape(); local
73 int esclen = strlen(esc);
85 strncmp(s, esc, esclen) == 0)
/macosx-10.10.1/ppp-786.1.1/Helpers/pppdump/
H A Dpppdump.c229 int esc; member in struct:pkt
257 spkt.esc = rpkt.esc = 0;
284 if (pkt->esc) {
291 pkt->esc = 0;
381 if (!pkt->esc) {
382 pkt->esc = 1;
387 if (pkt->esc) {
389 pkt->esc = 0;
/macosx-10.10.1/file_cmds-242/ls/
H A Dutil.c171 static const char esc[] = "\\\\\"\"\aa\bb\ff\nn\rr\tt\vv"; local
189 (p = strchr(esc, (char)wc)) != NULL) {
/macosx-10.10.1/OpenSSL098-52/src/crypto/txt_db/
H A Dtxt_db.c75 int esc=0; local
135 esc=0;
141 if (esc)
152 esc=(*f == '\\');
/macosx-10.10.1/remote_cmds-47/telnet.tproj/
H A Dsys_bsd.c385 cc_t esc; local
626 esc = (rlogin != _POSIX_VDISABLE) ? rlogin : escape;
627 if ((tmp_tc.c_cc[VEOL] != esc)
629 && (tmp_tc.c_cc[VEOL2] != esc)
633 tmp_tc.c_cc[VEOL] = esc;
636 tmp_tc.c_cc[VEOL2] = esc;
641 tc.t_brkc = esc;
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/telnet/
H A Dsys_bsd.c327 cc_t esc; local
479 esc = (rlogin != _POSIX_VDISABLE) ? rlogin : escape;
480 if ((tmp_tc.c_cc[VEOL] != esc)
482 && (tmp_tc.c_cc[VEOL2] != esc)
486 tmp_tc.c_cc[VEOL] = esc;
489 tmp_tc.c_cc[VEOL2] = esc;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/uri/
H A Durn-scheme.tcl121 variable esc {%[0-9a-fA-F]{2}}
123 variable NSSpart "($esc|\[$trans\])+"
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOStatistics.cpp384 IOEventSourceCounter *esc; local
388 while ((esc = SLIST_FIRST(&found->counterList))) {
390 kfree(esc, sizeof(IOEventSourceCounter));
583 void IOStatistics::attachWorkLoopEventSource(IOWorkLoopCounter *wlc, IOEventSourceCounter *esc) argument
599 nextWorkLoopDependency->loadTag = esc->parentClass->parentKext->loadTag;
607 void IOStatistics::detachWorkLoopEventSource(IOWorkLoopCounter *wlc, IOEventSourceCounter *esc) argument
620 sought.loadTag = esc->parentClass->parentKext->loadTag;
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Drbt_set.cpp121 UnicodeString esc; local
122 _escape(buf, esc);
123 CharString cbuf(esc);
/macosx-10.10.1/screen-22/screen/
H A Dscreen.h203 int esc; /* his new escape character unless -1 */ member in struct:msg::__anon12354::__anon12356
204 int meta_esc; /* his new meta esc character unless -1 */
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOStatisticsPrivate.h324 static void attachWorkLoopEventSource(IOWorkLoopCounter *wlc, IOEventSourceCounter *esc);
325 static void detachWorkLoopEventSource(IOWorkLoopCounter *wlc, IOEventSourceCounter *esc);
/macosx-10.10.1/procmail-14/procmail/src/
H A Dmailfold.c49 { static const char esc[]=ESCAP,*ffrom,*endp; local
51 doesc=0,rwrite(s,esc,STRLEN(esc)),lastdump++; /* escape it */
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/regex/
H A Dregcomp.c104 short esc; member in struct:Token_s
925 env->token.att = env->token.esc = 0;
978 env->token.esc = env->token.len;
987 env->token.esc = env->token.len;
2050 int esc; local
2284 switch (i = chr(env, &esc))
2289 env->cursor -= esc + 1;
2296 if ((i = chr(env, &esc)) < 0)
2309 switch (i = chr(env, &esc))
2322 if ((i = chr(env, &esc)) <
[all...]
/macosx-10.10.1/ruby-106/ruby/
H A Dregsyntax.c40 (OnigCodePoint )'\\' /* esc */
57 (OnigCodePoint )'\\' /* esc */
78 (OnigCodePoint )'\\' /* esc */
99 (OnigCodePoint )'\\' /* esc */
121 (OnigCodePoint )'\\' /* esc */
137 (OnigCodePoint )'\\' /* esc */
161 (OnigCodePoint )'\\' /* esc */
187 (OnigCodePoint )'\\' /* esc */
218 (OnigCodePoint )'\\' /* esc */
255 (OnigCodePoint )'\\' /* esc */
[all...]
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_config.rb53 esc=a\\r\\n\\b\\tb
67 assert_equal(['', 'a', 'bar', 'baz', 'd', 'dq', 'dq2', 'esc', 'foo\\bar', 'sq'], c['default'].keys.sort)
76 assert_equal("a\r\n\b\tb", c['default']['esc'])

Completed in 187 milliseconds

123