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

1 2 34 5 6 7 8 91011>>

  /prebuilts/gdb/linux-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...]
  /prebuilts/python/darwin-x86/2.7.5/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...]
  /prebuilts/python/linux-x86/2.7.5/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...]
  /build/make/core/clang/
tidy.mk 29 # most specific pattern.
33 $(foreach pattern,$(DEFAULT_LOCAL_TIDY_CHECKS), \
34 $(call find_default_local_tidy_check,$(pattern),$(1)) \
  /development/tools/idegen/src/
Excludes.java 17 import java.util.regex.Pattern;
25 private final List<Pattern> patterns;
30 public Excludes(List<Pattern> patterns) {
38 for (Pattern pattern : patterns) {
39 if (pattern.matcher(path).find()) {
  /external/icu/icu4c/source/io/
uscanf.cpp 72 UChar *pattern; local
78 pattern = (UChar *)uprv_malloc(size * sizeof(UChar));
79 if(pattern == 0) {
84 pattern = patBuffer;
86 u_charsToUChars(patternSpecification, pattern, size);
89 converted = u_vfscanf_u(f, pattern, ap);
92 if (pattern != patBuffer) {
93 uprv_free(pattern);
  /external/python/cpython2/Lib/idlelib/idle_test/
__init__.py 9 def load_tests(loader, standard_tests, pattern):
12 package_tests = loader.discover(start_dir=this_dir, pattern='test*.py',
  /external/python/cpython3/Lib/idlelib/idle_test/
__init__.py 11 def load_tests(loader, standard_tests, pattern):
14 package_tests = loader.discover(start_dir=this_dir, pattern='test*.py',
  /external/v8/src/ast/
ast-function-literal-id-reindexer.cc 19 void AstFunctionLiteralIdReindexer::Reindex(Expression* pattern) {
20 Visit(pattern);
  /frameworks/base/core/java/android/hardware/
IConsumerIrService.aidl 23 void transmit(String packageName, int carrierFrequency, in int[] pattern);
  /external/guava/guava/src/com/google/common/io/
PatternFilenameFilter.java 24 import java.util.regex.Pattern;
39 private final Pattern pattern; field in class:PatternFilenameFilter
42 * Constructs a pattern file name filter object.
43 * @param patternStr the pattern string on which to filter file names
45 * @throws PatternSyntaxException if pattern compilation fails (runtime)
48 this(Pattern.compile(patternStr));
52 * Constructs a pattern file name filter object.
53 * @param pattern the pattern on which to filter file name
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
AbstractServletModuleBinding.java 29 private final String pattern; field in class:AbstractServletModuleBinding
33 AbstractServletModuleBinding(Map<String, String> initParams, String pattern, T target,
36 this.pattern = pattern;
46 return pattern;
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
MultiGroupConversionRule.java 28 import java.util.regex.Pattern;
31 * This class represents a conversion rule It uses a Pattern and defines for
32 * each capturing group of this Pattern a replacement text
43 private Pattern pattern; field in class:MultiGroupConversionRule
46 public MultiGroupConversionRule(Pattern pattern) {
47 this.pattern = pattern;
55 public Pattern getPattern()
    [all...]
  /external/strace/tests/
nlattr_br_port_msg.c 74 static char pattern[4096]; local
75 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
83 4, pattern, 4,
84 print_quoted_hex(pattern, 4));
nlattr_dcbmsg.c 72 static char pattern[4096]; local
73 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
81 4, pattern, 4,
82 print_quoted_hex(pattern, 4));
nlattr_netconfmsg.c 71 static char pattern[4096]; local
72 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
80 4, pattern, 4,
81 print_quoted_hex(pattern, 4));
nlattr_rtgenmsg.c 71 static char pattern[4096]; local
72 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
80 4, pattern, 4,
81 print_quoted_hex(pattern, 4));
nlattr_tcamsg.c 67 static char pattern[4096]; local
68 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
76 4, pattern, 4,
77 print_quoted_hex(pattern, 4));
  /external/strace/tests-m32/
nlattr_br_port_msg.c 74 static char pattern[4096]; local
75 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
83 4, pattern, 4,
84 print_quoted_hex(pattern, 4));
nlattr_dcbmsg.c 72 static char pattern[4096]; local
73 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
81 4, pattern, 4,
82 print_quoted_hex(pattern, 4));
nlattr_netconfmsg.c 71 static char pattern[4096]; local
72 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
80 4, pattern, 4,
81 print_quoted_hex(pattern, 4));
nlattr_rtgenmsg.c 71 static char pattern[4096]; local
72 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
80 4, pattern, 4,
81 print_quoted_hex(pattern, 4));
nlattr_tcamsg.c 67 static char pattern[4096]; local
68 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
76 4, pattern, 4,
77 print_quoted_hex(pattern, 4));
  /external/strace/tests-mx32/
nlattr_br_port_msg.c 74 static char pattern[4096]; local
75 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
83 4, pattern, 4,
84 print_quoted_hex(pattern, 4));
nlattr_dcbmsg.c 72 static char pattern[4096]; local
73 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
81 4, pattern, 4,
82 print_quoted_hex(pattern, 4));

Completed in 1259 milliseconds

1 2 34 5 6 7 8 91011>>