Searched refs:matches (Results 151 - 175 of 382) sorted by relevance

1234567891011>>

/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dcomp.h41 int always; /* display even without matches */
43 int count; /* the number of matches */
44 int fcount; /* number of matches with fignore ignored */
47 /* This describes a group of matches. */
54 int mcount; /* number of matches */
55 Cmatch *matches; /* the matches */ member in struct:cmgroup
63 LinkList lmatches; /* list of matches */
64 LinkList lfmatches; /* list of matches without fignore */
69 int new; /* new matches sinc
451 Cmgroup matches; /* the matches generated */ member in struct:chdata
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclae/tclae/generic/
H A DtclAEAddress.c501 * Check that the argument count matches what's expected for this
915 * Check that the argument count matches what's expected for this
969 * Check that the argument count matches what's expected for this
1647 if (reInfo->matches[AT_CreatorRE].end > reInfo->matches[AT_CreatorRE].start) {
1649 rangeObj = Tcl_GetRange(addressObj, reInfo->matches[AT_CreatorRE].start,
1650 reInfo->matches[AT_CreatorRE].end-1);
1654 rangeObj = Tcl_GetRange(addressObj, reInfo->matches[AT_ApplicationRE].start,
1655 reInfo->matches[AT_ApplicationRE].end-1);
1686 rangeObj = Tcl_GetRange(addressObj, reInfo->matches[AT_MachineR
[all...]
/macosx-10.10.1/cups-408/cups/cgi-bin/
H A Dhelp-index.c528 int matches; /* Number of matches */ local
608 matches = cgiDoSearch(sc, node->text);
614 matches += word->count;
616 if (matches > 0)
622 node->score = matches;
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dcftoken.l113 glob_t matches;
728 if (incstack[incstackp].matches.gl_pathc != 0 &&
729 incstack[incstackp].matches.gl_pathv &&
731 incstack[incstackp].matches.gl_pathc) {
732 char* filepath = incstack[incstackp].matches.gl_pathv[incstack[incstackp].matchon];
742 globfree(&incstack[incstackp].matches);
811 if (glob(path, GLOB_TILDE, NULL, &incstack[incstackp].matches) != 0 ||
812 incstack[incstackp].matches.gl_pathc == 0) {
814 "glob found no matches for path \"%s\"\n", path);
821 if (incstack[incstackp].matchon >= incstack[incstackp].matches
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dtech_report.tex140 the weak checksum matches.
165 for an entry whose 32-bit rolling checksum matches the current value.
173 we assume that we have found a block of $A$ which matches a block of
189 runs, for the common case where a portion of $A$ matches a series of
227 {\bf block} & {\bf matches} & {\bf tag} & {\bf false} & {\bf data} & {\bf written} & {\bf read} \\
248 \item [matches] The number of times a block of $B$ was found in $A$.
272 true matches, indicating that the 32-bit rolling checksum is quite
273 good at screening out false matches.
280 the number of matches. For extremely large files, we should probably
292 {\bf block} & {\bf matches}
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcookie.c970 size_t matches = 0; local
991 /* the right part of the host matches the domain stuff in the
1012 matches++;
1031 if(matches) {
1039 array = malloc(sizeof(struct Cookie *) * matches);
1049 qsort(array, matches, sizeof(struct Cookie *), cookie_sort);
1054 for(i=0; i<matches-1; i++)
1056 array[matches-1]->next = NULL; /* terminate the list */
/macosx-10.10.1/emacs-93/emacs/lisp/emulation/
H A Dviper-macs.el734 (let* ((matches (viper-extract-matching-alist-members seq alist))
735 (new-seq (apply 'viper-common-seq-prefix matches))
737 (cond ((and (equal seq new-seq) (= (length matches) 1))
740 ((null matches)
744 ((member seq matches)
747 (viper-display-vector-completions matches))
749 (viper-display-vector-completions matches)))
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/chatwidget/
H A Dchatwidget.tcl674 foreach {index matches after} $state(nickcompletion) break
677 if {$index > [llength $matches]} { set index 0 }
682 set matches [lsearch -all -inline -glob -index 0 $state(names) $partial*]
685 switch -exact -- [llength $matches] {
687 1 { set match [lindex [lindex $matches 0] 0]}
689 set match [lindex [lindex $matches $index] 0]
690 set state(nickcompletion) [list $index $matches \
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dcsdetest.cpp184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status); local
187 UnicodeString name(ucsdet_getName(matches[0], &status));
188 UnicodeString lang(ucsdet_getLanguage(matches[0], &status));
193 errln("Encoding detection failure for " + id + ": expected " + eSplit[0] + ", got no matches");
202 const char *name = ucsdet_getName(matches[m], &status);
203 const char *lang = ucsdet_getLanguage(matches[m], &status);
204 int32_t confidence = ucsdet_getConfidence(matches[m], &status);
218 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status);
337 errln("Detection failure for UTF-8: got no matches.");
378 errln("Encoding detection failure for UTF-16BE: got no matches
788 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status); local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/Getopt/
H A DMixed.pm243 my @matches = grep(/^$opt$/, keys %options);
245 return undef if $#matches < 0;
246 return $matches[0] if $#matches == 0;
248 $opt = $matches[0];
251 foreach (@matches) {
638 long option with several possible matches). The option has already
669 A regular expression that matches an integer. Default is
670 '^[-+]?\d+$', which matches a string of digits preceded by an
677 A regular expression that matches
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dpcomplete.c1 /* pcomplete.c - functions to generate lists of matches for programmable
303 This understands how rl_completion_matches sets matches[0] (the lcd of the
306 completions_to_stringlist (matches)
307 char **matches;
312 mlen = (matches == 0) ? 0 : strvec_len (matches);
315 if (matches == 0 || matches[0] == 0)
318 if (matches[1] == 0)
320 sl->list[0] = STRDUP (matches[
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Dmagic.c492 regmatch_t matches[10]; local
685 if ((c = regexec(ep->value.sub, p, elementsof(matches), matches, 0)) || (c = regsubexec(ep->value.sub, p, elementsof(matches), matches)))
693 if ((c = regexec(ep->value.sub, p, elementsof(matches), matches, 0)) || (c = regsubexec(ep->value.sub, p, elementsof(matches), matches)))
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/bin/
H A Dttree288 printf yellow(" - %-32s (ignored, matches /$check/)\n"), $path
432 printf green(" > %-32s (linked, matches /$check/)\n"), $file
450 printf green(" > %-32s (copied, matches /$check/)\n"), $file
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DVMethods.pm191 my @matches = $global ? ($str =~ /$search/g)
193 return @matches ? \@matches : '';
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dtznames.cpp364 matches(status)->addElement(matchInfo, status);
381 matches(status)->addElement(matchInfo, status);
436 TimeZoneNames::MatchInfoCollection::matches(UErrorCode& status) { function in class:TimeZoneNames::MatchInfoCollection
H A Drepattrn.cpp471 // matches Convenience function to test for a match, starting
475 UBool U_EXPORT2 RegexPattern::matches(const UnicodeString &regex, function in class:RegexPattern
488 retVal = matcher->matches(status);
497 // matches, UText mode
499 UBool U_EXPORT2 RegexPattern::matches(UText *regex, function in class:RegexPattern
514 retVal = matcher->matches(status);
/macosx-10.10.1/CPANInternal-159.1/Term-ReadLine-Perl-1.0303/ReadLine/
H A Dreadline.pm167 ## Pretty-printing of filename-completion matches.
1042 # differently in different vi implementation. This module matches
1352 ## Isolate key part. This matches GNU's implementation.
3443 @matches = &completion_matches($rl_completion_function,$text,$line,$point);
3445 if (@matches == 0) {
3448 my $replacement = shift(@matches);
3449 $replacement .= $rl_completer_terminator_character if @matches == 1;
3450 &F_Ding if @matches != 1;
3452 @tcsh_complete_selections = (@matches, $text);
3461 shift(@matches); ## remov
[all...]
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Filter/
H A DLevelMatch.pm72 matches a predefined priority, as set in C<LevelToMatch>.
H A DStringMatch.pm79 matches a predefined regular expression, as set in the C<StringToMatch>
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DFilter.pm147 matches or exceeds a certain level or that this is the 10th
154 oncoming message matches the regular expression C</let this through/i>:
185 For common tasks like verifying that the message priority matches
210 regular expression in the C<StringToMatch> matches them. Again,
/macosx-10.10.1/Chess-310.6/Sources/
H A DMBCController.mm246 [GKTurnBasedMatch loadMatchesWithCompletionHandler:^(NSArray *matches, NSError *error) {
249 fExistingMatches = [matches retain];
/macosx-10.10.1/IOKitUser-1050.1.21/graphics.subproj/
H A DPEFSupport.c628 printf("Name %s matches %s, ", matchName, path);
736 Boolean matches = true; local
754 matches = (MACH_PORT_NULL != service);
755 if (matches)
767 if (!matches)
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dmacho++.cpp101 bool Architecture::matches(const Architecture &templ) const function in class:Security::Architecture
618 else if (mThinArch.matches(arch))
628 else if (mThinArch.matches(arch))
638 else if (mThinArch.matches(arch))
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dmacho++.cpp101 bool Architecture::matches(const Architecture &templ) const function in class:Security::Architecture
618 else if (mThinArch.matches(arch))
628 else if (mThinArch.matches(arch))
638 else if (mThinArch.matches(arch))
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Dhelp_command.rb56 RubyGems matches platforms as follows:

Completed in 452 milliseconds

1234567891011>>