Searched refs:esc (Results 26 - 50 of 59) sorted by relevance

123

/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dwebsupport.js594 var esc = $(document.createElement('div'));
601 return escape ? esc.text(cur || "").html() : cur;
/macosx-10.10.1/rsync-45/rsync/
H A Dlog.c670 int log_format_has(const char *format, char esc) argument
684 if (*p == esc)
H A Dproto.h195 int log_format_has(const char *format, char esc);
/macosx-10.10.1/screen-22/screen/
H A Dscreen.c2300 MakeWinMsgEv(str, win, esc, padlen, ev, rec)
2303 int esc;
2348 if (*s != esc)
2350 if (esc == '%')
2369 if (*++s == esc) /* double escape ? */
2803 MakeWinMsg(s, win, esc)
2806 int esc;
2808 return MakeWinMsgEv(s, win, esc, 0, (struct event *)0, 0);
H A Dattacher.c325 m.m.attach.esc = DefaultEsc;
H A Dsocket.c1166 if (m->m.attach.esc != -1 && m->m.attach.meta_esc != -1)
1168 D_user->u_Esc = m->m.attach.esc;
/macosx-10.10.1/vim-55/src/proto/
H A Dmisc1.pro55 void expand_env_esc __ARGS((char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr));
/macosx-10.10.1/less-25/less/
H A Dcmdbuf.c930 char *esc = get_meta_escape(); local
931 int esclen = strlen(esc);
984 strncmp(p, esc, esclen) == 0)
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregc_lex.c755 static chr esc[] = {
799 RETV(PLAIN, chrnamed(v, esc, ENDOF(esc), CHR('\033')));
748 static chr esc[] = { local
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregc_lex.c666 static chr esc[] = { local
708 RETV(PLAIN, chrnamed(v, esc, ENDOF(esc), CHR('\033')));
/macosx-10.10.1/emacs-93/emacs/lisp/erc/
H A Derc.el5362 (let* ((arg-esc-regexp "\\(\\$\\(\\*\\|[1-9][0-9]*\\)\\)\\([^0-9]\\|$\\)")
5364 (esc-regexp (concat arg-esc-regexp "\\|" percent-regexp))
5383 (setq tmp (string-match esc-regexp line))
5387 (esc "")
5390 (cond ((string-match (concat "^" arg-esc-regexp) tail)
5391 (setq esc (match-string 1 tail))
5394 (setq esc (match-string 1 tail))
5396 ;;(message "hd=%S, esc=%S, tail=%S, arg-num=%S" hd esc tai
[all...]
/macosx-10.10.1/CPANInternal-159.1/Data-Dump-1.21/lib/Data/
H A DDump.pm527 my %esc = (
544 s/([\a\b\t\n\f\r\e])/$esc{$1}/g;
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/xs/
H A Dppport.h7086 const char esc = flags & PERL_PV_ESCAPE_RE ? '%' : '\\'; local
7087 const char dq = flags & PERL_PV_ESCAPE_QUOTE ? '"' : esc;
7097 octbuf[0] = esc;
7121 "%cx{%"UVxf"}", esc, u);
7125 if (c == dq || c == esc || !isPRINT(c)) {
7129 case '%' : if (c == esc)
7130 octbuf[1] = esc;
7146 ? "%c%03o" : "%c%o", esc, c);
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/
H A Dhp-symtab.h1515 esc; member in union:__anon7622
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dwoman.el2364 (let* ((esc (match-string 1))
2365 (repl (if (or (= (aref esc 0) ?u)
2366 (and (>= (length esc) 2) (= (aref esc 2) ?-)))
2372 "Initial vertical motion escape \\%s simulated" esc)
2378 "Terminal vertical motion escape \\%s ignored!" esc)))
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSCore/
H A DDNSCommon.c891 mDNSexport char *ConvertDomainLabelToCString_withescape(const domainlabel *const label, char *ptr, char esc) argument
900 if (esc)
902 if (c == '.' || c == esc) // If character is a dot or the escape character
903 *ptr++ = esc; // Output escape character
906 *ptr++ = esc;
919 mDNSexport char *ConvertDomainNameToCString_withescape(const domainname *const name, char *ptr, char esc) argument
929 ptr = ConvertDomainLabelToCString_withescape((const domainlabel *)src, ptr, esc);
/macosx-10.10.1/vim-55/src/
H A Dops.c100 static int put_in_typebuf __ARGS((char_u *s, int esc, int colon,
1309 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1313 put_in_typebuf(s, esc, colon, silent)
1315 int esc;
1328 if (esc)
1335 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1337 if (esc)
H A Dmisc1.c3590 expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
3594 int esc; /* escape spaces in expanded variables */
3797 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
H A Dedit.c193 static void stop_insert __ARGS((pos_T *end_insert_pos, int esc));
6462 stop_insert(end_insert_pos, esc)
6464 int esc; /* called by ins_esc() */
6535 if (did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Doniguruma.h150 OnigCodePoint esc; member in struct:__anon12182
/macosx-10.10.1/ruby-106/ruby/
H A Dregint.h717 #define MC_ESC(syn) (syn)->meta_char_table.esc
/macosx-10.10.1/apache-793/httpd/server/
H A Dutil.c1897 char *esc = apr_psprintf(p, "&#%3.3d;", (unsigned char)s[i]); local
1898 memcpy(&x[j], esc, 6);
/macosx-10.10.1/emacs-93/emacs/lisp/international/
H A Dmule.el1108 ;; XXX-with-esc variants.
1112 (let ((esc (intern (concat (symbol-name coding-system) "-with-esc")))
1121 (make-coding-system esc type mnemonic doc
/macosx-10.10.1/NFS-82/nfsd/
H A Dmountd.c1182 int len, esc; local
1193 esc = 0;
1204 if (esc == 1) {
1206 esc = 0;
1210 esc = 1;
4676 u_int32_t esc; local
4697 for (esc = 0; *a != '\0'; a++) {
4698 if (esc)
4699 esc = 0;
4701 esc
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/lib/JSON/
H A DPP.pm453 my %esc = (
468 $arg =~ s/([\x22\x5c\n\r\t\f\b])/$esc{$1}/g;

Completed in 540 milliseconds

123