Home
last modified time | relevance | path

Searched refs:greedy (Results 1 – 25 of 67) sorted by relevance

123

/third_party/rust/crates/regex/src/
Dcompile.rs426 greedy: false, in c_dotstar()
433 greedy: false, in c_dotstar()
592 ZeroOrOne => self.c_repeat_zero_or_one(&rep.hir, rep.greedy), in c_repeat()
593 ZeroOrMore => self.c_repeat_zero_or_more(&rep.hir, rep.greedy), in c_repeat()
594 OneOrMore => self.c_repeat_one_or_more(&rep.hir, rep.greedy), in c_repeat()
596 self.c_repeat_range(&rep.hir, rep.greedy, min_max, min_max) in c_repeat()
599 self.c_repeat_range_min_or_more(&rep.hir, rep.greedy, min) in c_repeat()
602 self.c_repeat_range(&rep.hir, rep.greedy, min, max) in c_repeat()
610 greedy: bool, in c_repeat_zero_or_one()
618 let split_hole = if greedy { in c_repeat_zero_or_one()
[all …]
/third_party/iowow/src/re/
Dparse.c125 .greedy = (*context->sp == '?') ? (++context->sp, 0) : 1, in parse_interval()
171 .greedy = 1, in parse_context()
180 .greedy = 1, in parse_context()
202 .greedy = (*context->sp == '?') ? (++context->sp, 0) : 1, \ in parse_context()
Dcompile.c201 if (!node->greedy) { in compile_context()
222 if (!node->greedy) { in compile_context()
279 .greedy = 0, in compile_node_with_program()
Dcregex.h38 int nmin, nmax, greedy; member
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumparse_impl.h57 …void parse(const UnicodeString& input, bool greedy, ParsedNumber& result, UErrorCode& status) cons…
59 void parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result,
Dnumparse_impl.cpp240 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() argument
242 return parse(input, 0, greedy, result, status); in parse()
245 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& … in parse() argument
254 if (greedy) { in parse()
/third_party/node/deps/icu-small/source/i18n/
Dnumparse_impl.h58 …void parse(const UnicodeString& input, bool greedy, ParsedNumber& result, UErrorCode& status) cons…
60 void parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result,
Dnumparse_impl.cpp231 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() argument
233 return parse(input, 0, greedy, result, status); in parse()
236 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& … in parse() argument
245 if (greedy) { in parse()
/third_party/icu/icu4c/source/i18n/
Dnumparse_impl.h58 …void parse(const UnicodeString& input, bool greedy, ParsedNumber& result, UErrorCode& status) cons…
60 void parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result,
Dnumparse_impl.cpp231 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() argument
233 return parse(input, 0, greedy, result, status); in parse()
236 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& … in parse() argument
245 if (greedy) { in parse()
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumparse_impl.h58 …void parse(const UnicodeString& input, bool greedy, ParsedNumber& result, UErrorCode& status) cons…
60 void parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result,
Dnumparse_impl.cpp231 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() argument
233 return parse(input, 0, greedy, result, status); in parse()
236 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& … in parse() argument
245 if (greedy) { in parse()
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c59 if (re_ctx_p->token.greedy) in re_get_group_end_opcode()
67 if (re_ctx_p->token.greedy) in re_get_group_end_opcode()
140 …re_insert_opcode (re_ctx_p, start_offset, re_ctx_p->token.greedy ? RE_OP_GREEDY_ITERATOR : RE_OP_L… in re_insert_atom_iterator()
182 re_ctx_p->token.greedy = false; in re_parse_lazy_char()
186 re_ctx_p->token.greedy = true; in re_parse_lazy_char()
346 re_ctx_p->token.greedy = true; in re_parse_quantifier()
1263 re_ctx_p->token.greedy = true; in re_parse_alternative()
Dre-token.h62 bool greedy; /**< type of iteration */ member
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
DNumberParserImpl.java305 public void parse(String input, boolean greedy, ParsedNumber result) { in parse() argument
306 parse(input, 0, greedy, result); in parse()
322 public void parse(String input, int start, boolean greedy, ParsedNumber result) { in parse() argument
328 if (greedy) { in parse()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DNumberParserImpl.java303 public void parse(String input, boolean greedy, ParsedNumber result) { in parse() argument
304 parse(input, 0, greedy, result); in parse()
320 public void parse(String input, int start, boolean greedy, ParsedNumber result) { in parse() argument
326 if (greedy) { in parse()
/third_party/rust/crates/regex/regex-syntax/src/ast/
Dprint.rs182 ZeroOrOne if ast.greedy => self.wtr.write_str("?"), in fmt_repetition()
184 ZeroOrMore if ast.greedy => self.wtr.write_str("*"), in fmt_repetition()
186 OneOrMore if ast.greedy => self.wtr.write_str("+"), in fmt_repetition()
190 if !ast.greedy { in fmt_repetition()
Dparse.rs1048 let mut greedy = true; in parse_uncounted_repetition() localVariable
1050 greedy = false; in parse_uncounted_repetition()
1059 greedy, in parse_uncounted_repetition()
1143 let mut greedy = true; in parse_counted_repetition() localVariable
1145 greedy = false; in parse_counted_repetition()
1161 greedy, in parse_counted_repetition()
2519 greedy: true, in parse_nest_limit()
2545 greedy: true, in parse_nest_limit()
2552 greedy: true, in parse_nest_limit()
2944 greedy: true, in parse_uncounted_repetition()
[all …]
/third_party/rust/crates/regex/regex-syntax/src/hir/
Dtranslate.rs803 let greedy = in hir_repetition() localVariable
804 if self.flags().swap_greed() { !rep.greedy } else { rep.greedy }; in hir_repetition()
805 Hir::repetition(hir::Repetition { kind, greedy, hir: Box::new(expr) }) in hir_repetition()
1234 fn hir_quest(greedy: bool, expr: Hir) -> Hir { in hir_quest()
1237 greedy, in hir_quest()
1242 fn hir_star(greedy: bool, expr: Hir) -> Hir { in hir_star()
1245 greedy, in hir_star()
1250 fn hir_plus(greedy: bool, expr: Hir) -> Hir { in hir_plus()
1253 greedy, in hir_plus()
1258 fn hir_range(greedy: bool, range: hir::RepetitionRange, expr: Hir) -> Hir { in hir_range()
[all …]
Dprint.rs195 if !x.greedy { in visit_post()
/third_party/gstreamer/gstplugins_good/gst/deinterlace/
Dmeson.build5 'tvtime/greedy.c',
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/
Dmod.rs621 &x.hir, min, max, x.greedy, lits, prefixes, in prefixes()
697 &x.hir, min, max, x.greedy, lits, suffixes, in suffixes()
743 greedy: true, in repeat_zero_or_one_literals()
783 greedy: bool, in repeat_range_literals()
794 greedy, in repeat_range_literals()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVRegisterInfo.td42 // compressed instruction set. This will influence the greedy register
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DREADME.txt153 WebAssemblyRegStackify is currently a greedy algorithm. This means that, for
/third_party/python/Doc/library/
Dtelnetlib.rst215 If a regular expression ends with a greedy match (such as ``.*``) or if more

123