Searched refs:negated (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10/pcre-7/pcre/
H A Dpcre_xclass.c70 BOOL negated = (*data & XCL_NOT) != 0; local
79 return !negated; /* char found */
94 if (c == x) return !negated;
100 if (c >= x && c <= y) return !negated;
111 if (t == XCL_PROP) return !negated;
116 (t == XCL_PROP)) return !negated;
120 if ((data[1] == _pcre_ucp_gentype[prop->chartype]) == (t == XCL_PROP)) return !negated;
124 if ((data[1] == prop->chartype) == (t == XCL_PROP)) return !negated;
128 if ((data[1] == prop->script) == (t == XCL_PROP)) return !negated;
143 return negated; /* cha
[all...]
H A Dpcre_compile.c580 BOOL braced, negated; local
637 negated = TRUE;
640 else negated = FALSE;
664 if (negated)
1594 map. This includes negated single high-valued characters. The length in
1706 map. This includes negated single high-valued characters. The length in
1888 cannot be represented just by a bit map. This includes negated single
2947 where there is only one such character. For negated classes, we build the
2954 whether the bitmap is present, and whether this is a negated class or not.
3377 BOOL negated; local
5676 BOOL negated; local
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-sh/
H A Datf-check.cpp73 bool negated; member in struct:__anon6878::status_check
79 negated(p_negated),
96 bool negated; member in struct:__anon6878::output_check
102 negated(p_negated),
231 bool negated = (arg.compare(0, 4, "not-") == 0); local
233 const std::string action = negated ? action_str.substr(4) : action_str;
242 if (negated)
244 negated = false;
253 if (negated)
260 if (negated)
281 const bool negated = (arg.compare(0, 4, "not-") == 0); local
[all...]
/macosx-10.10/sudo-73/src/
H A Dmatch.c125 matched = !m->negated;
129 matched = !m->negated;
133 matched = !m->negated;
139 matched = m->negated ? !rval : rval;
145 matched = !m->negated;
187 user_matched = !m->negated;
191 user_matched = !m->negated;
195 user_matched = !m->negated;
201 user_matched = m->negated ? !rval : rval;
207 user_matched = !m->negated;
[all...]
H A Dparse.c309 print_member(lbuf, m->name, m->type, m->negated,
342 print_member(lbuf, m->name, m->type, m->negated,
355 print_member(lbuf, m->name, m->type, m->negated,
395 print_member(lbuf, m->name, m->type, m->negated,
409 print_member(lbuf, m->name, m->type, m->negated,
566 print_member(lbuf, m->name, m->type, m->negated, atype);
619 if (match != NULL && !match->negated) {
632 _print_member(lbuf, name, type, negated, alias_type)
635 int type, negated, alias_type;
643 lbuf_append(lbuf, "%sALL", negated
[all...]
H A Dgram.y282 $$->negated = FALSE;
286 $$->negated = TRUE;
359 if (cs->cmnd->type == ALL && !cs->cmnd->negated &&
368 $$->negated = FALSE;
372 $$->negated = TRUE;
558 $$->negated = FALSE;
562 $$->negated = TRUE;
592 $$->negated = FALSE;
596 $$->negated = TRUE;
H A Dparse.h123 short negated; /* negated via '!'? */ member in struct:member
H A Dgram.c1170 yyval.member->negated = FALSE;
1177 yyval.member->negated = TRUE;
1264 if (cs->cmnd->type == ALL && !cs->cmnd->negated &&
1274 yyval.member->negated = FALSE;
1281 yyval.member->negated = TRUE;
1520 yyval.member->negated = FALSE;
1527 yyval.member->negated = TRUE;
1571 yyval.member->negated = FALSE;
1578 yyval.member->negated = TRUE;
H A Dsudoreplay.c159 char negated; member in struct:search_node
693 newsn->negated = not;
783 if (sn->negated)
H A Dtestsudoers.c389 if (m->negated)
/macosx-10.10/OpenSSH-189/openssh/
H A Dauth-rhosts.c85 int negated; local
125 negated = 0;
127 /* Process negated host names, or positive netgroups. */
129 negated = 1;
135 negated = 1;
165 /* If the entry was negated, deny access. */
166 if (negated) {
H A Dmatch.c123 int negated; local
129 /* Check if the subpattern is negated. */
131 negated = 1;
134 negated = 0;
158 if (negated)
H A Dreadconf.c398 int negated, opcode, *intptr, value, value2, scale; local
864 negated = *arg == '!';
865 if (negated)
868 if (negated) {
870 "block because of negated match "
/macosx-10.10/kext_tools-384.1.4/
H A DQEQuery.h43 * - Negated: whether the evaluated result must be negated (this is handled
146 * Your callback does not need to handle whether the query element is negated;
270 Boolean negated);
282 Boolean QEQueryStartGroup(QEQueryRef query, Boolean negated);
H A DQEQuery.c104 Boolean negated);
110 Boolean _QEQueryPushGroup(QEQueryRef query, Boolean negated, Boolean andFlag);
460 /* Flip the result if the element is negated.
505 Boolean negated = false; local
519 negated = true;
536 if (negated) {
547 if (negated) {
558 if (!_QEQueryStartGroup(query, false /* 'and' group */, negated)) {
575 element = QEQueryCreateElement(query, predicate, NULL, negated);
610 } else if (negated) {
625 QEQueryCreateElement( QEQueryRef query, CFStringRef predicate, CFArrayRef arguments, Boolean negated) argument
759 QEQueryStartGroup( QEQueryRef query, Boolean negated) argument
770 _QEQueryStartGroup( QEQueryRef query, Boolean andFlag, Boolean negated) argument
1218 _QEQueryPushGroup( QEQueryRef query, Boolean negated, Boolean andFlag) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dregexcmp.h116 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
H A Dplurrule.cpp519 curAndConstraint->negated=TRUE;
523 curAndConstraint->negated=TRUE;
754 negated = FALSE;
772 this->negated=other.negated;
823 if (negated) {
969 if (andRule->negated) {
984 if (andRule->negated) {
996 if (andRule->negated) {
H A Dplurrule_impl.h225 UBool negated; // TRUE for negated rules. member in class:AndConstraint
H A Dregexcmp.cpp684 // Compile a (?<! negated look-behind open paren.
3942 UBool negated = (fC.fChar == chP);
3962 uset = createSetForProperty(propertyName, negated);
4013 UBool negated = FALSE;
4015 // Check for and consume the '^' in a negated POSIX property, e.g. [:^Letter:]
4018 negated = TRUE;
4041 uset = createSetForProperty(propName, negated);
4076 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) {
4088 if (negated) {
4119 if (negated) {
[all...]
/macosx-10.10/Security-57031.1.35/Security/utilities/src/
H A Ddebugging.c94 bool negated = CFSetContainsValue(setToCheck, kStringNegate);
97 isActive = negated ^ inSet;
/macosx-10.10/Security-57031.1.35/Security/utilities/utilities/
H A Ddebugging.c94 bool negated = CFSetContainsValue(setToCheck, kStringNegate);
97 isActive = negated ^ inSet;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dgen_peg_me.tcl764 proc ::page::gen::peg::me::SynthLookahead {t n negated} {
798 if {$negated} {
H A Dcompiler_peg_mecpu.tcl732 proc ::page::compiler::peg::mecpu::SynthLookahead {n negated} {
752 gas::begin $g $n okfail [expr {$negated ? "!" : "&"}]
759 if {$negated} { Cmd iok_negate ; /Fail } else /Ok ; Exit
763 if {$negated} { Cmd iok_negate ; /Ok } else /Fail ; Exit
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DFilter.pm195 it otherwise. The statement can be negated by saying
/macosx-10.10/emacs-93/emacs/lisp/emulation/
H A Dcua-rect.el178 (defun cua--rectangle-restriction (&optional val bounded negated)
184 (list val bounded negated)))

Completed in 303 milliseconds

12