/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
D | ServletModule.java | 274 protected final FilterKeyBindingBuilder filterRegex(String regex, String... regexes) { in filterRegex() argument 276 .filterRegex(ImmutableList.<String>builder().add(regex).add(regexes).build()); in filterRegex() 283 protected final FilterKeyBindingBuilder filterRegex(Iterable<String> regexes) { in filterRegex() argument 284 return getFiltersModuleBuilder().filterRegex(ImmutableList.copyOf(regexes)); in filterRegex() 308 protected final ServletKeyBindingBuilder serveRegex(String regex, String... regexes) { in serveRegex() argument 310 .serveRegex(ImmutableList.<String>builder().add(regex).add(regexes).build()); in serveRegex() 317 protected final ServletKeyBindingBuilder serveRegex(Iterable<String> regexes) { in serveRegex() argument 318 return getServletModuleBuilder().serveRegex(ImmutableList.copyOf(regexes)); in serveRegex()
|
D | FiltersModuleBuilder.java | 45 public ServletModule.FilterKeyBindingBuilder filterRegex(List<String> regexes) { in filterRegex() argument 46 return new FilterKeyBindingBuilderImpl(parsePatterns(UriPatternType.REGEX, regexes)); in filterRegex()
|
D | ServletsModuleBuilder.java | 49 public ServletModule.ServletKeyBindingBuilder serveRegex(List<String> regexes) { in serveRegex() argument 50 return new ServletKeyBindingBuilderImpl(parsePatterns(UriPatternType.REGEX, regexes)); in serveRegex()
|
/external/igt-gpu-tools/runner/ |
D | settings.c | 213 list->regexes = realloc(list->regexes, in add_regex() 214 (list->size + 1) * sizeof(*list->regexes)); in add_regex() 217 list->regexes[list->size] = regex; in add_regex() 269 static void free_regexes(struct regex_list *regexes) in free_regexes() argument 273 for (i = 0; i < regexes->size; i++) { in free_regexes() 274 free(regexes->regex_strings[i]); in free_regexes() 275 g_regex_unref(regexes->regexes[i]); in free_regexes() 277 free(regexes->regex_strings); in free_regexes() 278 free(regexes->regexes); in free_regexes()
|
D | settings.h | 24 GRegex **regexes; member
|
/external/tensorflow/tensorflow/core/profiler/g3doc/ |
D | options.md | 104 the type regexes specified. tfprof allow user to define extra operation types 105 for graph nodes through tensorflow.tfprof.OpLogProto proto. regexes are 108 …e_regexes`: Show node starting from the node that matches the regexes, recursively. regexes are co… 110 `-trim_name_regexes`: Hide node starting from the node that matches the regexes, 111 recursively, regexes are comma-separated. 113 `-show_name_regexes`: Show node that match the regexes. regexes are 116 `-hide_name_regexes`: Hide node that match the regexes. regexes are
|
/external/libtextclassifier/native/annotator/ |
D | zlib-utils_test.cc | 38 model.datetime_model->patterns.back()->regexes.emplace_back( in TEST() 40 model.datetime_model->patterns.back()->regexes.back()->pattern = in TEST() 83 ->regexes() in TEST() 99 EXPECT_EQ(model.datetime_model->patterns[0]->regexes[0]->pattern, in TEST()
|
D | zlib-utils.cc | 50 for (int j = 0; j < pattern->regexes.size(); j++) { in CompressModel() 51 DatetimeModelPattern_::RegexT* regex = pattern->regexes[j].get(); in CompressModel() 101 for (int j = 0; j < pattern->regexes.size(); j++) { in DecompressModel() 102 DatetimeModelPattern_::RegexT* regex = pattern->regexes[j].get(); in DecompressModel()
|
/external/libcxx/utils/ |
D | sym_match.py | 33 if not args.regexes and args.blacklist is None: 39 search_list = args.regexes
|
/external/autotest/client/cros/ |
D | cryptohome.py | 467 def is_vault_mounted(user, regexes=None, allow_fail=False): argument 479 if regexes is None: 480 regexes = { 494 for fs_regex in regexes.keys(): 496 device_regex = regexes[fs_regex] 518 regexes={ 532 regexes={ 607 if not is_vault_mounted(user, regexes={
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_op.cc | 193 const std::vector<string>& regexes) { in SearchRoot() argument 194 if (regexes.empty() || (regexes.size() == 1 && regexes[0] == ".*")) { in SearchRoot() 200 for (const string& regex : regexes) { in SearchRoot()
|
D | tfprof_scope.cc | 122 std::vector<ScopeNode*> roots, const std::vector<string>& regexes) { in SearchRoot() argument 129 for (const string& regex : regexes) { in SearchRoot() 140 std::vector<ScopeNode*> nroots = SearchRoot(root->show_children, regexes); in SearchRoot()
|
D | tfprof_graph.cc | 119 const std::vector<GraphNode*>& roots, const std::vector<string>& regexes, in SearchRoot() argument 132 for (const string& regex : regexes) { in SearchRoot() 143 SearchRoot(root->show_children, regexes, visited); in SearchRoot()
|
D | tfprof_op.h | 56 const std::vector<string>& regexes);
|
D | tfprof_scope.h | 57 const std::vector<string>& regexes);
|
D | tfprof_graph.h | 65 const std::vector<string>& regexes,
|
D | tfprof_code.h | 72 const std::vector<string>& regexes);
|
D | tfprof_show_multi.cc | 103 const std::vector<string>& regexes) const { in ShouldTrim() 104 for (const string& regex : regexes) { in ShouldTrim()
|
D | tfprof_show_multi.h | 66 const std::vector<string>& regexes) const;
|
D | tfprof_show.cc | 113 const std::vector<string>& regexes) const { in ShouldTrim() 114 for (const string& regex : regexes) { in ShouldTrim()
|
/external/llvm-project/lld/Common/ |
D | ErrorHandler.cpp | 138 static std::regex regexes[] = { in getLocation() local 157 for (std::regex &re : regexes) { in getLocation()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | dataModifiers.txt | 6 # XPaths can be either regexes or literal XPaths, but using literal XPaths will
|
/external/python/cpython3/Tools/demo/ |
D | README | 11 redemo.py Regular Expressions: GUI script to test regexes.
|
/external/rust/crates/regex/ |
D | CHANGELOG.md | 109 by better support for empty-subexpressions in regexes. For 110 example, regexes like `b|` are now allowed. Major thanks to 333 Upgrades `aho-corasick` to 0.7 and uses it for `foo|bar|...|quux` regexes. 431 Fix doc examples for byte regexes. 499 * `(?-u:\B)` is no longer allowed in Unicode regexes since it can match at 501 regexes. 530 Improve error messages for invalid regexes like `[\d-a]`. 541 regexes. 558 SIMD optimizations for certain types of regexes. No additional compile time 590 * Error messages for invalid regexes have been greatly improved. You get these [all …]
|
D | PERFORMANCE.md | 93 It is supported and encouraged to define your regexes using `lazy_static!` as 190 a few examples of regexes that get literal prefixes detected: 199 Literals in anchored regexes can also be used for detecting non-matches very 241 **Advice**: Don't write regexes that cause DFA state blow up if you care about 272 ## Resist the temptation to "optimize" regexes
|