Searched defs:regex (Results 1 - 3 of 3) sorted by relevance
| /solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/ |
| H A D | KeyValueWriter.java | 41 protected KeyValueWriter(String regex, String separator, argument 44 regex_ = regex;
|
| H A D | TextUtil.java | 29 import java.util.regex.*; 160 String regex = "^\\s*(.{1," + w + "})($|\\s+.*)"; 161 String[] groups = match(text, regex); 167 regex = "^\\s*(.{1," + w + "})(.*)"; 170 regex = "^\\s*(.+?)($|\\s+.*)"; 173 groups = match(text, regex); 295 * @param regex 303 public static String[] match(String text, Pattern regex) { argument 304 Matcher matcher = regex.matcher(text); 324 public static String[] match(String text, String regex) argument [all...] |
| /solaris-userland-s11u3/components/libusb/ugen/src/ |
| H A D | libusbugen.c | 47 #include <regex.h> 2315 regex_t regex; local 2341 if ((regcomp(®ex, "/dev/usb/[0-9a-f]+[.][0-9a-f]+", 2370 if (regexec(®ex, device, 0, NULL, 0) != 0) { 2393 regfree(®ex); 2404 regfree(®ex); 2449 regfree(®ex);
|
Completed in 702 milliseconds