Searched defs:match (Results 1 - 3 of 3) sorted by relevance

/solaris-userland-s11u3/tools/
H A Dbuild-watch.pl55 sub match subroutine
74 } elsif ((/^FILE:\s+(\S+)\s*$/) && (match($1, @ignore) == 0) &&
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DTextUtil.java161 String[] groups = match(text, regex);
173 groups = match(text, regex);
301 * pattern did not match
303 public static String[] match(String text, Pattern regex) { method in class:TextUtil
319 * #match(String,Pattern)}.
324 public static String[] match(String text, String regex) method in class:TextUtil
327 return match(text, Pattern.compile(regex));
/solaris-userland-s11u3/components/apache2/mod_sed/
H A Dsed1.c67 static int match(sed_eval_t *eval, char *expbuf, int gf,
503 } else if (match(eval, p2, 0, &step_vars)) {
523 } else if (match(eval, p1, 0, &step_vars)) {
580 * match
582 static int match(sed_eval_t *eval, char *expbuf, int gf, function
606 if(match(eval, ipc->re1, 0, step_vars) == 0) return(0);
615 if(match(eval, ipc->re1, 1, step_vars) == 0) break;

Completed in 14 milliseconds