Home
last modified time | relevance | path

Searched defs:re (Results 1 – 25 of 262) sorted by relevance

1234567891011

/external/libcxx/test/std/re/re.regex/re.regex.construct/
Ddeduct.pass.cpp42 std::basic_regex re(s1.begin(), s1.end()); in main() local
51 std::basic_regex re(s1.begin(), s1.end(), std::regex_constants::basic); in main() local
61 std::basic_regex re("(a([bc]))"s); in main() local
69 std::basic_regex re(L"(a([bc]))"s, std::regex_constants::awk); in main() local
77 std::basic_regex re("ABCDE"); in main() local
85 std::basic_regex re(L"ABCDE", std::regex_constants::grep); in main() local
93 std::basic_regex re("ABCDEDEF", 7); in main() local
101 std::basic_regex re(L"ABCDEDEF", 8, std::regex_constants::awk); in main() local
110 std::basic_regex re(source); in main() local
124 std::basic_regex re({'A', 'B', 'F', 'E', 'D'}); in main() local
[all …]
Ddeduct.fail.cpp34 …std::basic_regex re(23, 34); // expected-error {{no viable constructor or deduction guide for de… in main() local
40 …std::basic_regex re(23.0, 34.0, std::regex_constants::basic); // expected-error {{no viable cons… in main() local
Dbad_backref.pass.cpp26 std::regex re(pat); in error_badbackref_thrown() local
43 std::regex re(pat1, pat1 + 7); // extra chars after the end. in main() local
/external/boringssl/src/crypto/perlasm/
Dx86_64-xlate.pl104 sub re { subroutine
185 sub re { subroutine
227 sub re { subroutine
331 sub re { subroutine
373 sub re { subroutine
440 sub re { subroutine
633 sub re { subroutine
713 sub re { subroutine
/external/libcxx/test/std/re/re.alg/re.alg.match/
Dlookahead_capture.pass.cpp31 std::regex re("^(?=(.))a$"); in main() local
43 std::regex re("^(a)(?=(.))(b)$"); in main() local
57 std::regex re("^(.)(?=(.)(?=.(.)))(...)$"); in main() local
72 std::regex re("^(a)(?!([^b]))(.c)$"); in main() local
86 std::regex re("^(?!((b)))(?=(.))(?!(abc)).b$"); in main() local
Dparse_curly_brackets.pass.cpp29 std::string re("\\{a\\}"); in test1() local
39 std::string re("\\{a\\}"); in test2() local
49 std::string re("\\{a\\}"); in test3() local
59 std::string re("\\{a\\}"); in test4() local
/external/libcxx/test/std/re/re.const/re.matchflag/
Dmatch_not_eol.pass.cpp26 std::regex re("foo$"); in main() local
33 std::regex re("foo"); in main() local
40 std::regex re("foo$"); in main() local
47 std::regex re("foo"); in main() local
Dmatch_not_bol.pass.cpp26 std::regex re("^foo"); in main() local
33 std::regex re("foo"); in main() local
40 std::regex re("^foo"); in main() local
47 std::regex re("foo"); in main() local
/external/adhd/cras/src/server/
Drate_estimator.c35 void rate_estimator_destroy(struct rate_estimator *re) in rate_estimator_destroy()
45 struct rate_estimator *re; in rate_estimator_create() local
58 void rate_estimator_add_frames(struct rate_estimator *re, int fr) in rate_estimator_add_frames()
63 double rate_estimator_get_rate(struct rate_estimator *re) in rate_estimator_get_rate()
68 void rate_estimator_reset_rate(struct rate_estimator *re, unsigned int rate) in rate_estimator_reset_rate()
79 int rate_estimator_check(struct rate_estimator *re, int level, in rate_estimator_check()
/external/tensorflow/tensorflow/core/profiler/convert/
Dop_stats_to_overview_page.cc61 void ComputeHostTips(OverviewPageRecommendation* re) { in ComputeHostTips()
71 OverviewPageRecommendation* re) { in ComputeDeviceTips()
83 void ComputeFaqTips(OverviewPageRecommendation* re) { in ComputeFaqTips()
87 void ComputeDocumentationTips(OverviewPageRecommendation* re) { in ComputeDocumentationTips()
98 OverviewPageRecommendation* re) { in SetCommonRecommendation()
109 OverviewPageRecommendation re; in ComputeGenericRecommendation() local
167 OverviewPageRunEnvironment re; in ComputeRunEnvironment() local
/external/adhd/cras/src/tests/
Drate_estimator_unittest.cc14 struct rate_estimator* re; in TEST() local
40 struct rate_estimator* re; in TEST() local
69 struct rate_estimator* re; in TEST() local
97 struct rate_estimator* re; in TEST() local
126 struct rate_estimator* re; in TEST() local
153 struct rate_estimator* re; in TEST() local
/external/libcxx/test/std/re/re.alg/re.alg.search/
Dbackup.pass.cpp31 std::regex re("\\ba"); in main() local
50 std::regex re("\\ba"); in main() local
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
DRouteExceptionTest.java28 RouteException re = new RouteException(firstException); in getConnectionIOException_single() local
36 RouteException re = new RouteException(firstException); in getConnectionIOException_multiple() local
/external/v8/src/regexp/
Dregexp.cc103 Handle<JSRegExp> re, in ThrowRegExpException()
117 void RegExp::ThrowRegExpException(Isolate* isolate, Handle<JSRegExp> re, in ThrowRegExpException()
152 MaybeHandle<Object> RegExp::Compile(Isolate* isolate, Handle<JSRegExp> re, in Compile()
245 bool RegExp::EnsureFullyCompiled(Isolate* isolate, Handle<JSRegExp> re, in EnsureFullyCompiled()
297 void RegExpImpl::AtomCompile(Isolate* isolate, Handle<JSRegExp> re, in AtomCompile()
361 Handle<Object> RegExpImpl::AtomExec(Isolate* isolate, Handle<JSRegExp> re, in AtomExec()
388 bool RegExpImpl::EnsureCompiledIrregexp(Isolate* isolate, Handle<JSRegExp> re, in EnsureCompiledIrregexp()
420 bool RegExpCodeIsValidForPreCompilation(Handle<JSRegExp> re, bool is_one_byte) { in RegExpCodeIsValidForPreCompilation()
449 bool RegExpImpl::CompileIrregexp(Isolate* isolate, Handle<JSRegExp> re, in CompileIrregexp()
526 int RegExpImpl::IrregexpMaxRegisterCount(FixedArray re) { in IrregexpMaxRegisterCount()
[all …]
/external/pcre/dist2/src/
Dpcre2_pattern_info.c67 const pcre2_real_code *re = (pcre2_real_code *)code; in pcre2_pattern_info() local
271 pcre2_real_code *re = (pcre2_real_code *)code; in pcre2_callout_enumerate() local
Dpcre2_study.c101 find_minlength(const pcre2_real_code *re, PCRE2_SPTR code, in find_minlength()
759 set_table_bit(pcre2_real_code *re, PCRE2_SPTR p, BOOL caseless, BOOL utf) in set_table_bit()
837 set_type_bits(pcre2_real_code *re, int cbit_type, unsigned int table_limit) in set_type_bits()
878 set_nottype_bits(pcre2_real_code *re, int cbit_type, unsigned int table_limit) in set_nottype_bits()
918 set_start_bits(pcre2_real_code *re, PCRE2_SPTR code, BOOL utf) in set_start_bits()
/external/antlr/runtime/Python/tests/
Dt036multipleReturnValues.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt035ruleLabelPropertyRef.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt043synpred.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt037rulePropertyRef.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt039labels.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
/external/antlr/runtime/Python3/tests/
Dt041parameters.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt036multipleReturnValues.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt043synpred.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument
Dt039labels.py13 def recover(self, input, re): argument
22 def recover(self, input, re): argument

1234567891011