HomeSort by relevance Sort by last modified time
    Searched refs:pattern (Results 51 - 75 of 4320) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MathException.java 45 * Pattern used to build the message.
47 private final Localizable pattern; field in class:MathException
59 this.pattern = LocalizedFormats.SIMPLE_MESSAGE;
67 * @param pattern format specifier
72 public MathException(String pattern, Object ... arguments) {
73 this(new DummyLocalizable(pattern), arguments);
80 * @param pattern format specifier
84 public MathException(Localizable pattern, Object ... arguments) {
85 this.pattern = pattern;
    [all...]
  /external/curl/lib/
hostcheck.c 47 * Match a hostname against a wildcard pattern.
66 static int hostmatch(char *hostname, char *pattern)
76 /* normalize pattern and hostname by stripping off trailing dots */
80 len = strlen(pattern);
81 if(pattern[len-1]=='.')
82 pattern[len-1] = 0;
84 pattern_wildcard = strchr(pattern, '*');
86 return strcasecompare(pattern, hostname) ?
97 /* We require at least 2 dots in pattern to avoid too wide wildcard
100 pattern_label_end = strchr(pattern, '.')
    [all...]
  /external/icu/icu4c/source/i18n/
uregexc.cpp 27 uregex_openC( const char *pattern,
34 if (pattern == NULL) {
39 UnicodeString patString(pattern);
  /external/strace/tests/
count.test 38 local pattern="$1"; shift
45 LC_ALL=C grep -E -x -e "$pattern" "$LOG" > /dev/null || {
46 echo "Pattern of expected output: $pattern"
  /external/strace/tests-m32/
count.test 38 local pattern="$1"; shift
45 LC_ALL=C grep -E -x -e "$pattern" "$LOG" > /dev/null || {
46 echo "Pattern of expected output: $pattern"
  /external/strace/tests-mx32/
count.test 38 local pattern="$1"; shift
45 LC_ALL=C grep -E -x -e "$pattern" "$LOG" > /dev/null || {
46 echo "Pattern of expected output: $pattern"
  /toolchain/binutils/binutils-2.27/gold/testsuite/
script_test_14.sh 30 pattern=$2
39 match_pattern=`echo "$found" | grep -e "$pattern"`
41 echo "Expected pattern was not found in section \"$section\":"
42 echo " $pattern"
  /build/blueprint/pathtools/
glob_test.go 28 pattern string
38 pattern: "*",
43 pattern: "*.ext",
48 pattern: "*/a",
53 pattern: "*/*/a",
58 pattern: "*/a/a",
65 pattern: "./*",
70 pattern: "./*.ext",
75 pattern: "./*/a",
80 pattern: "./[ac]/a"
    [all...]
  /build/kati/testcase/
wildcard_with_var.mk 2 pattern = ${prefix}* macro
3 files = $(wildcard $(pattern))
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 21 import java.util.regex.Pattern;
29 * pattern .*should get token \[, but get -1.*
34 * pattern .*cannot find symbol.*
45 /** The pattern the expected output will match. */
46 private final Pattern pattern; field in class:Expectation
57 public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug) {
58 if (result == null || description == null || pattern == null) {
60 "result=" + result + " description=" + description + " pattern=" + pattern)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
InvalidMatrixException.java 37 * @param pattern format specifier
43 public InvalidMatrixException(final String pattern, final Object ... arguments) {
44 this(new DummyLocalizable(pattern), arguments);
49 * @param pattern format specifier
53 public InvalidMatrixException(final Localizable pattern, final Object ... arguments) {
54 super(pattern, arguments);
MatrixIndexException.java 36 * @param pattern format specifier
41 public MatrixIndexException(final String pattern, final Object ... arguments) {
42 this(new DummyLocalizable(pattern), arguments);
47 * @param pattern format specifier
51 public MatrixIndexException(final Localizable pattern, final Object ... arguments) {
52 super(pattern, arguments);
MatrixVisitorException.java 35 * @param pattern format specifier
38 public MatrixVisitorException(final String pattern, final Object[] arguments) {
39 super(new DummyLocalizable(pattern), arguments);
44 * @param pattern format specifier
48 public MatrixVisitorException(final Localizable pattern, final Object[] arguments) {
49 super(pattern, arguments);
  /external/fio/lib/
pattern.h 7 * Pattern format description. The input for 'parse_pattern'.
18 * Pattern format. The output of 'parse_pattern'.
33 int paste_format_inplace(char *pattern, unsigned int pattern_len,
37 int paste_format(const char *pattern, unsigned int pattern_len,
41 int cpy_pattern(const char *pattern, unsigned int pattern_len,
44 int cmp_pattern(const char *pattern, unsigned int pattern_size,
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
UriPatternMatcher.java 20 * A general interface for matching a URI against a URI pattern. Guice-servlet provides regex and
21 * servlet-style pattern matching out of the box.
28 * @return Returns true if the uri matches the pattern.
33 * @param pattern The Path that this service pattern can match against.
34 * @return Returns a canonical servlet path from this pattern. For instance, if the pattern is
35 * {@code /home/*} then the path extracted will be {@code /home}. Each pattern matcher
38 * NOTE(dhanji): This method returns null for the regex pattern matcher.
40 String extractPath(String pattern);
    [all...]
  /external/libevent/sample/
hostcheck.c 155 * Match a hostname against a wildcard pattern.
163 static int hostmatch(const char *hostname, const char *pattern)
168 pattern_wildcard = strchr(pattern, '*');
170 return Curl_raw_equal(pattern, hostname) ?
173 /* We require at least 2 dots in pattern to avoid too wide wildcard
176 pattern_label_end = strchr(pattern, '.');
179 Curl_raw_nequal(pattern, "xn--", 4)) {
183 return Curl_raw_equal(pattern, hostname) ?
193 of the pattern. */
194 if(hostname_label_end - hostname < pattern_label_end - pattern)
    [all...]
  /external/skia/tools/
misc_utils.py 17 def search_within_stream(input_stream, pattern, default=None):
25 pattern = '^root(:[^:]*){4}:(?P<return>[^:]*)'
27 return search_within_file(stream, pattern)
32 pattern: (string) to be passed to re.compile
38 pattern_object = re.compile(pattern)
46 def search_within_string(input_string, pattern, default=None):
51 pattern: (string) to be passed to re.compile
57 match = re.search(pattern, input_string)
  /external/skqp/tools/
misc_utils.py 17 def search_within_stream(input_stream, pattern, default=None):
25 pattern = '^root(:[^:]*){4}:(?P<return>[^:]*)'
27 return search_within_file(stream, pattern)
32 pattern: (string) to be passed to re.compile
38 pattern_object = re.compile(pattern)
46 def search_within_string(input_string, pattern, default=None):
51 pattern: (string) to be passed to re.compile
57 match = re.search(pattern, input_string)
  /external/vogar/src/vogar/
Expectation.java 22 import java.util.regex.Pattern;
30 * pattern .*should get token \[, but get -1.*
35 * pattern .*cannot find symbol.*
40 /** The pattern to use when no expected output is specified */
41 public static final Pattern MATCH_ALL_PATTERN
42 = Pattern.compile(".*", Pattern.MULTILINE | Pattern.DOTALL);
54 /** The pattern the expected output will match. */
55 private final Pattern pattern field in class:Expectation
    [all...]
  /external/webrtc/webrtc/build/
merge_libs.py 21 def FindFiles(path, pattern):
22 """Finds files matching |pattern| under |path|.
24 Returns a list of file paths matching |pattern|, by walking the directory tree
30 pattern: A shell-style wildcard pattern to match filenames against.
38 for filename in fnmatch.filter(filenames, pattern):
39 if all(pattern not in filename for pattern in IGNORE_PATTERNS):
63 pattern = '*.o'
66 pattern = '*.a
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
check_dims.rs 19 int pattern;
25 // each row). If we don't see the pattern that we wrote, we know that we
28 if (*o != pattern) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
130 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
126 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation
    [all...]
  /external/python/cpython2/Lib/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
130 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilatio
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
126 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilatio
    [all...]

Completed in 2257 milliseconds

1 23 4 5 6 7 8 91011>>