HomeSort by relevance Sort by last modified time
    Searched defs:not (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/hamcrest/src/org/hamcrest/core/
IsNot.java 27 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/clang/lib/Headers/
iso646.h 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35 #define not ! macro
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 40 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/jmonkeyengine/engine/src/networking/com/jme3/network/
Filters.java 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
66 * Creates a filter that returns true for any value NOT in the specified
68 * of calling not(in(values)).
72 return not( in( values ) );
76 * Creates a filter that returns true for any value NOT in the specified
78 * of calling not(in(collection)).
82 return not( in( collection ) );
95 * Creates a filter that returns true for inputs that are NOT .equals()
97 * not(equalTo(value))
108 public static <T> Filter<T> not( Filter<T> f ) method in class:Filters
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
Predicates.java 5 * you may not use this file except in compliance with the License.
42 * will be "short-circuited" as soon as the answer is determined. Does not
63 * will be "short-circuited" as soon as the answer is determined. Does not
76 public static <T> Predicate<T> not(Predicate<? super T> predicate) { method in class:Predicates
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/lib/gcc/mipsel-linux-android/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/darwin-x86/x86/i686-android-linux-4.4.3/lib/gcc/i686-android-linux/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/lib/gcc/mipsel-linux-android/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/gcc/linux-x86/x86/i686-android-linux-4.4.3/lib/gcc/i686-android-linux/4.4.3/include/
iso646.h 21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
37 #define not ! macro
  /prebuilts/sdk/renderscript/clang-include/
iso646.h 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35 #define not ! macro
  /external/guava/guava-tests/test/com/google/common/collect/
InternersTest.java 5 * you may not use this file except in compliance with the License.
35 String not = new String("a"); local
39 assertSame(canonical, pool.intern(not));
52 String not = new String("a"); local
56 assertSame(canonical, pool.intern(not));
69 Integer not = new Integer(5); local
80 assertSame(not, pool.intern(not));
90 String not = new String("a"); local
96 assertSame(canonical, internerFunction.apply(not));
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 14 * 3. The name of the author may not be used to endorse or promote products
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
206 public void not() { method in class:GrammarSerializerFoo
  /external/libpcap/
grammar.y 159 %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; }
  /libcore/luni/src/main/java/java/math/
Logical.java 6 * (the "License"); you may not use this file except in compliance with
24 * <li>not</li>
38 /** @see BigInteger#not() */
39 static BigInteger not(BigInteger val) { method in class:Logical
226 return that.not();
577 return val.not();
580 return that.not();
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 15 along with this library; see the file COPYING.LIB. If not, write to the Free
50 /* Comment out all this code if we are using the GNU C Library, and are not
152 it matches, nonzero if not. */
213 /* A slash does not match a wildcard under FNM_FILE_NAME. */
294 register int not; local
313 not = (*p == '!' || (posixly_correct < 0 && *p == '^'));
314 if (not)
423 if (!not)
453 if (not)
488 #endif /* _LIBC or not __GNU_LIBRARY__. *
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 14 * 3. The name of the author may not be used to endorse or promote products
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
52 * I have scoped the AND, NOT, OR, and Predicate subclasses of
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 out
393 NOT not = (NOT)obj; local
401 temp.add(not(context)); method
694 public static SemanticContext not(SemanticContext a) { method in class:SemanticContext
792 result.add(not(operand)); method
811 result.add(not(operand)); method
    [all...]
  /external/easymock/src/org/easymock/
EasyMock.java 5 * 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(char first) { 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...]

Completed in 1197 milliseconds

1 2 3