Home
last modified time | relevance | path

Searched refs:re2 (Results 1 – 25 of 190) sorted by relevance

12345678

/external/rust/crates/grpcio-sys/grpc/third_party/re2/
DBUILD29 name = "re2",
31 "re2/bitmap256.h",
32 "re2/bitstate.cc",
33 "re2/compile.cc",
34 "re2/dfa.cc",
35 "re2/filtered_re2.cc",
36 "re2/mimics_pcre.cc",
37 "re2/nfa.cc",
38 "re2/onepass.cc",
39 "re2/parse.cc",
[all …]
DCMakeLists.txt62 re2/bitstate.cc
63 re2/compile.cc
64 re2/dfa.cc
65 re2/filtered_re2.cc
66 re2/mimics_pcre.cc
67 re2/nfa.cc
68 re2/onepass.cc
69 re2/parse.cc
70 re2/perl_groups.cc
71 re2/prefilter.cc
[all …]
DMakefile75 re2/filtered_re2.h\
76 re2/re2.h\
77 re2/set.h\
78 re2/stringpiece.h\
92 re2/bitmap256.h\
93 re2/filtered_re2.h\
94 re2/pod_array.h\
95 re2/prefilter.h\
96 re2/prefilter_tree.h\
97 re2/prog.h\
[all …]
Ducs2.diff12 Change 12780686 by rsc@rsc-re2 on 2009/09/16 15:30:15
22 ==== re2/bitstate.cc#2 - re2/bitstate.cc#3 ====
23 re2/bitstate.cc#2:314,321 - re2/bitstate.cc#3:314,319
32 ==== re2/compile.cc#17 - re2/compile.cc#18 ====
33 re2/compile.cc#17:95,101 - re2/compile.cc#18:95,100
41 re2/compile.cc#17:168,176 - re2/compile.cc#18:167,172
51 re2/compile.cc#17:475,481 - re2/compile.cc#18:471,477
60 re2/compile.cc#17:488,496 - re2/compile.cc#18:484,489
70 re2/compile.cc#17:503,581 - re2/compile.cc#18:496,501
150 re2/compile.cc#17:707,716 - re2/compile.cc#18:627,634
[all …]
DREADME4 visit https://github.com/google/re2/.
14 the re2.h header file.
17 https://github.com/google/re2/wiki
20 https://github.com/google/re2/issues
23 https://groups.google.com/group/re2-dev
31 An Erlang wrapper is at https://github.com/dukesoferl/re2/ and on Hex (hex.pm).
32 An Inferno wrapper is at https://github.com/powerman/inferno-re2/.
33 A Node.js wrapper is at https://github.com/uhop/node-re2/ and on NPM (npmjs.com).
34 An OCaml wrapper is at https://github.com/janestreet/re2/ and on OPAM (opam.ocaml.org).
38 A Ruby wrapper is at https://github.com/mudge/re2/ and on RubyGems (rubygems.org).
Dlibre2.symbols3 # re2::RE2*
6 # re2::StringPiece*
9 # re2::operator<<*
11 # re2::FilteredRE2*
Dlibre2.symbols.darwin2 # re2::RE2*
5 # re2::StringPiece*
8 # re2::operator<<*
10 # re2::FilteredRE2*
/external/rust/crates/grpcio-sys/grpc/cmake/
Dre2.cmake15 # The CMakeLists.txt for re2 doesn't propagate include directories
21 set(RE2_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third_party/re2)
24 …# Explicitly disable BUILD_TESTING to avoid re2's CMakeLists.txt triggering https://github.com/grp…
25 option(BUILD_TESTING "re2.cmake explicitly disabled CTest's BUILD_TESTING option." OFF)
28 add_subdirectory(${RE2_ROOT_DIR} third_party/re2)
30 if(TARGET re2)
31 set(_gRPC_RE2_LIBRARIES re2)
32 set(_gRPC_RE2_INCLUDE_DIR "${RE2_ROOT_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/third_party/re2")
34 install(TARGETS re2 EXPORT gRPCTargets
48 find_package(re2 REQUIRED)
[all …]
/external/rust/crates/grpcio-sys/grpc/cmake/modules/
DFindre2.cmake15 find_package(re2 QUIET CONFIG)
24 # set_property() calls; then we can simply alias PkgConfig::RE2 as re2::re2.
26 pkg_check_modules(RE2 QUIET re2)
29 add_library(re2::re2 INTERFACE IMPORTED)
31 set_property(TARGET re2::re2 PROPERTY
43 set_property(TARGET re2::re2 PROPERTY
47 set_property(TARGET re2::re2 PROPERTY
/external/python/httplib2/doc/html/_static/
Dsearchtools.js87 var re2;
97 re2 = /^(.+?)([^s])s$/;
101 else if (re2.test(w))
102 w = w.replace(re2,"$1$2");
106 re2 = /^(.+?)(ed|ing)$/;
115 else if (re2.test(w)) {
116 var fp = re2.exec(w);
118 re2 = new RegExp(s_v);
119 if (re2.test(stem)) {
121 re2 = /(at|bl|iz)$/;
[all …]
/external/rust/crates/regex/tests/
Dconsistent.rs133 &(name2, ref re2): &(&str, $regex_type),
138 re2.clone(),
144 name1, re1, name2, re2, err
151 re2: $regex_type,
154 fn new(re1: $regex_type, re2: $regex_type) -> Self {
155 RegexEqualityTest { re1: re1, re2: re2 }
164 if self.re1.find(&input) != self.re2.find(input) {
172 let cap2 = self.re2.captures(input);
194 let fi2 = self.re2.find_iter(input);
205 let ci2 = self.re2.captures_iter(input);
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dset.cc19 namespace re2 { namespace
45 re2::Regexp* re = Regexp::Parse(pattern, pf, &status); in Add()
56 re2::Regexp* m = re2::Regexp::HaveMatch(n, pf); in Add()
59 PODArray<re2::Regexp*> sub(nsub + 1); in Add()
64 re = re2::Regexp::Concat(sub.data(), nsub + 1, pf); in Add()
66 re2::Regexp* sub[2]; in Add()
69 re = re2::Regexp::Concat(sub, 2, pf); in Add()
90 PODArray<re2::Regexp*> sub(size_); in Compile()
98 re2::Regexp* re = re2::Regexp::Alternate(sub.data(), size_, pf); in Compile()
Dset.h14 namespace re2 {
19 namespace re2 {
65 typedef std::pair<std::string, re2::Regexp*> Elem;
70 re2::Prog* prog_;
Dre2.h216 namespace re2 {
221 namespace re2 {
314 re2::Regexp* Regexp() const { return entire_regexp_; } in Regexp()
742 re2::Prog* ReverseProg() const;
746 re2::Regexp* entire_regexp_; // parsed regular expression
752 re2::Regexp* suffix_regexp_; // parsed regular expression, prefix_ removed
753 re2::Prog* prog_; // compiled program for regexp
758 mutable re2::Prog* rprog_;
999 using re2::RE2;
1000 using re2::LazyRE2;
Dre2.cc37 namespace re2 { namespace
70 static RE2::ErrorCode RegexpErrorToRE2(re2::RegexpStatusCode code) { in RegexpErrorToRE2()
72 case re2::kRegexpSuccess: in RegexpErrorToRE2()
74 case re2::kRegexpInternalError: in RegexpErrorToRE2()
76 case re2::kRegexpBadEscape: in RegexpErrorToRE2()
78 case re2::kRegexpBadCharClass: in RegexpErrorToRE2()
80 case re2::kRegexpBadCharRange: in RegexpErrorToRE2()
82 case re2::kRegexpMissingBracket: in RegexpErrorToRE2()
84 case re2::kRegexpMissingParen: in RegexpErrorToRE2()
86 case re2::kRegexpTrailingBackslash: in RegexpErrorToRE2()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/fuzzing/
Dre2_fuzzer.cc16 using re2::StringPiece;
61 std::unique_ptr<re2::Prefilter> prefilter(re2::Prefilter::FromRE2(&re)); in TestOneInput()
64 std::queue<re2::Prefilter*> nodes; in TestOneInput()
67 re2::Prefilter* node = nodes.front(); in TestOneInput()
69 if (node->op() == re2::Prefilter::ATOM) { in TestOneInput()
72 } else if (node->op() == re2::Prefilter::AND || in TestOneInput()
73 node->op() == re2::Prefilter::OR) { in TestOneInput()
74 for (re2::Prefilter* sub : *node->subs()) in TestOneInput()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/util/
Dflags.h14 namespace re2 { type FLAGS_##name = deflt; }
17 namespace re2 { extern type FLAGS_##name; }
19 namespace re2 {
/external/rust/crates/grpcio-sys/grpc/
DgRPC-C++.podspec776 'third_party/re2/re2/bitmap256.h',
777 'third_party/re2/re2/filtered_re2.h',
778 'third_party/re2/re2/pod_array.h',
779 'third_party/re2/re2/prefilter.h',
780 'third_party/re2/re2/prefilter_tree.h',
781 'third_party/re2/re2/prog.h',
782 'third_party/re2/re2/re2.h',
783 'third_party/re2/re2/regexp.h',
784 'third_party/re2/re2/set.h',
785 'third_party/re2/re2/sparse_array.h',
[all …]
DgRPC-Core.podspec1274 'third_party/re2/re2/bitmap256.h',
1275 'third_party/re2/re2/bitstate.cc',
1276 'third_party/re2/re2/compile.cc',
1277 'third_party/re2/re2/dfa.cc',
1278 'third_party/re2/re2/filtered_re2.cc',
1279 'third_party/re2/re2/filtered_re2.h',
1280 'third_party/re2/re2/mimics_pcre.cc',
1281 'third_party/re2/re2/nfa.cc',
1282 'third_party/re2/re2/onepass.cc',
1283 'third_party/re2/re2/parse.cc',
[all …]
/external/dtc/tests/
Ddtbs_equal_unordered.c48 const struct fdt_reserve_entry *re2 = p2; in mem_rsv_cmp() local
50 if (fdt64_to_cpu(re1->address) < fdt64_to_cpu(re2->address)) in mem_rsv_cmp()
52 else if (fdt64_to_cpu(re1->address) > fdt64_to_cpu(re2->address)) in mem_rsv_cmp()
55 if (fdt64_to_cpu(re1->size) < fdt64_to_cpu(re2->size)) in mem_rsv_cmp()
57 else if (fdt64_to_cpu(re1->size) > fdt64_to_cpu(re2->size)) in mem_rsv_cmp()
/external/deqp-deps/SPIRV-Tools/external/
DCMakeLists.txt99 # If already configured, then use that. Otherwise, prefer to find it under 're2'
101 if (NOT TARGET re2)
107 if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/re2)
108 set(RE2_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/re2" CACHE STRING "RE2 source dir" )
117 if (NOT TARGET re2)
132 # Turn off warnings for effcee and re2
134 set_property(TARGET re2 APPEND PROPERTY COMPILE_OPTIONS -w)
/external/swiftshader/third_party/SPIRV-Tools/external/
DCMakeLists.txt99 # If already configured, then use that. Otherwise, prefer to find it under 're2'
101 if (NOT TARGET re2)
107 if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/re2)
108 set(RE2_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/re2" CACHE STRING "RE2 source dir" )
117 if (NOT TARGET re2)
132 # Turn off warnings for effcee and re2
134 set_property(TARGET re2 APPEND PROPERTY COMPILE_OPTIONS -w)
/external/swiftshader/third_party/SPIRV-Tools/test/link/
Dlinker_fixture.h97 re2::StringPiece temp(templateBody);
98 re2::StringPiece x;
112 re2::StringPiece common;
113 std::vector<re2::StringPiece> variants(cnt);
125 re2::StringPiece temp2(templateBody);
/external/deqp-deps/SPIRV-Tools/test/link/
Dlinker_fixture.h97 re2::StringPiece temp(templateBody);
98 re2::StringPiece x;
112 re2::StringPiece common;
113 std::vector<re2::StringPiece> variants(cnt);
125 re2::StringPiece temp2(templateBody);
/external/deqp-deps/SPIRV-Tools/
DDEPS19 'external/re2':
20 Var('github') + '/google/re2.git@' + Var('re2_revision'),

12345678