Home
last modified time | relevance | path

Searched refs:rex (Results 1 – 25 of 50) sorted by relevance

12

/third_party/jsoncpp/devtools/
Dantglob.py69 rex = ['^']
79 rex.append(sep_rex + '(?:.*%s)?' % sep_rex)
81 rex.append('(?:.*%s)?' % sep_rex)
83 rex.append(sep_rex + '.*')
85 rex.append('[^/%s]*' % re.escape(os.path.sep))
87 rex.append(sep_rex)
89 rex.append(re.escape(match.group(6)))
91 rex.append('$')
92 return re.compile(''.join(rex))
119 for rex in filter_rexs:
[all …]
/third_party/typescript/tests/baselines/reference/
DstringLiteralTypesAndTuples01.types14 type RexOrRaptor = "t-rex" | "raptor"
17 let [im, a, dinosaur]: ["I'm", "a", RexOrRaptor] = ['I\'m', 'a', 't-rex'];
21 >['I\'m', 'a', 't-rex'] : ["I'm", "a", "t-rex"]
24 >'t-rex' : "t-rex"
29 >dinosaur : "t-rex"
35 if (dino === "t-rex") {
36 >dino === "t-rex" : boolean
38 >"t-rex" : "t-rex"
DstringLiteralTypesAndTuples01.symbols9 type RexOrRaptor = "t-rex" | "raptor"
12 let [im, a, dinosaur]: ["I'm", "a", RexOrRaptor] = ['I\'m', 'a', 't-rex'];
27 if (dino === "t-rex") {
/third_party/boost/boost/log/expressions/predicates/
Dmatches.hpp55 …ribute_name const& name, RegexT const& rex) : base_type(name, boost::log::aux::match_traits< Regex… in attribute_matches() argument
67 …name const& name, RegexT const& rex, U const& arg) : base_type(name, boost::log::aux::match_traits… in attribute_matches() argument
86 matches(attribute_actor< T, FallbackPolicyT, TagT, ActorT > const& attr, RegexT const& rex) in matches() argument
89 …ActorT< terminal_type > act = {{ terminal_type(attr.get_name(), rex, attr.get_fallback_policy()) }… in matches()
99 matches(attribute_keyword< DescriptorT, ActorT > const&, RegexT const& rex) in matches() argument
102 ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name(), rex) }}; in matches()
112 matches(attribute_name const& name, RegexT const& rex) in matches() argument
115 phoenix::actor< terminal_type > act = {{ terminal_type(name, rex) }}; in matches()
/third_party/boost/boost/xpressive/
Dregex_token_iterator.hpp43 , basic_regex<BidiIter> const &rex in regex_token_iterator_impl()
49 : iter_(begin, cur, end, next_search, rex, flags, not_null) in regex_token_iterator_impl()
160 , basic_regex<BidiIter> const &rex in regex_token_iterator()
164 if(0 != rex.regex_id()) in regex_token_iterator()
166 this->impl_ = new impl_type_(begin, begin, end, begin, rex); in regex_token_iterator()
181 , basic_regex<BidiIter> const &rex in regex_token_iterator()
186 if(0 != rex.regex_id()) in regex_token_iterator()
188 this->impl_ = new impl_type_(begin, begin, end, begin, rex); in regex_token_iterator()
207 , basic_regex<BidiIter> const &rex in regex_token_iterator()
213 if(0 != rex.regex_id()) in regex_token_iterator()
[all …]
Dregex_iterator.hpp43 , basic_regex<BidiIter> const &rex in regex_iterator_impl()
47 : rex_(rex) in regex_iterator_impl()
118 , basic_regex<BidiIter> const &rex in regex_iterator()
123 if(0 != rex.regex_id()) // Empty regexes are guaranteed to match nothing in regex_iterator()
125 this->impl_ = new impl_type_(begin, begin, end, begin, rex, flags); in regex_iterator()
135 , basic_regex<BidiIter> const &rex in regex_iterator()
141 if(0 != rex.regex_id()) // Empty regexes are guaranteed to match nothing in regex_iterator()
143 this->impl_ = new impl_type_(begin, begin, end, begin, rex, flags); in regex_iterator()
/third_party/boost/boost/xpressive/detail/static/
Dvisitor.hpp66 void visit_(reference_wrapper<basic_regex<BidiIter> > const &rex) in visit_()
69 this->self_->track_reference(*detail::core_access<BidiIter>::get_regex_impl(rex.get())); in visit_()
72 void visit_(reference_wrapper<basic_regex<BidiIter> const> const &rex) in visit_()
75 this->self_->track_reference(*detail::core_access<BidiIter>::get_regex_impl(rex.get())); in visit_()
78 void visit_(tracking_ptr<regex_impl<BidiIter> > const &rex) in visit_()
81 this->self_->track_reference(*rex.get()); in visit_()
/third_party/boost/boost/xpressive/detail/core/
Daccess.hpp34 static std::size_t get_hidden_mark_count(basic_regex<BidiIter> const &rex) in get_hidden_mark_count()
36 return proto::value(rex)->hidden_mark_count_; in get_hidden_mark_count()
39 static bool match(basic_regex<BidiIter> const &rex, match_state<BidiIter> &state) in match()
41 return rex.match_(state); in match()
45 get_regex_impl(basic_regex<BidiIter> const &rex) in get_regex_impl()
47 return proto::value(rex).get(); in get_regex_impl()
/third_party/openssl/crypto/perlasm/
Dx86_64-xlate.pl952 sub rex { subroutine
954 my ($dst,$src,$rex)=@_;
956 $rex|=0x04 if($dst>=8);
957 $rex|=0x01 if($src>=8);
958 push @$opcode,($rex|0x40) if ($rex);
967 rex(\@opcode,$src,$dst,0x8);
974 rex(\@opcode,$src,$dst,0x8);
991 rex(\@opcode,$src,$dst);
1009 rex(\@opcode,$dst,$src);
1022 rex(\@opcode,$2,$1);
[all …]
/third_party/pcre2/pcre2/src/sljit/
DsljitNativeX86_64.c378 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, slji… in emit_do_imm32() argument
381 sljit_s32 length = 1 + (rex ? 1 : 0) + sizeof(sljit_s32); in emit_do_imm32()
386 if (rex) in emit_do_imm32()
387 *inst++ = rex; in emit_do_imm32()
401 sljit_u8 rex = 0; in emit_x86_instruction() local
423 rex |= REX_W; in emit_x86_instruction()
425 rex |= REX; in emit_x86_instruction()
452 rex |= REX_B; in emit_x86_instruction()
467 rex |= REX_X; in emit_x86_instruction()
473 rex |= REX_B; in emit_x86_instruction()
[all …]
/third_party/boost/libs/xpressive/test/
Dtest.hpp81 xpr_test_case(std::string section, string_type str, regex_type rex, backrefs_type brs) in xpr_test_case()
84 , rex_(rex) in xpr_test_case()
89 xpr_test_case(std::string section, string_type str, regex_type rex, no_match_t) in xpr_test_case()
92 , rex_(rex) in xpr_test_case()
Dtest_non_char.cpp19 basic_regex<int const *> rex = imbue(nul)(1 >> +((set= 2,3) | 4) >> 5); in test_static() local
22 if(!regex_search(data, data + (sizeof(data)/sizeof(*data)), what, rex)) in test_static()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.h34 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
35 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
36 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
37 #define bFromREX(rex) ((rex) & 0x1) argument
/third_party/boost/libs/xpressive/doc/
Dactions.qbk100 sregex rex = (+_d)[ ref(i) = as<int>(_) ];
125 sregex rex = +( _d [ ++ref(i) ] >> '!' );
126 regex_search(str, rex);
148 sregex rex = +( keep( _d [ ++ref(i) ] ) >> '!' );
149 regex_search(str, rex);
195 sregex rex = (+_d)[push(ref(ints), as<int>(_))];
202 sregex rex = (+_d)[ref(ints)->*push(as<int>(_))];
248 sregex rex = +( _d [ ++ref(i) ] >> '!' );
249 // ERROR! rex refers by reference to a local
252 return rex;
[all …]
Dintroduction.qbk50 sregex rex = sregex::compile( "(\\w+) (\\w+)!" );
53 if( regex_match( hello, what, rex ) )
84 sregex rex = sregex::compile( "(\\w+) (\\w+)!" );
94 sregex rex = (s1= +_w) >> ' ' >> (s2= +_w) >> '!';
/third_party/boost/libs/log/test/run/
Dfilt_attr.cpp352 boost::regex rex("hello"); in BOOST_AUTO_TEST_CASE() local
353 filter f = expr::matches(expr::attr< std::string >(data::attr3()), rex); in BOOST_AUTO_TEST_CASE()
356 rex = ".*world.*"; in BOOST_AUTO_TEST_CASE()
357 f = expr::matches(expr::attr< std::string >(data::attr3()).or_throw(), rex); in BOOST_AUTO_TEST_CASE()
360 rex = ".*"; in BOOST_AUTO_TEST_CASE()
361 f = expr::matches(expr::attr< std::string >(data::attr2()), rex); in BOOST_AUTO_TEST_CASE()
364 f = expr::matches(expr::attr< std::string >(data::attr4()), rex); in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/range/adaptor/
Dtokenized.hpp59 regex_holder( const T& rex, const U& subm, V flag ) : in regex_holder()
60 re(rex), sub(subm), f(flag) in regex_holder()
/third_party/boost/libs/xpressive/example/
Dmain.cpp61 sregex rex = sregex::compile( "(\\w+) (\\w+)!" ); in example1() local
64 if( regex_match( hello, what, rex ) ) in example1()
/third_party/openssl/crypto/aes/asm/
Daesni-mb-x86_64.pl1420 sub rex { subroutine
1423 my $rex=0;
1425 $rex|=0x04 if($dst>=8);
1426 $rex|=0x01 if($src>=8);
1427 push @opcode,$rex|0x40 if($rex);
1435 rex(\@opcode,$4,$3);
1449 rex(\@opcode,$3,$2);
Daesni-sha1-x86_64.pl2078 sub rex { subroutine
2081 my $rex=0;
2083 $rex|=0x04 if($dst>=8);
2084 $rex|=0x01 if($src>=8);
2085 unshift @opcode,$rex|0x40 if($rex);
2091 rex(\@opcode,$3,$2);
2110 rex(\@opcode,$2,$1);
2129 rex(\@opcode,$3,$2);
Daesni-sha256-x86_64.pl1768 sub rex { subroutine
1771 my $rex=0;
1773 $rex|=0x04 if($dst>=8);
1774 $rex|=0x01 if($src>=8);
1775 unshift @opcode,$rex|0x40 if($rex);
1789 rex(\@opcode,$2,$1);
/third_party/gstreamer/gstplugins_bad/ext/opencv/
Dgstfacedetect.cpp650 guint rex = 0, rey = 0, rew, reh; in gst_face_detect_transform_ip() local
681 rex = r.x; in gst_face_detect_transform_ip()
686 Rect (rex, rey, rew, reh), eyes); in gst_face_detect_transform_ip()
708 structure_and_message (eyes, "eyes", rex, rey, filter, s); in gst_face_detect_transform_ip()
760 center.x = cvRound ((rex + sr.x + w)); in gst_face_detect_transform_ip()
/third_party/openssl/crypto/sha/asm/
Dsha1-mb-x86_64.pl1571 sub rex { subroutine
1574 my $rex=0;
1576 $rex|=0x04 if ($dst>=8);
1577 $rex|=0x01 if ($src>=8);
1578 unshift @opcode,$rex|0x40 if ($rex);
1584 rex(\@opcode,$3,$2);
1603 rex(\@opcode,$2,$1);
Dsha256-mb-x86_64.pl1571 sub rex { subroutine
1574 my $rex=0;
1576 $rex|=0x04 if ($dst>=8);
1577 $rex|=0x01 if ($src>=8);
1578 unshift @opcode,$rex|0x40 if ($rex);
1590 rex(\@opcode,$2,$1);
/third_party/node/benchmark/
D_http-benchmarkers.js176 const rex = /(\d+(?:\.\d+)) req\/s/;
177 return rex.exec(output)[1];

12