/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...] |
/kernel/linux/linux-6.6/fs/smb/client/ |
H A D | fs_context.c | 943 if (result.negated) { in smb3_fs_context_parse_param() 951 if (result.negated) in smb3_fs_context_parse_param() 960 if (result.negated) in smb3_fs_context_parse_param() 968 if (result.negated) in smb3_fs_context_parse_param() 976 if (result.negated) in smb3_fs_context_parse_param() 982 if (result.negated) in smb3_fs_context_parse_param() 988 if (result.negated) in smb3_fs_context_parse_param() 994 if (result.negated) in smb3_fs_context_parse_param() 1000 if (result.negated) in smb3_fs_context_parse_param() 1006 if (result.negated) in smb3_fs_context_parse_param() [all...] |
/kernel/linux/linux-5.10/fs/ |
H A D | fs_parser.c | 56 struct fs_parameter *param, bool *negated) in fs_lookup_key() 62 *negated = false; in fs_lookup_key() 77 *negated = true; in fs_lookup_key() 112 p = fs_lookup_key(desc, param, &result->negated); in __fs_parse() 126 result->boolean = !result->negated; in __fs_parse() 54 fs_lookup_key( const struct fs_parameter_spec *desc, struct fs_parameter *param, bool *negated) fs_lookup_key() argument
|
/kernel/linux/linux-6.6/fs/ |
H A D | fs_parser.c | 56 struct fs_parameter *param, bool *negated) in fs_lookup_key() 62 *negated = false; in fs_lookup_key() 77 *negated = true; in fs_lookup_key() 112 p = fs_lookup_key(desc, param, &result->negated); in __fs_parse() 126 result->boolean = !result->negated; in __fs_parse() 54 fs_lookup_key( const struct fs_parameter_spec *desc, struct fs_parameter *param, bool *negated) fs_lookup_key() argument
|
/kernel/linux/linux-5.10/drivers/media/rc/ |
H A D | ir-spi.c | 23 bool negated; member 102 if (idata->negated) { in ir_spi_set_duty_cycle() 138 idata->negated = of_property_read_bool(spi->dev.of_node, in ir_spi_probe()
|
/kernel/linux/linux-6.6/drivers/media/rc/ |
H A D | ir-spi.c | 23 bool negated; member 102 if (idata->negated) { in ir_spi_set_duty_cycle() 138 idata->negated = of_property_read_bool(spi->dev.of_node, in ir_spi_probe()
|
/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
|
/kernel/linux/linux-6.6/fs/ceph/ |
H A D | super.c | 494 if (!result.negated) in ceph_parse_mount_param() 500 if (!result.negated) in ceph_parse_mount_param() 506 if (!result.negated) in ceph_parse_mount_param() 512 if (!result.negated) in ceph_parse_mount_param() 518 if (!result.negated) in ceph_parse_mount_param() 528 if (result.negated) { in ceph_parse_mount_param() 540 if (!result.negated) in ceph_parse_mount_param() 546 if (!result.negated) in ceph_parse_mount_param() 552 if (!result.negated) in ceph_parse_mount_param() 558 if (!result.negated) in ceph_parse_mount_param() [all...] |
/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()
|
/kernel/linux/linux-5.10/fs/ceph/ |
H A D | super.c | 372 if (!result.negated) in ceph_parse_mount_param() 378 if (!result.negated) in ceph_parse_mount_param() 384 if (!result.negated) in ceph_parse_mount_param() 390 if (!result.negated) in ceph_parse_mount_param() 396 if (!result.negated) in ceph_parse_mount_param() 406 if (result.negated) { in ceph_parse_mount_param() 418 if (!result.negated) in ceph_parse_mount_param() 424 if (!result.negated) in ceph_parse_mount_param() 430 if (!result.negated) in ceph_parse_mount_param() 436 if (!result.negated) in ceph_parse_mount_param() [all...] |
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | fs_context.c | 572 if (result.negated) in nfs_fs_context_parse_param() 578 if (result.negated) in nfs_fs_context_parse_param() 584 if (result.negated) in nfs_fs_context_parse_param() 590 if (result.negated) in nfs_fs_context_parse_param() 596 if (result.negated) in nfs_fs_context_parse_param() 602 if (result.negated) { in nfs_fs_context_parse_param() 623 if (result.negated) in nfs_fs_context_parse_param() 629 if (result.negated) in nfs_fs_context_parse_param() 635 if (result.negated) in nfs_fs_context_parse_param() 641 if (result.negated) in nfs_fs_context_parse_param() [all...] |
/kernel/linux/linux-5.10/fs/nfs/ |
H A D | fs_context.c | 476 if (result.negated) in nfs_fs_context_parse_param() 482 if (result.negated) in nfs_fs_context_parse_param() 488 if (result.negated) in nfs_fs_context_parse_param() 494 if (result.negated) in nfs_fs_context_parse_param() 500 if (result.negated) { in nfs_fs_context_parse_param() 522 if (result.negated) in nfs_fs_context_parse_param() 528 if (result.negated) in nfs_fs_context_parse_param() 534 if (result.negated) in nfs_fs_context_parse_param() 540 if (result.negated) in nfs_fs_context_parse_param() 546 if (result.negated) in nfs_fs_context_parse_param() [all...] |
/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;
|
/kernel/linux/linux-6.6/fs/ntfs3/ |
H A D | super.c | 353 opts->sys_immutable = result.negated ? 0 : 1; in ntfs_fs_parse_param() 356 opts->discard = result.negated ? 0 : 1; in ntfs_fs_parse_param() 359 opts->force = result.negated ? 0 : 1; in ntfs_fs_parse_param() 362 opts->sparse = result.negated ? 0 : 1; in ntfs_fs_parse_param() 365 opts->nohidden = result.negated ? 1 : 0; in ntfs_fs_parse_param() 368 opts->hide_dot_files = result.negated ? 0 : 1; in ntfs_fs_parse_param() 371 opts->windows_names = result.negated ? 0 : 1; in ntfs_fs_parse_param() 374 opts->showmeta = result.negated ? 0 : 1; in ntfs_fs_parse_param() 377 if (!result.negated) in ntfs_fs_parse_param() 393 opts->prealloc = result.negated in ntfs_fs_parse_param() [all...] |
/kernel/linux/linux-5.10/net/ceph/ |
H A D | ceph_common.c | 538 if (!result.negated) in ceph_parse_param() 544 if (!result.negated) in ceph_parse_param() 550 if (!result.negated) in ceph_parse_param() 556 if (!result.negated) in ceph_parse_param() 562 if (!result.negated) in ceph_parse_param()
|
/kernel/linux/linux-6.6/net/ceph/ |
H A D | ceph_common.c | 556 if (!result.negated) in ceph_parse_param() 562 if (!result.negated) in ceph_parse_param() 568 if (!result.negated) in ceph_parse_param() 574 if (!result.negated) in ceph_parse_param() 580 if (!result.negated) in ceph_parse_param()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | fs_parser.h | 54 bool negated; /* T if param was "noxxx" */ member
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | fs_parser.h | 54 bool negated; /* T if param was "noxxx" */ member
|
/third_party/icu/icu4c/source/i18n/ |
H A D | regexcmp.h | 123 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | regexcmp.h | 123 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | regexcmp.h | 127 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|