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

123

/external/clang/lib/Headers/
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/toybox/toys/pending/
H A Dtest.c33 -ne not equal -ge first >= second -le first <= second
36 ! EXPR not (swap true/false) EXPR -a EXPR and (are both true)
44 int id, not; local
51 not = 1;
112 toys.exitval ^= not;
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DIsValidUtf8Test.java46 * bytes and will return false for any sequence that will not round trip.
139 private void assertValidUtf8(int[] bytes, boolean not) { argument
141 assertTrue(not ^ Utf8.isValidUtf8(realBytes));
142 assertTrue(not ^ Utf8.isValidUtf8(realBytes, 0, bytes.length));
145 assertTrue(not ^ lit.isValidUtf8());
146 assertTrue(not ^ sub.isValidUtf8());
155 assertTrue(not ^ rope.isValidUtf8());
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DXPaths.java5 * you may not use this file except in compliance with the License.
26 * 1.0</a>. Newer XPath features may not be supported, for example, the
77 public static String not(Attribute attribute) { method in class:XPaths
78 return "[not(@" + attribute.getName() + ")]";
113 * Produce an XPath literal equal to the value if possible; if not, produce an
H A DPredicates.java5 * you may not use this file except in compliance with the License.
52 public static <T> Predicate<T> not(final Predicate<T> predicate) { method in class:Predicates
61 return "not(" + predicate + ")";
179 return String.format("{not %s}", attribute);
H A DBy.java5 * you may not use this file except in compliance with the License.
44 * Matches a UiElement whose {@code attribute} is {@code false} or is not set.
46 public static MatchFinder not(Attribute attribute) { method in class:By
58 * not belonging to the AUT.
110 * Matches by XPath. When applied on an non-root element, it will not evaluate
157 * match is tried, which usually is not what callers expect. In this case,
257 /** Matches a UiElement that does not match the provided {@code finder}. */
258 public static MatchFinder not(MatchFinder finder) { method in class:By
260 return new MatchFinder(Predicates.not(finder.predicate));
/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/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.
81 * being tested is not null.
92 public static <T> Predicate<T> not(Predicate<T> predicate) { method in class:Predicates
194 * documented at {@link Predicate#apply}), the returned predicate may not be
207 * does not allow null inputs.
219 * being tested is a member of the given collection. It does not defensively
319 /** @see Predicates#not(Predicate) */
341 return "Predicates.not(" + predicate.toString() + ")";
/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.
78 * being tested is not null.
89 public static <T> Predicate<T> not(Predicate<T> predicate) { method in class:Predicates
183 * being tested is a member of the given collection. It does not defensively
256 /** @see Predicates#not(Predicate) */
278 return "Predicates.not(" + predicate.toString() + ")";
/external/hamcrest/library/src/org/hamcrest/
H A DMatchers.java40 public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher) { method in class:Matchers
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:Matchers
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/libpcap/
H A Dgrammar.y263 %type <blk> and or paren not null prog
362 bpf_error("'ip6addr/prefixlen' not supported "
371 bpf_error("'ip6addr' not supported "
393 | not id { gen_not($2.b); $$ = $2; }
395 not: '!' { $$ = $<blk>0; } label
408 | not term { gen_not($2.b); $$ = $2; }
/external/libvpx/libvpx/build/make/
H A DMakefile29 # Note: md5sum is not installed on OS X, but openssl is. Openssl may not be
205 # Older binutils strip global symbols not needed for relocation processing
245 not=$(subst yes,no,$(1)) macro
284 # archives when they are listed as a dependency in files not responsible
293 # archives when they are listed as a dependency in files not responsible
307 # archives when they are listed as a dependency in files not responsible
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c175 unsigned not:1; member in struct:__anon11969
235 if(table[func].not)
244 /* XXX: It is not clear if we should use the ordered or unordered operators */
418 * on available registers, so it is not a big deal -- hopefully LLVM does
/external/pcre/dist/
H A Dpcre_printint.c46 (PCRE_DEBUG defined in pcre_internal.h). It is not included in production
68 appropriately for an application, not for building PCRE. */
105 /* This table of operator lengths is not actually used by the working code,
273 const char *not = (*code == OP_PROP)? "" : "not "; local
275 fprintf(f, "%s%sclist %d%s", before, not, code[2], after);
278 fprintf (f, "%s%sclist", before, not);
296 written that do not depend on the value of LINK_SIZE. */
353 by opcode, are not the correct length. It seems to be the only way to do
354 such a check at compile time, as the sizeof() operator does not wor
712 BOOL not = FALSE; local
[all...]
/external/v8/test/webkit/fast/js/kde/
H A Dmd5-1.js143 function not(a) { function
178 return or(and(x,y),and(not(x),z));
182 return or(and(x,z),and(y,not(z)));
190 return xor(y ,or(x , not(z)));
/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/toybox/toys/posix/
H A Dfind.c27 -user UNAME belongs to user UNAME -nouser user not in /etc/passwd
28 -group GROUP belongs to group GROUP -nogroup group not in /etc/group
40 !, -a, -o, ( ) not, and, or, group expressions
126 else if (!isdigit(*str)) error_exit("%s not [+-]N", str);
183 int pcount = 0, print = 0, not = 0, active = !!new, test = active, recurse; local
224 // not: a pending ! applies to this test (only set if performing tests)
237 // Don't invert if we're not making a decision
238 if (check) not = !not;
240 // Save old "not" an
[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.cpp66 #define not macro
151 not

Completed in 1252 milliseconds

123