Searched refs:pattern (Results 301 - 325 of 1035) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/yarr/
H A DYarrParser.h49 friend const char* parse(FriendDelegate&, const String& pattern, unsigned backReferenceLimit);
231 Parser(Delegate& delegate, const String& pattern, unsigned backReferenceLimit) argument
235 , m_data(pattern.characters<CharType>())
236 , m_size(pattern.length())
565 * This method loops over the input pattern reporting tokens to the delegate.
566 * The method returns when a parse error is detected, or the end of the pattern
703 REGEXP_ERROR_PREFIX "\\ at end of pattern"
817 * The parse method is passed a pattern to be parsed and a delegate upon which
874 const char* parse(Delegate& delegate, const String& pattern, unsigned backReferenceLimit = quantifyInfinite)
876 if (pattern
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dsftp-glob.c136 remote_glob(struct sftp_conn *conn, const char *pattern, int flags, argument
148 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob));
/macosx-10.10.1/apache-793/httpd/include/
H A Dap_regex.h181 * Compile a pattern into a regexp.
192 * @param pattern Pattern to compile
195 AP_DECLARE(ap_rxplus_t*) ap_rxplus_compile(apr_pool_t *pool, const char *pattern);
200 * @param pattern The string to apply it to
205 * (match found), but may be greater if a transforming pattern
209 const char *pattern, char **newpattern);
223 * NOTE: this relies on the match pattern from the last call to
228 * @param match Returns the match pattern
234 * NOTE: this relies on the match pattern from the last call to
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dregexp.c55 _re_comp(regexp_t* re, const char* pattern, char* handle, unsigned int size) argument
65 n = regcomp(&env->re, pattern, REG_LENIENT|REG_NULL);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/disc/
H A Dsfdcmore.c49 char pattern[128]; /* match pattern */ member in struct:__anon9054
174 for (r = more->pattern[0];; s++)
180 else if (*s == r && (e - s) >= more->match && !strncmp(s, more->pattern, more->match))
221 if (n >= sizeof(more->pattern))
222 n = sizeof(more->pattern) - 1;
223 memcpy(more->pattern, s, n);
224 more->pattern[n] = 0;
227 if (more->match = strlen(more->pattern))
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dmarkup.rb810 def add_special(pattern, name)
811 @attribute_manager.add_special(pattern, name)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/devtools/
H A Dtestutilities.tcl126 proc array_unset {a {pattern *}} {
128 foreach k [array names array $pattern] {
659 proc TestFiles {pattern} {
662 set flist [glob -nocomplain -directory $::tcltest::testsDirectory $pattern]
665 set flist [glob -nocomplain [file join $::tcltest::testsDirectory $pattern]]
673 proc TestFilesGlob {pattern} {
676 set flist [glob -nocomplain -directory $::tcltest::testsDirectory $pattern]
679 set flist [glob -nocomplain [file join $::tcltest::testsDirectory $pattern]]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie_log.tcl58 method unset {{pattern *}} {
59 ::log::log debug "$self unset $pattern"
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/ctext/
H A Dfunction_finder.tcl34 proc sglob {pattern} {
35 return [glob -nocomplain $pattern]
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dmessagepattern.h39 * with the pattern strings that yield that output.
69 * either a single or a double apostrophe pattern character.
70 * Within a MessageFormat pattern, a single apostrophe only starts quoted literal text
81 * a double apostrophe pattern character.
100 * Start of a message pattern (main or nested).
110 * End of a message pattern (main or nested).
119 * Indicates a substring of the pattern string which is to be skipped when formatting.
274 * the string is a valid "pattern identifier" but not a number.
282 * It might not be a valid "pattern identifier",
310 * nested MessageFormat pattern substring
[all...]
H A Duniset.h70 * string pattern.
183 * <td nowrap valign="top" align="right"><code>pattern :=&nbsp; </code></td>
189 * <td valign="top"><code>char | (char '-' char) | pattern-expr<br>
193 * <td nowrap valign="top" align="right"><code>pattern-expr :=&nbsp; </code></td>
194 * <td valign="top"><code>pattern | pattern-expr pattern |
195 * pattern-expr op pattern<br>
223 * <td valign="top"><em>a Unicode property set pattern</e
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dnptrans.cpp79 const UChar* pattern = ures_getStringByKey(bundle,"UnassignedSet",&patternLen, &status); local
80 unassigned.applyPattern(UnicodeString(pattern, patternLen), status);
84 pattern = ures_getStringByKey(bundle,"ProhibitedSet",&patternLen, &status);
85 UnicodeString test(pattern,patternLen);
108 pattern = ures_getStringByKey(bundle,"LabelSeparatorSet",&patternLen, &status);
109 labelSeparatorSet.applyPattern(UnicodeString(pattern,patternLen),status);
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/upforwd/ans4/
H A Dans.pl21 # responses based on pattern matching the queries, and
27 # /pattern/
31 # /pattern/
37 # with any number of response RRs. Each pattern is a
42 # printable query type) and matched against each pattern.
44 # The first pattern matching the query is selected, and
45 # the RR following the pattern line are sent in the
57 # /pattern <key> <key_data>/
62 # pattern, only this data will be signed. Currently, this is only
122 my $pattern
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dgetconf.c141 char* pattern; local
166 pattern = 0;
180 pattern = opt_info.arg;
190 pattern = opt_info.arg;
203 pattern = opt_info.arg;
242 astconflist(sfstdout, path, flags, pattern);
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dsetversion46 foreach {pattern current} $patternlist {
47 set newvalue [string map $subst $pattern]
49 puts $out " [list $pattern]"
/macosx-10.10.1/vim-55/runtime/indent/
H A Dcss.vim44 let pattern = '[{}]'
45 let i = match(line, pattern)
58 let i = match(line, pattern, i + 1)
H A Dld.vim44 let pattern = '[{}]'
45 let i = match(line, pattern)
58 let i = match(line, pattern, i + 1)
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Ddecimfmt.h101 * UnicodeString pattern;
120 * pattern = ((DecimalFormat*)form)->toPattern(pattern);
121 * cout << locales[i].getDisplayName(displayName) << ": " << pattern;
153 * <p>A DecimalFormat consists of a <em>pattern</em> and a set of
154 * <em>symbols</em>. The pattern may be set directly using
156 * manipulate aspects of the pattern, such as the minimum number of integer
159 * pattern and symbols are read from ICU's locale data.
163 * <p>Many characters in a pattern are taken literally; they are matched during
167 * replacement character is the same as the pattern characte
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dapropos.el103 for the pattern; the part that matches gets displayed in this font."
141 (defvar apropos-pattern nil
142 "Apropos pattern as entered by user.")
144 (defvar apropos-pattern-quoted nil
145 "Apropos pattern passed through `regexp-quote'.")
148 "Current list of apropos words extracted from `apropos-pattern'.")
291 (defun apropos-read-pattern (subject)
292 "Read an apropos pattern, either a word list or a regexp.
293 Returns the user pattern, either a list of words which are matched
298 (let ((pattern
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Dtriostr.c718 @param pattern Pattern, including wildcards, to search for.
729 TRIO_ARGS2((string, pattern),
731 TRIO_CONST char *pattern)
734 assert(pattern);
736 for (; ('*' != *pattern); ++pattern, ++string)
740 return (NIL == *pattern);
742 if ((trio_to_upper((int)*string) != trio_to_upper((int)*pattern))
743 && ('?' != *pattern))
749 while ('*' == pattern[
728 trio_match(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
781 trio_match_case(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dtriostr.c718 @param pattern Pattern, including wildcards, to search for.
729 TRIO_ARGS2((string, pattern),
731 TRIO_CONST char *pattern)
734 assert(pattern);
736 for (; ('*' != *pattern); ++pattern, ++string)
740 return (NIL == *pattern);
742 if ((trio_to_upper((int)*string) != trio_to_upper((int)*pattern))
743 && ('?' != *pattern))
749 while ('*' == pattern[
728 trio_match(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
781 trio_match_case(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
[all...]
/macosx-10.10.1/gnutar-453/gnutar/tests/
H A Dgenfile.c50 enum pattern enum
71 static enum pattern pattern = DEFAULT_PATTERN; variable in typeref:enum:pattern
134 {"pattern", 'p', N_("PATTERN"), 0,
196 static enum pattern const pattern_types[] = {DEFAULT_PATTERN, ZEROS_PATTERN};
280 enum pattern pattern; member in struct:action
292 act->pattern = pattern;
318 pattern
392 fill(FILE *fp, off_t length, enum pattern pattern) argument
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/utbm/
H A Dutbm.c42 * 3. Text and pattern have already been normalized in some fashion.
51 * Single pattern character.
242 utbm_free_pattern(utbm_pattern_t pattern) argument
244 if (pattern == 0)
247 if (pattern->pat_size > 0)
248 free((char *) pattern->pat);
250 if (pattern->skip_size > 0)
251 free((char *) pattern->skip);
253 free((char *) pattern);
270 * Reset the pattern buffe
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/glob/
H A Dsmatch.c1 /* strmatch.c -- ksh-like extended pattern matching for the shell and filename
359 xstrmatch (pattern, string, flags)
360 char *pattern;
370 return (internal_strmatch ((unsigned char *)pattern, (unsigned char *)string, flags));
372 n = xdupmbstowcs (&wpattern, NULL, pattern);
374 return (internal_strmatch ((unsigned char *)pattern, (unsigned char *)string, flags));
380 return (internal_strmatch ((unsigned char *)pattern, (unsigned char *)string, flags));
390 return (internal_strmatch ((unsigned char *)pattern, (unsigned char *)string, flags));
/macosx-10.10.1/emacs-93/emacs/lisp/eshell/
H A Dem-glob.el84 "*If non-nil, glob pattern matching will ignore case."
95 "*If non-nil, it is an error for a glob pattern not to match.
151 ;; if this is a glob pattern than needs to be expanded, then it
185 (defun eshell-glob-regexp (pattern)
186 "Convert glob-pattern PATTERN to a regular expression.
203 (let ((matched-in-pattern 0) ; How much of PATTERN handled
209 pattern matched-in-pattern)
211 (op-char (aref pattern op-begin)))
215 (substring pattern matche
[all...]

Completed in 340 milliseconds

<<11121314151617181920>>