Searched refs:regexp (Results 126 - 150 of 555) sorted by relevance

1234567891011>>

/macosx-10.10.1/vim-55/src/
H A DMake_manx.mak70 regexp.c \
118 obj/regexp.o \
164 proto/regexp.pro \
324 obj/regexp.o: regexp.c
325 $(CCSYM) $@ regexp.c
H A DMake_morph.mak60 regexp.c \
H A DMake_os2.mak74 regexp.o \
149 regexp.o: regexp.c $(INCL)
H A DMake_ro.mak18 o.normal o.ops o.option o.popupmnu o.quickfix o.regexp o.screen \
112 o.regexp: c.regexp
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Ddired-aux.el51 (defconst dired-star-subst-regexp "\\(^\\|[ \t]\\)\\*\\([ \t]\\|$\\)")
52 (defconst dired-quark-subst-regexp "\\(^\\|[ \t]\\)\\?\\([ \t]\\|$\\)")
518 (let* ((on-each (not (string-match dired-star-subst-regexp command)))
519 (subst (not (string-match dired-quark-subst-regexp command)))
560 (if (or (string-match dired-star-subst-regexp command)
561 (string-match dired-quark-subst-regexp command))
672 (regexp (dired-marker-regexp)))
674 (re-search-forward regexp nil t))
1248 (concat "^" (regexp
[all...]
H A Dmidnight.el104 If buffer name matches a regexp in the list and the buffer was not displayed
107 If a member of the list is a cons, its `car' is the regexp and its `cdr' is
112 :type '(repeat (regexp :tag "Regexp matching Buffer Name"))
141 "*List of regexp saying which buffers will never be killed at midnight.
147 :type '(repeat (regexp :tag "Regexp matching Buffer Name"))
H A Dforms.el423 (defvar forms--search-regexp nil
424 "Last regexp used by forms-search functions.")
628 (make-local-variable 'forms--search-regexp)
1160 ;; (if (not (looking-at (regexp-quote forms--dyntext)))
1178 `((if (not (looking-at ,(regexp-quote el)))
1204 (if (not (looking-at (regexp-quote forms--dyntext)))
1455 (re (regexp-quote arg))
1584 (if (string-match (regexp-quote forms-field-sep)
1835 (defun forms-search-forward (regexp)
1839 (if forms--search-regexp
[all...]
H A Dinfo-look.el116 (defsubst info-lookup->regexp (topic mode)
137 KEYWORD is either `:topic', `:mode', `:regexp', `:ignore-case',
153 (let (topic mode regexp ignore-case doc-spec
157 regexp "\\w+")
171 ((eq keyword :regexp)
172 (setq regexp value))
184 (let* ((data (list regexp ignore-case doc-spec parse-rule other-modes))
370 (concat "^\\* " (regexp-quote (or (cdr entry) (car entry)))
380 (concat prefix (regexp-quote (car entry)) suffix))
385 (re-search-forward (regexp
[all...]
/macosx-10.10.1/apache-793/httpd/modules/filters/
H A DNWGNUmodsed174 $(OBJDIR)/regexp.o \
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dcopyright.el48 (defcustom copyright-regexp
55 :type 'regexp)
57 (defcustom copyright-years-regexp
62 :type 'regexp)
86 (when (re-search-forward copyright-regexp (+ (point) copyright-limit) t)
99 (looking-at copyright-years-regexp))))
102 (re-search-forward copyright-years-regexp))
187 (if (re-search-forward copyright-regexp (+ (point) copyright-limit) t)
/macosx-10.10.1/less-25/less/
H A Dregexp.c40 #include "regexp.h"
43 * The "internal use only" fields in regexp.h are present to pass info from
63 * Structure for regexp "program". This is essentially a linear encoding
168 * The first byte of the regexp internal "program" is actually this magic
207 * of the structure of the compiled regexp.
209 regexp *
213 register regexp *r;
233 FAIL("regexp too big");
236 r = (regexp *)malloc(sizeof(regexp)
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/uri/
H A Dmailto.rb168 if parser.regexp[:OPAQUE] !~ v || /\A#{MAILBOX_PATTERN}*\z/o !~ v
197 if parser.regexp[:OPAQUE] !~ v ||
H A Dgeneric.rb329 if v && parser.regexp[:SCHEME] !~ v
411 if parser.regexp[:USERINFO] !~ v
439 if parser.regexp[:USERINFO] !~ v
604 elsif parser.regexp[:HOST] !~ v
696 elsif !v.kind_of?(Fixnum) && parser.regexp[:PORT] !~ v
766 elsif v && parser.regexp[:REGISTRY] !~ v
823 if v && v != '' && parser.regexp[:ABS_PATH] !~ v
828 if v && v != '' && parser.regexp[:ABS_PATH] !~ v && parser.regexp[:REL_PATH] !~ v
894 if v && v != '' && parser.regexp[
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dnice.test92 if {![regexp {^failed to increment priority: (.*)$} $msg {} errmsg] || \
/macosx-10.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Djavascript.js121 return ret("regexp", "string-2");
217 var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true};
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Djavascript.js121 return ret("regexp", "string-2");
217 var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true};
/macosx-10.10.1/emacs-93/emacs/lisp/erc/
H A Derc-join.el56 SERVER is a regexp matching the server, and channels is the
67 (regexp :tag "Name")
/macosx-10.10.1/emacs-93/emacs/lisp/textmodes/
H A Dparagraphs.el85 This regexp should match lines that separate paragraphs
100 :type 'regexp)
118 :type 'regexp)
127 regexp describing the end of a sentence, when the value of the variable
139 regexp describing the end of a sentence, when the value of the variable
150 regexp describing the end of a sentence, when the value of the variable
165 :type '(choice regexp (const :tag "Use default value" nil)))
176 "Return the regexp describing the end of a sentence.
200 :type 'regexp)
223 (fill-prefix-regexp
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dregexp.c24 * <regexp.h> library support
30 #include <regexp.h>
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/example/
H A Drftp232 if 0==[regexp "(\[^\n]*)\n(.*)" $buf dummy line buf] return
261 regexp "(\[^\n]*)\n(.*)" $buf dummy line buf
H A Dvirterm146 *.* { regexp (.*)\\.(.*) $input dummy r c
426 term_expect {regexp {.*[>%]} [$term get 1.0 3.end]}
428 term_expect {regexp "desk" [$term get 19.0 19.end]} {
464 while {[regexp "CONTINUED on next page" [$term get 19.0 19.end]]} {
474 while {[regexp "FORward page" [$term get 20.0 20.end]]} {
486 while {[regexp "NEXt record" [$term get 20.0 21.end]]} {
/macosx-10.10.1/tcl-105/tcl_ext/ffidl/ffidl/tests/
H A Dbasic.test56 if { ! [regexp {^([a-z_ ]+) (\*?)([a-z0-9_]+)\((.*)\)$} $sig all rtype rptr name args]} {
89 switch -regexp $name {
/macosx-10.10.1/emacs-93/emacs/lisp/eshell/
H A Dem-hist.el49 ;; M-r ; search backward for a previous command by regexp
50 ;; M-s ; search forward for a previous command by regexp
150 "*The regexp used to identifier history event designators."
151 :type 'regexp
156 "*The regexp used to identify history word designators."
157 :type 'regexp
162 "*The regexp used to identity history modifiers."
163 :type 'regexp
680 (concat pref (regexp-quote str)) 1))))
795 (defun eshell-previous-matching-input-string (regexp ar
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/mail/
H A Drmailkwd.el142 ; (rmail-message-labels-p (or n rmail-current-message) (regexp-quote label)))
185 (regexp-quote (symbol-name (rmail-make-label label t))))
215 (regexp (concat ", ?\\("
216 (mail-comma-list-regexp labels)
222 (if (rmail-message-labels-p current regexp)
226 (if (rmail-message-labels-p current regexp)
/macosx-10.10.1/ruby-106/ruby/lib/test/unit/
H A Dassertions.rb213 # assert_no_match( regexp, string, failure_message = nil )
218 def assert_no_match(regexp, string, msg=nil)
219 assert_instance_of(Regexp, regexp, "The first argument to assert_no_match should be a Regexp.")
221 msg = message(msg) { "<#{mu_pp(regexp)}> expected to not match\n<#{mu_pp(string)}>" }
222 assert(regexp !~ string, msg)

Completed in 304 milliseconds

1234567891011>>