/third_party/pcre2/pcre2/src/ |
H A D | pcre2_xclass.c | 72 BOOL negated = (*data & XCL_NOT) != 0; in xclass() local 87 if ((*data & XCL_MAP) == 0) return negated; in xclass() 92 return !negated; /* char found */ in xclass() 114 if (c == x) return !negated; in xclass() 130 if (c >= x && c <= y) return !negated; in xclass() 143 if (isprop) return !negated; in xclass() 148 prop->chartype == ucp_Lt) == isprop) return !negated; in xclass() 153 return !negated; in xclass() 157 if ((data[1] == prop->chartype) == isprop) return !negated; in xclass() 161 if ((data[1] == prop->script) == isprop) return !negated; in xclass() [all...] |
H A D | pcre2_auto_possess.c | 193 negated TRUE if it's a negated property (\P or \p{^) 200 BOOL negated) in check_char_prop() 211 prop->chartype == ucp_Lt) == negated; in check_char_prop() 214 return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated; in check_char_prop() 217 return (pdata == prop->chartype) == negated; in check_char_prop() 220 return (pdata == prop->script) == negated; in check_char_prop() 225 return ok == negated; in check_char_prop() 231 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == negated; in check_char_prop() 243 return negated; in check_char_prop() 199 check_char_prop(uint32_t c, unsigned int ptype, unsigned int pdata, BOOL negated) check_char_prop() argument [all...] |
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
H A D | print.rs | 299 if ast.negated { in fmt_class_bracketed_pre() 328 Digit if ast.negated => self.wtr.write_str(r"\D"), in fmt_class_perl() 330 Space if ast.negated => self.wtr.write_str(r"\S"), in fmt_class_perl() 332 Word if ast.negated => self.wtr.write_str(r"\W"), in fmt_class_perl() 340 Alnum if ast.negated => self.wtr.write_str("[:^alnum:]"), in fmt_class_ascii() 342 Alpha if ast.negated => self.wtr.write_str("[:^alpha:]"), in fmt_class_ascii() 344 Ascii if ast.negated => self.wtr.write_str("[:^ascii:]"), in fmt_class_ascii() 346 Blank if ast.negated => self.wtr.write_str("[:^blank:]"), in fmt_class_ascii() 348 Cntrl if ast.negated => self.wtr.write_str("[:^cntrl:]"), in fmt_class_ascii() 350 Digit if ast.negated in fmt_class_ascii() [all...] |
H A D | mod.rs | 735 /// Whether the class is negated or not. e.g., `\d` is not negated but 737 pub negated: bool, 758 /// Whether the class is negated or not. e.g., `[[:alpha:]]` is not negated 760 pub negated: bool, 831 /// Whether this class is negated or not. 835 /// is `negated = true`. However, it also possible to write something like 837 /// `\p{scx=Katakana}` and is therefore not actually negated even though 838 /// `negated 1295 let mut negated = false; flag_state() variables [all...] |
H A D | parse.rs | 1896 let negated = if self.char() != '^' { in parse_set_class_open() 1940 negated, in parse_set_class_open() 1981 let mut negated = false; in maybe_parse_ascii_class() variables 1991 negated = true; in maybe_parse_ascii_class() 2018 negated, in maybe_parse_ascii_class() 2035 let negated = self.char() == 'P'; in parse_unicode_class() 2099 negated, in parse_unicode_class() 2112 let (negated, kind) = match c { in parse_perl_class() 2121 ast::ClassPerl { span, kind, negated } in parse_perl_class() 2464 /// If negated i [all...] |
/third_party/node/deps/v8/src/flags/ |
H A D | flags.cc | 525 // a flag name and flag value (or nullptr if they are missing). negated is set 530 bool* negated) { in SplitArgument() 533 *negated = false; in SplitArgument() 545 *negated = true; in SplitArgument() 599 bool negated; in SetFlagsFromCommandLine() local 600 SplitArgument(arg, buffer, sizeof buffer, &name, &value, &negated); in SetFlagsFromCommandLine() 637 flag->set_bool_variable(!negated, Flag::SetBy::kCommandLine); in SetFlagsFromCommandLine() 640 flag->set_maybe_bool_variable(MaybeBoolFlag::Create(true, !negated), in SetFlagsFromCommandLine() 687 if ((is_bool_type && value != nullptr) || (!is_bool_type && negated) || in SetFlagsFromCommandLine() 528 SplitArgument(const char* arg, char* buffer, int buffer_size, const char** name, const char** value, bool* negated) SplitArgument() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRMCExpr.h | 55 void setNegated(bool negated = true) { Negated = negated; } in setNegated()
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLPrefixExpression.cpp | 32 double negated = -value->as<Literal>().value(); in simplify_negation() local 33 // Don't simplify the expression if the type can't hold the negated value. in simplify_negation() 35 if (type.checkForOutOfRangeLiteral(context, negated, value->fLine)) { in simplify_negation() 38 return Literal::Make(originalExpr.fLine, negated, &type); in simplify_negation()
|
/third_party/node/deps/v8/src/regexp/experimental/ |
H A D | experimental-compiler.cc | 395 ZoneList<CharacterRange>* negated = variable 397 CharacterRange::Negate(ranges, negated, zone_); 398 DCHECK_LE(negated->length(), ranges->length() + 1); 399 ranges = negated;
|
/third_party/icu/icu4c/source/i18n/ |
H A D | plurrule.cpp | 644 curAndConstraint->negated=true; in parse() 648 curAndConstraint->negated=true; in parse() 908 this->negated=other.negated; in AndConstraint() 960 if (negated) { in isFulfilled() 1137 if (andRule->negated) { in dumpRules() 1152 if (andRule->negated) { in dumpRules() 1164 if (andRule->negated) { in dumpRules()
|
H A D | regexcmp.h | 123 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
H A D | regexcmp.cpp | 691 // Compile a (?<! negated look-behind open paren. in doParseActions() 4263 UBool negated = (fC.fChar == chP); 4283 uset = createSetForProperty(propertyName, negated); 4334 UBool negated = false; 4336 // Check for and consume the '^' in a negated POSIX property, e.g. [:^Letter:] 4339 negated = true; 4362 uset = createSetForProperty(propName, negated); 4395 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4468 negated = !negated; [all...] |
H A D | plurrule_impl.h | 357 UBool negated = false; // true for negated rules. member in AndConstraint
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | plurrule.cpp | 648 curAndConstraint->negated=true; in parse() 652 curAndConstraint->negated=true; in parse() 912 this->negated=other.negated; in AndConstraint() 964 if (negated) { in isFulfilled() 1141 if (andRule->negated) { in dumpRules() 1156 if (andRule->negated) { in dumpRules() 1168 if (andRule->negated) { in dumpRules()
|
H A D | regexcmp.h | 123 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
H A D | regexcmp.cpp | 691 // Compile a (?<! negated look-behind open paren. in doParseActions() 4263 UBool negated = (fC.fChar == chP); 4283 uset = createSetForProperty(propertyName, negated); 4334 UBool negated = false; 4336 // Check for and consume the '^' in a negated POSIX property, e.g. [:^Letter:] 4339 negated = true; 4362 uset = createSetForProperty(propName, negated); 4395 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4468 negated = !negated; [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | plurrule.cpp | 634 curAndConstraint->negated=TRUE; in parse() 638 curAndConstraint->negated=TRUE; in parse() 893 this->negated=other.negated; in AndConstraint() 945 if (negated) { in isFulfilled() 1122 if (andRule->negated) { in dumpRules() 1137 if (andRule->negated) { in dumpRules() 1149 if (andRule->negated) { in dumpRules()
|
H A D | regexcmp.h | 127 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
H A D | regexcmp.cpp | 696 // Compile a (?<! negated look-behind open paren. in doParseActions() 4260 UBool negated = (fC.fChar == chP); 4280 uset = createSetForProperty(propertyName, negated); 4331 UBool negated = FALSE; 4333 // Check for and consume the '^' in a negated POSIX property, e.g. [:^Letter:] 4336 negated = TRUE; 4359 uset = createSetForProperty(propName, negated); 4392 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4465 negated = !negated; [all...] |
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
H A D | translate.rs | 52 /// Perhaps surprisingly, when invalid UTF-8 isn't allowed, a negated ASCII 54 /// the parser to return an error. Namely, a negated ASCII word boundary 322 ast.negated, in visit_post() 337 ast.negated, in visit_post() 472 ast.negated, in visit_class_set_item_post() 483 ast.negated, in visit_class_set_item_post() 755 // It is possible for negated ASCII word boundaries to in hir_assertion() 834 ast_class.negated, in hir_unicode_class() 855 self.unicode_fold_and_negate(&ast.span, ast.negated, &mut cls)?; in hir_ascii_unicode_class() 868 self.bytes_fold_and_negate(&ast.span, ast.negated, in hir_ascii_byte_class() [all...] |
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler-tonode.cc | 473 ZoneList<CharacterRange>* negated = in ToNode() local 475 CharacterRange::Negate(ranges, negated, zone); in ToNode() 476 ranges = negated; in ToNode() 1110 // negated '*' (everything) range serves the purpose. in RationalizeConsecutiveAtoms() 1197 ZoneList<CharacterRange>* negated = in RationalizeConsecutiveAtoms() local 1199 CharacterRange::Negate(new_ranges, negated, zone); in RationalizeConsecutiveAtoms() 1200 new_ranges = negated; in RationalizeConsecutiveAtoms()
|
/third_party/jinja2/ |
H A D | parser.py | 947 negated = True 949 negated = False 977 if negated:
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | parser.py | 853 negated = True 855 negated = False 883 if negated:
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | parser.py | 824 negated = True 826 negated = False 847 if negated:
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | parser.py | 853 negated = True 855 negated = False 883 if negated:
|