Searched refs:negate (Results 1 - 25 of 50) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/
H A DShCommands.py39 def __init__(self, commands, negate=False, pipe_err=False):
41 self.negate = negate
45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate,
52 return cmp((self.commands, self.negate, self.pipe_err),
53 (other.commands, other.negate, self.pipe_err))
58 if self.negate:
H A DShUtil.py221 negate = False
224 negate = True
230 return Pipeline(commands, negate)
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dfnmatch.c127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dfnmatch.c144 int negate, ok; local
154 if (negate = (*pattern == '!' || *pattern == '^'))
174 return (ok == negate ? NULL : pattern);
H A Dgetarg.c353 int negate = 0; local
371 negate = 0;
383 negate = !negate;
431 *flag = !negate;
436 *flag = negate;
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Ddebugging.c68 static bool negate = false; variable
75 negate = true;
78 negate = false;
83 negate = true;
86 negate = false;
105 negate = false;
236 if (scope && ((scopeSet && negate == CFSetContainsValue(scopeSet, scope)) ||
237 (!scopeSet && !negate)))
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Ddebugging.c68 static bool negate = false; variable
75 negate = true;
78 negate = false;
83 negate = true;
86 negate = false;
105 negate = false;
236 if (scope && ((scopeSet && negate == CFSetContainsValue(scopeSet, scope)) ||
237 (!scopeSet && !negate)))
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Ddebugging.cpp266 Target::Selector::Selector() : useSet(false), negate(false)
275 negate = true;
277 useSet = negate = false;
282 negate = true;
285 negate = false;
293 useSet = negate = false;
306 return !negate;
309 return (enableSet.find(scope) != enableSet.end()) != negate;
311 return negate;
H A Ddebugsupport.h129 bool negate; // negate meaning of enableSet member in class:Security::Debug::Target::Selector
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Ddebugging.cpp266 Target::Selector::Selector() : useSet(false), negate(false)
275 negate = true;
277 useSet = negate = false;
282 negate = true;
285 negate = false;
293 useSet = negate = false;
306 return !negate;
309 return (enableSet.find(scope) != enableSet.end()) != negate;
311 return negate;
H A Ddebugsupport.h129 bool negate; // negate meaning of enableSet member in class:Security::Debug::Target::Selector
/macosx-10.9.5/xnu-2422.115.4/libkern/kxld/
H A Dkxld_symtab.h50 boolean_t negate; member in struct:kxld_symtab_iterator
73 const KXLDSymtab *symtab, KXLDSymPredicateTest test, boolean_t negate)
H A Dkxld_symtab.c271 KXLDSymPredicateTest test, boolean_t negate)
280 iter->negate = negate;
695 if (iter->negate) cmp = !cmp;
270 kxld_symtab_iterator_init(KXLDSymtabIterator *iter, const KXLDSymtab *symtab, KXLDSymPredicateTest test, boolean_t negate) argument
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/strings/
H A Dapr_fnmatch.c82 int negate; local
89 negate = ((**pattern == '!') || (**pattern == '^'));
90 if (negate)
103 return (result ^ negate);
/macosx-10.9.5/apr-30/apr/apr/strings/
H A Dapr_fnmatch.c82 int negate; local
89 negate = ((**pattern == '!') || (**pattern == '^'));
90 if (negate)
103 return (result ^ negate);
/macosx-10.9.5/sudo-72/src/
H A Dfnmatch.c165 int negate; local
172 negate = ((**pattern == '!') || (**pattern == '^'));
173 if (negate)
186 return (result ^ negate);
/macosx-10.9.5/procmail-14/procmail/src/
H A Dmisc.c442 { int negate,scoreany;double weight,xponent,lscore; local
451 negate=scoreany=0;lscore=score;
532 if(negate)
565 i=!!egrepin(chp,lstartchar,ltobesent,!igncase)^negate;
574 case '!':negate^=1;chp2=skpspace(chp);
582 if(negate)
588 else if(!!lexitcode^negate)
602 if((*buf=='<')^negate)
616 negate))
640 if(negate)
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dreqinterp.h57 bool inequality(CFTypeRef candidate, CFStringCompareFlags flags, CFComparisonResult outcome, bool negate) const;
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dreqinterp.h57 bool inequality(CFTypeRef candidate, CFStringCompareFlags flags, CFComparisonResult outcome, bool negate) const;
/macosx-10.9.5/emacs-92/emacs/lisp/eshell/
H A Dem-pred.el320 (let (result negate follow preds mods)
331 negate follow))
337 (setq negate (not negate)))
367 negate follow))))))))
372 (defun eshell-add-pred-func (pred funcs negate follow)
374 (if negate
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dfnmatch.c250 int negate, ok, special; local
264 if ( (negate = (*pattern == '!' || *pattern == '^')) )
470 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/backward/
H A Dfunction.h73 using std::negate;
/macosx-10.9.5/file_cmds-230/pax/
H A Dpat_rep.c570 int negate; local
573 if ((negate = (*pattern == '!')) != 0)
591 return (ok == negate ? NULL : pattern);
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGGraph.h253 bool negateShouldSpeculateInteger(Node* negate) argument
255 ASSERT(negate->op() == ArithNegate);
256 return negate->child1()->shouldSpeculateIntegerForArithmetic() && negate->canSpeculateInteger();
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCheckedInt.h467 static CheckedInt<T> negate(const CheckedInt<T>& val) function in struct:WebCore::detail::NegateImpl
478 static CheckedInt<T> negate(const CheckedInt<T>& val) function in struct:WebCore::detail::NegateImpl
648 return detail::NegateImpl<T>::negate(*this);

Completed in 314 milliseconds

12