Searched refs:matches (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/RegExp/
H A Dregress-001.js33 for ( var matches = 0; matches < matches_array.length; matches++ ) {
35 "( " + str_regexp + " )[" + matches +"]",
36 matches_array[matches],
37 regexp[matches] );
H A Dhex-001.js58 for ( var matches = 0; matches < matches_array.length; matches++ ) {
60 str_regexp + ".exec(" + str_pattern +")[" + matches +"]",
61 matches_array[matches],
62 regexp.exec(pattern)[matches] );
H A Dmultiline-001.js56 for ( var matches = 0; matches < matches_array.length; matches++ ) {
58 regexp + ".exec(" + pattern +")[" + matches +"]",
59 matches_array[matches],
60 regexp.exec(pattern)[matches] );
H A Dunicode-001.js47 for ( var matches = 0; matches < matches_array.length; matches++ ) {
49 str_regexp + " .exec(" + str_pattern +")[" + matches +"]",
50 matches_array[matches],
51 regexp.exec(pattern)[matches] );
H A Doctal-003.js74 for ( var matches = 0; matches < limit; matches++ ) {
76 str_regexp + ".exec(" + str_pattern +")[" + matches +"]",
77 matches_array[matches],
78 escape(regexp.exec(pattern)[matches]) );
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/functions/
H A Djj.bash7 [*) echo matches '[*'
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dmatch-001.js78 for ( var matches = 0; matches < matches_array.length; matches++ ) {
80 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
81 matches_array[matches],
82 string.match(regexp)[matches] );
94 for ( var matches = 0; matches < matches_array.length; matches++ ) {
96 "( " + string + " ).match(" + str_regexp +")[" + matches
[all...]
H A Dsplit-001.js72 for ( var matches = 0; matches < split_array.length; matches++ ) {
74 "( " + string + " ).split(" + str_sep +")[" + matches +"]",
75 split_array[matches],
76 string.split( separator )[matches] );
100 for ( var matches = 0; matches < split_array.length; matches++ ) {
102 "( " + string + " ).split(" + str_sep +", " + str_limit + " )[" + matches
[all...]
H A Dmatch-004.js130 for ( var matches = 0; matches < limit; matches++ ) {
132 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
133 matches_array[matches],
134 string.match(regexp)[matches] );
161 for ( var matches = 0; matches < limit; matches++ ) {
163 "( " + string + " ).match(" + str_regexp +")[" + matches
[all...]
H A Dsplit-003.js80 for ( var matches = 0; matches < split_array.length; matches++ ) {
82 "( " + string + " ).split(" + str_sep +")[" + matches +"]",
83 split_array[matches],
84 string.split( separator )[matches] );
111 for ( var matches = 0; matches < slimit; matches++ ) {
113 "( " + string + " ).split(" + str_sep +", " + limit + " )[" + matches
[all...]
H A Dmatch-002.js131 for ( var matches = 0; matches < limit; matches++ ) {
133 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
134 matches_array[matches],
135 string.match(regexp)[matches] );
162 for ( var matches = 0; matches < limit; matches++ ) {
164 "( " + string + " ).match(" + str_regexp +")[" + matches
[all...]
H A Dmatch-003.js120 for ( var matches = 0; matches < limit; matches++ ) {
122 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
123 matches_array[matches],
124 string.match(regexp)[matches] );
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2base/
H A Dmsgcat.tcl39 set matches 0
45 incr matches
48 return $matches
/macosx-10.10.1/lukemftp-14/tnftp/libedit/
H A Dfilecomplete.c267 size_t matches; local
269 matches = 0;
271 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
273 if (matches + 3 >= match_list_len) {
275 while (matches + 3 >= match_list_len)
286 match_list[++matches] = retstr;
296 for (; which <= matches; which++) {
313 match_list[matches + 1] = (char *) NULL;
332 * 'matches' is list of strings, 'len' is number of strings in 'matches',
336 fn_display_match_list(EditLine *el, char **matches, int len, int max) argument
388 char *temp, **matches; local
519 free(matches), matches = NULL; local
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dshmatch.c51 regmatch_t *matches; local
77 matches = (regmatch_t *)malloc (sizeof (regmatch_t) * (regex.re_nsub + 1));
79 matches = NULL;
82 if (regexec (&regex, string, regex.re_nsub + 1, matches, 0))
103 strncpy (subexp_str, string + matches[subexp_ind].rm_so,
104 matches[subexp_ind].rm_eo - matches[subexp_ind].rm_so);
112 free (matches);
/macosx-10.10.1/emacs-93/emacs/lisp/play/
H A Dyow.el79 If called interactively, display a list of matches."
86 (matches nil)
92 (setq matches (cons (aref string-table i) matches)))
94 (and matches
95 (setq matches (sort matches 'string-lessp)))
97 (cond ((null matches)
98 (message "No matches found."))
100 (let ((l matches))
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dfilecomplete.c295 size_t matches; local
297 matches = 0;
299 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
301 if (matches + 3 >= match_list_len) {
303 while (matches + 3 >= match_list_len)
314 match_list[++matches] = retstr;
324 for (; which <= matches; which++) {
341 match_list[matches + 1] = (char *) NULL;
360 * 'matches' is list of strings, 'num' is number of strings in 'matches',
367 fn_display_match_list(EditLine *el, char **matches, size_t num, size_t width) argument
427 char **matches; local
[all...]
/macosx-10.10.1/libedit-40/src/
H A Dfilecomplete.c286 size_t matches; local
288 matches = 0;
290 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
292 if (matches + 3 >= match_list_len) {
294 while (matches + 3 >= match_list_len)
305 match_list[++matches] = retstr;
315 for (; which <= matches; which++) {
332 match_list[matches + 1] = NULL;
351 * 'matches' is list of strings, 'num' is number of strings in 'matches',
358 fn_display_match_list(EditLine *el, char **matches, size_t num, size_t width) argument
427 char **matches; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/Class-Std-0.011/demo/
H A Ddemo_library_AUTOMETHDEF.pl22 # If that name matches any of the book titles, return those titles...
23 if (my @matches = grep { /$book_title/ } keys %book) {
24 return sub{ @book{@matches} };
51 if (my @matches = grep { /$book_title/ } keys %book) {
52 return sub{ @book{@matches} };
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclRegexp.h36 regmatch_t *matches; /* Array of indices into the Tcl_UniChar member in struct:TclRegexp
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/doc/
H A Dcmd.tcl20 set matches 0
25 incr matches
27 if {!$matches} {
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/support/devel/sak/doc/
H A Dcmd.tcl20 set matches 0
25 incr matches
27 if {!$matches} {
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dcomplete.c89 completing a word would normally display the list of possible matches.
91 It takes three arguments: (char **matches, int num_matches, int max_length)
136 /* If non-zero, non-unique completions always show the list of matches. */
139 /* If non-zero, non-unique completions show the list of matches, unless it
191 /* Pointer to alternative function to create matches.
249 /* If non-zero, then disallow duplicates in the matches. */
252 /* Non-zero means that the results of the matches are to be treated
257 /* Non-zero means that the results of the matches are to be quoted using
266 generated. It is passed a (char**) known as matches in the code below.
268 matching strings. The 1st element (matches[
953 char **matches; local
1198 char *t, **matches, **temp_matches; local
1641 char **matches; local
1795 int matches; local
2119 static char **matches = (char **)0; local
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebUserContentURLPattern.cpp116 HRESULT WebUserContentURLPattern::matchesSubdomains(BOOL* matches) argument
118 if (!matches)
120 *matches = m_pattern.matchSubdomains();
124 HRESULT WebUserContentURLPattern::matchesURL(BSTR url, BOOL* matches) argument
126 if (!matches)
128 *matches = m_pattern.matches(MarshallingHelpers::BSTRToKURL(url));
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/TableGen/
H A DStringMatcher.h29 /// not exit this code fragment. If nothing matches, execution falls through.
41 const std::vector<StringPair> &matches, raw_ostream &os)
42 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
40 StringMatcher(StringRef strVariableName, const std::vector<StringPair> &matches, raw_ostream &os) argument

Completed in 321 milliseconds

1234567891011>>