Searched defs:not (Results 1 - 25 of 37) sorted by relevance

12

/external/clang/lib/Headers/
H A Diso646.h35 #define not ! macro
/external/clang/lib/include/
H A Diso646.h35 #define not ! macro
/external/hamcrest/src/org/hamcrest/core/
H A DIsNot.java27 description.appendText("not ").appendDescriptionOf(matcher);
34 public static <T> Matcher<T> not(Matcher<T> matcher) { method in class:IsNot
39 * This is a shortcut to the frequently used not(equalTo(x)).
41 * eg. assertThat(cheese, is(not(equalTo(smelly))))
42 * vs assertThat(cheese, is(not(smelly)))
45 public static <T> Matcher<T> not(T value) { method in class:IsNot
46 return not(equalTo(value));
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DFilters.java68 * of calling not(in(values)).
72 return not( in( values ) );
78 * of calling not(in(collection)).
82 return not( in( collection ) );
97 * not(equalTo(value)).
101 return not(equalTo(value));
108 public static <T> Filter<T> not( Filter<T> f ) method in class:Filters
/external/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java40 public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher) { method in class:CoreMatchers
41 return org.hamcrest.core.IsNot.not(matcher);
45 * This is a shortcut to the frequently used not(equalTo(x)).
47 * eg. assertThat(cheese, is(not(equalTo(smelly))))
48 * vs assertThat(cheese, is(not(smelly)))
50 public static <T> org.hamcrest.Matcher<T> not(T value) { method in class:CoreMatchers
51 return org.hamcrest.core.IsNot.not(value);
145 * Matches if value is not null.
152 * Matches if value is not null. With type inference.
/external/mockito/src/org/mockito/
H A DAdditionalMatchers.java27 * Example of using logical and(), not(), or() matchers:
30 * //anything but not "ejb"
31 * mock.someMethod(not(eq("ejb")));
33 * //not "ejb" and not "michael jackson"
34 * mock.someMethod(and(not(eq("ejb")), not(eq("michael jackson"))));
839 * Object argument that does not match the given argument matcher.
849 public static <T> T not(T first) { method in class:AdditionalMatchers
854 * short argument that does not matc
862 public static short not(short first) { method in class:AdditionalMatchers
875 public static int not(int first) { method in class:AdditionalMatchers
888 public static long not(long first) { method in class:AdditionalMatchers
901 public static float not(float first) { method in class:AdditionalMatchers
914 public static double not(double first) { method in class:AdditionalMatchers
927 public static char not(char first) { method in class:AdditionalMatchers
940 public static boolean not(boolean first) { method in class:AdditionalMatchers
953 public static byte not(byte first) { method in class:AdditionalMatchers
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSerializerFoo.java14 * 3. The name of the author may not be used to endorse or promote products
206 public void not() { method in class:GrammarSerializerFoo
/external/libpcap/
H A Dgrammar.y159 %type <blk> and or paren not null prog
248 bpf_error("'ip6addr/prefixlen' not supported "
257 bpf_error("'ip6addr' not supported "
279 | not id { gen_not($2.b); $$ = $2; }
281 not: '!' { $$ = $<blk>0; } label
294 | not term { gen_not($2.b); $$ = $2; }
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DSemanticContext.java14 * 3. The name of the author may not be used to endorse or promote products
61 * NFAConfigurations that do not have an actual semantic context.
140 * As of July 2006 I'm not sure these are needed.
267 return false; // not user specified.
272 return "true"; // not used for code gen, just DOT and print outs
294 return false; // not user specified.
299 return "false"; // not used for code gen, just DOT and print outs
393 NOT not = (NOT)obj;
394 if (not.ctx instanceof CommutativePredicate && not
694 public static SemanticContext not(SemanticContext a) { method in class:SemanticContext
[all...]
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java5 * you may not use this file except in compliance with the License.
77 * being tested is not null.
88 public static <T> Predicate<T> not(Predicate<T> predicate) { method in class:Predicates
190 * documented at {@link Predicate#apply}), the returned predicate may not be
203 * does not allow null inputs.
215 * being tested is a member of the given collection. It does not defensively
299 /** @see Predicates#not(Predicate) */
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java5 * you may not use this file except in compliance with the License.
74 * being tested is not null.
85 public static <T> Predicate<T> not(Predicate<T> predicate) { method in class:Predicates
179 * being tested is a member of the given collection. It does not defensively
236 /** @see Predicates#not(Predicate) */
/external/libvpx/libvpx/build/make/
H A DMakefile27 # Note: md5sum is not installed on OS X, but openssl is. Openssl may not be
160 # Older binutils strip global sybols not needed for relocation processing
200 not=$(subst yes,no,$(1)) macro
239 # archives when they are listed as a dependency in files not responsible
248 # archives when they are listed as a dependency in files not responsible
/external/easymock/src/org/easymock/
H A DEasyMock.java5 * you may not use this file except in compliance with the License.
68 * @throws IllegalArgumentException if the name is not a valid Java identifier.
100 * @throws IllegalArgumentException if the name is not a valid Java identifier.
134 * @throws IllegalArgumentException if the name is not a valid Java identifier.
952 * Expects a boolean that does not match the given expectation.
958 public static boolean not(boolean first) { method in class:EasyMock
964 * Expects a byte that does not match the given expectation.
970 public static byte not(byte first) { method in class:EasyMock
976 * Expects a char that does not match the given expectation.
982 public static char not(cha method in class:EasyMock
994 public static double not(double first) { method in class:EasyMock
1006 public static float not(float first) { method in class:EasyMock
1018 public static int not(int first) { method in class:EasyMock
1030 public static long not(long first) { method in class:EasyMock
1042 public static short not(short first) { method in class:EasyMock
1056 public static <T> T not(T first) { method in class:EasyMock
[all...]
/external/iproute2/doc/
H A Dip-cref.tex25 from the \verb|iproute2| package. It is not a tutorial or user's guide.
26 It is a {\em dictionary\/}, not explaining terms,
68 --- enforce the protocol family to use. If the option is not present,
70 line does not give enough information to guess the family, \verb|ip| falls back to the default
100 Do not use this option when reporting bugs or asking for advice.
130 do not allow all of these operations or have some additional commands.
151 but they are not recommended in scripts or when reporting bugs
169 The arguments did not pass verification for self-consistency.
188 if the \verb|ip| utility fails, it does not change anything
201 \item Netlink is not configure
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java5 * you may not use this file except in compliance with the License.
62 * allow code such as: {@code mockObject.doFoo(anyInt());}. If {@link #anyInt()} did not return
63 * {@code int} then the compiler would not accept the preceding code fragment.
65 * Similarly, the complex expectation methods ({@code #and}, {@code #or}, and {@code not}) take
73 * expectation APIs is not made clear by the method signatures of these expectation methods. In
74 * particular, it's not at all clear that {@link #and(byte, byte)} takes as parameters other
75 * expectation methods, and not just any random method that returns a {@literal byte} or even a
87 * mock will not allow for invocations of the mock object to occur other than in the exact order
109 * mock will not allow for invocations of the mock object to occur other than in the exact order
126 * @throws IllegalArgumentException if the name is not
1509 public static boolean not(boolean expectation) { method in class:AndroidMock
1534 public static byte not(byte expectation) { method in class:AndroidMock
1558 public static char not(char expectation) { method in class:AndroidMock
1583 public static double not(double expectation) { method in class:AndroidMock
1608 public static float not(float expectation) { method in class:AndroidMock
1633 public static int not(int expectation) { method in class:AndroidMock
1658 public static long not(long expectation) { method in class:AndroidMock
1683 public static short not(short expectation) { method in class:AndroidMock
1708 public static <T> T not(T expectation) { method in class:AndroidMock
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp56 #define not macro
141 not
/external/strace/
H A Dsyscall.c19 * 3. The name of the author may not be used to endorse or promote products
273 qualify_one(int n, int bitflag, int not, int pers) argument
276 if (not)
284 if (not)
293 if (not)
302 qual_syscall(const char *s, int bitflag, int not) argument
311 qualify_one(i, bitflag, not, -1);
316 qualify_one(i, bitflag, not, 0);
323 qualify_one(i, bitflag, not, 1);
331 qualify_one(i, bitflag, not,
340 qual_signal(const char *s, int bitflag, int not) argument
367 qual_fault(const char *s, int bitflag, int not) argument
373 qual_desc(const char *s, int bitflag, int not) argument
407 int not; local
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm_unittest.py49 from webkitpy.common.config.committers import Committer # FIXME: This should not be needed namespace
50 from webkitpy.common.net.bugzilla import Attachment # FIXME: This should not be needed namespace
134 # code correctly treats patches as binary and does not attempt to
140 # svn does not seem to update after commit as I would expect.
148 # git svn complains if we don't pass --pre-1.5-compatible, not sure why:
177 # Change back to a valid directory so that later calls to os.getcwd() do not fail.
210 # Mock out abspath() to test being not in a checkout at all.
226 # Mock out abspath() to test being not in a checkout at all.
305 # Validate that changed_files does not change with our cwd, see bug 37015.
320 # SVN reports directory changes, Git does not
[all...]
/external/robolectric/lib/main/
H A Dhamcrest-core-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ LICENSE ...
/external/v8/benchmarks/
H A Dcrypto.js1314 BigInteger.prototype.not = bnNot;
1335 // BigInteger interfaces not implemented in jsbn:
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1306 BigInteger.prototype.not = bnNot;
1327 // BigInteger interfaces not implemented in jsbn:
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js1306 BigInteger.prototype.not = bnNot;
1327 // BigInteger interfaces not implemented in jsbn:
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js1306 BigInteger.prototype.not = bnNot;
1327 // BigInteger interfaces not implemented in jsbn:
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_toIR.c24 along with this program; if not, write to the Free Software
58 * some of the FCOM cases could do with testing -- not convinced
61 * FSAVE does not re-initialise the FPU; it should do
63 * FINIT not only initialises the FPU environment, it also zeroes
73 This module uses global variables and so is not MT-safe (if that
137 jump. It's not such a big deal with casLE since the side exit is
159 dis_Grp3 (not, neg)
195 /* Pointer to the guest code area (points to start of BB, not to the
505 bits, which is not a complete register number. You should avoid
590 if this is called with size==8. Should not happe
8596 Bool not = False; local
[all...]

Completed in 2012 milliseconds

12