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

1 2

  /external/libcxx/utils/
sym_match.py 12 sym_match - Match all symbols in a list against a list of regexes.
29 'regexes', metavar='regexes', default=[], nargs='*',
33 if not args.regexes and args.blacklist is None:
39 search_list = args.regexes
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/
sym_match.py 12 sym_match - Match all symbols in a list against a list of regexes.
29 'regexes', metavar='regexes', default=[], nargs='*',
33 if not args.regexes and args.blacklist is None:
39 search_list = args.regexes
  /external/libtextclassifier/
zlib-utils_test.cc 37 model.datetime_model->patterns.back()->regexes.emplace_back(
39 model.datetime_model->patterns.back()->regexes.back()->pattern =
51 EXPECT_TRUE(model.datetime_model->patterns[0]->regexes[0]->pattern.empty());
76 ->regexes()
92 EXPECT_EQ(model.datetime_model->patterns[0]->regexes[0]->pattern,
zlib-utils.cc 134 for (int j = 0; j < pattern->regexes.size(); j++) {
135 DatetimeModelPattern_::RegexT* regex = pattern->regexes[j].get();
196 for (int j = 0; j < pattern->regexes.size(); j++) {
197 DatetimeModelPattern_::RegexT* regex = pattern->regexes[j].get();
model_generated.h 1137 std::vector<std::unique_ptr<libtextclassifier2::DatetimeModelPattern_::RegexT>> regexes; member in struct:libtextclassifier2::DatetimeModelPatternT
1158 const flatbuffers::Vector<flatbuffers::Offset<libtextclassifier2::DatetimeModelPattern_::Regex>> *regexes() const { function in struct:libtextclassifier2::FLATBUFFERS_FINAL_CLASS
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
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());
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);
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_graph.h 65 const std::vector<string>& regexes,
tfprof_op.h 56 const std::vector<string>& regexes);
tfprof_scope.h 57 const std::vector<string>& regexes);
tfprof_code.h 72 const std::vector<string>& regexes);
tfprof_scope.cc 121 std::vector<ScopeNode*> roots, const std::vector<string>& regexes) {
128 for (const string& regex : regexes) {
139 std::vector<ScopeNode*> nroots = SearchRoot(root->show_children, regexes);
tfprof_op.cc 196 const std::vector<string>& regexes) {
197 if (regexes.empty() || (regexes.size() == 1 && regexes[0] == ".*")) {
202 for (const string& regex : regexes) {
tfprof_graph.cc 118 const std::vector<GraphNode*>& roots, const std::vector<string>& regexes,
131 for (const string& regex : regexes) {
142 SearchRoot(root->show_children, regexes, visited);
tfprof_show_multi.h 68 const std::vector<string>& regexes) const;
tfprof_show.h 66 const std::vector<string>& regexes) const;
tfprof_show_multi.cc 103 const std::vector<string>& regexes) const {
104 for (const string& regex : regexes) {
tfprof_show.cc 112 const std::vector<string>& regexes) const {
113 for (const string& regex : regexes) {
tfprof_code.cc 536 const std::vector<string>& regexes) {
543 for (const string& regex : regexes) {
554 std::vector<CodeNode*> nroots = SearchRoot(root->show_children, regexes);
  /external/libtextclassifier/datetime/
parser_test.cc 382 patterns->back()->regexes.emplace_back(new DatetimeModelPattern_::RegexT);
383 patterns->back()->regexes.back()->pattern = regex;
384 patterns->back()->regexes.back()->groups.push_back(
parser.cc 50 if (pattern->regexes()) {
51 for (const DatetimeModelPattern_::Regex* regex : *pattern->regexes()) {
  /external/python/cpython2/Misc/Vim/
vim_syntax.py 58 """Generator to yield various combinations of strings regexes"""
  /external/autotest/client/cros/
cryptohome.py 375 def is_vault_mounted(user, regexes=None, allow_fail=False):
380 regexes: dictionary of regexes to matches against the mount information.
387 if regexes is None:
388 regexes = {
402 for fs_regex in regexes.keys():
404 device_regex = regexes[fs_regex]
441 regexes={
455 regexes={
529 if not is_vault_mounted(user, regexes=
    [all...]
  /external/toybox/toys/posix/
ps.c 271 void *regexes, *snapshot;
    [all...]

Completed in 468 milliseconds

1 2