HomeSort by relevance Sort by last modified time
    Searched full:regexes (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/libcxx/utils/sym_check/
sym_match.py 3 sym_match - Match all symbols in a list against a list of regexes.
20 'regexes', metavar='regexes', default=[], nargs='*',
24 if not args.regexes and args.blacklist is None:
30 search_list = args.regexes
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
FiltersModuleBuilder.java 47 public ServletModule.FilterKeyBindingBuilder filterRegex(List<String> regexes) {
48 return new FilterKeyBindingBuilderImpl(regexes, UriPatternType.REGEX);
ServletsModuleBuilder.java 51 public ServletModule.ServletKeyBindingBuilder serveRegex(List<String> regexes) {
52 return new ServletKeyBindingBuilderImpl(regexes, UriPatternType.REGEX);
ServletModule.java 261 protected final FilterKeyBindingBuilder filterRegex(String regex, String... regexes) {
263 .filterRegex(ImmutableList.<String>builder().add(regex).add(regexes).build());
279 protected final ServletKeyBindingBuilder serveRegex(String regex, String... regexes) {
281 .serveRegex(ImmutableList.<String>builder().add(regex).add(regexes).build());
  /external/autotest/client/site_tests/security_OpenFDs/
security_OpenFDs.py 77 Removes every item in |fds| matching any of the regexes in |filters|.
79 any regexes which did not match anything.
82 @param filters: list of regexes to filter open fds with
124 * Reports any fds not accounted for by regexes in |filters|.
132 @param filters: list of regexes to filter open fds with
  /external/chromium-trace/catapult/third_party/coverage/coverage/
config.py 100 """Read a list of full-line regexes.
103 list of regexes. Each value is stripped of whitespace.
123 # The default line exclusion regexes.
128 # The default partial branch regexes, to be modified by the user.
133 # The default partial branch regexes, based on Python semantics.
misc.py 140 def join_regex(regexes):
141 """Combine a list of regexes into one that matches any of them."""
142 return "|".join("(?:%s)" % r for r in regexes)
parser.py 76 def lines_matching(self, *regexes):
77 """Find the lines matching one of a list of regexes.
80 of the regexes in `regexes`. The entire line needn't match, just a
84 regex_c = re.compile(join_regex(regexes))
control.py 221 # regexes.
731 list. If any of the regexes in the list is found in a line, the line
741 """Drop all the compiled exclusion regexes, a list was modified."""
    [all...]
  /external/libselinux/
README.android 45 regexes. This reduces the time to load the file_contexts
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/
FileProcessor.java 84 public FileProcessor addInputRegex (String... regexes) {
85 for (String regex : regexes)
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 107 private static final String DEFAULT_FILTER_MESSAGE = "Filter list of OpenGL calls. Accepts Java regexes.";
736 // split the user input into multiple regexes
737 // we assume that the regexes are OR'ed together i.e., all text that matches
738 // any one of the regexes will be displayed
760 // match if atleast one of the regexes matches this text
    [all...]
  /external/libselinux/utils/
sefcontext_compile.c 62 * ** Regexes
135 /* write the number of regexes coming */
  /external/selinux/libselinux/utils/
sefcontext_compile.c 80 * ** Regexes
153 /* write the number of regexes coming */
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/serialization/
serializer.js 17 //Escaping regexes
  /external/pcre/dist/
pcre_maketables.c 132 comments within regexes. However, Perl changed at release 5.18, so PCRE changed
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_strptime.py 5 TimeRE -- Creates regexes for pattern matching a string of text containing
177 """Handle conversion from format directives to regexes."""
271 _CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache
  /prebuilts/gdb/linux-x86/lib/python2.7/
_strptime.py 5 TimeRE -- Creates regexes for pattern matching a string of text containing
177 """Handle conversion from format directives to regexes."""
271 _CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_strptime.py 5 TimeRE -- Creates regexes for pattern matching a string of text containing
177 """Handle conversion from format directives to regexes."""
271 _CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 5 TimeRE -- Creates regexes for pattern matching a string of text containing
177 """Handle conversion from format directives to regexes."""
271 _CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 115 /// including regexes wrapped in double curly braces in the directive, such as:
  /frameworks/base/core/res/res/xml/
sms_short_codes.xml 29 "pattern" or "premium" regexes, and does not match the "free" or "standard" regexes. -->
  /external/toybox/toys/posix/
ps.c 248 void *regexes, *snapshot;
    [all...]
  /build/tools/releasetools/
pylintrc 160 # the name regexes allow several styles.
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
javascripttokenizer.py 328 # Check a big group - strings, starting comments, and regexes - all

Completed in 2160 milliseconds

1 2 3