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

1234

/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/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/chromium-trace/catapult/third_party/gsutil/gslib/
H A D__init__.py36 import coverage # pylint: disable=g-import-not-at-top namespace
53 # Whether or not this was installed via a package manager like pip, deb, rpm,
58 # Whether or not this was installed via setup.py develop mode. This creates a
69 if (not os.path.isfile(os.path.join(PROGRAM_FILES_DIR, 'VERSION')) and
76 if not os.path.isfile(os.path.join(PROGRAM_FILES_DIR, 'VERSION')):
81 # module to the Python path, since the gsutil script path munging is not
97 contents. If the file is not actually on disk, the file path will be None.
110 if not VERSION:
112 'VERSION file not found. Please reinstall gsutil from scratch')
117 if not CHECKSU
[all...]
/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/chromium-trace/catapult/third_party/gsutil/gslib/tests/
H A Dutil.py5 # you may not use this file except in compliance with the License.
33 if not hasattr(unittest.TestCase, 'assertIsNone'):
35 import unittest2 as unittest # pylint: disable=g-import-not-at-top namespace
53 return boto.config.get('Credentials', 'gs_host', None) is not None
67 # pylint: disable=g-import-not-at-top
71 return argcomplete is not None
90 # Windows, the urlparse function won't work with URL schemes that are not
115 if not (uri.generation or uri.version_id):
147 # The mock storage service comes from the Boto library, but it is not
151 # pylint: disable=g-import-not
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
H A Dmessage_registry.py119 if new_import not in self.__file_descriptor.additional_imports: namespace
127 if not isinstance(new_descriptor, (
136 if full_name not in self.__nascent_types:
137 raise ValueError('Directly adding types is not supported')
326 if not (field.type_name == 'string' or
362 if (full_type_name not in self.__message_registry.keys() and
363 type_name not in self.__message_registry.keys()):
371 if not (type_ref or type_name):
410 if not items:
430 if not name_hin
[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/guice/core/src/com/google/inject/matcher/
H A DMatchers.java5 * you may not use this file except in compliance with the License.
65 public static <T> Matcher<T> not(final Matcher<? super T> p) { method in class:Matchers
90 return "not(" + delegate + ")";
288 * classloader, so classes with the same package name may not have the same package at runtime.
/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.y277 %type <blk> and or paren not null prog
376 bpf_error("'ip6addr/prefixlen' not supported "
385 bpf_error("'ip6addr' not supported "
407 | not id { gen_not($2.b); $$ = $2; }
409 not: '!' { $$ = $<blk>0; } label
422 | not term { gen_not($2.b); $$ = $2; }
/external/libvpx/libvpx/build/make/
H A DMakefile31 # Note: md5sum is not installed on OS X, but openssl is. Openssl may not be
215 # Older binutils strip global symbols not needed for relocation processing
247 not=$(subst yes,no,$(1)) macro
286 # archives when they are listed as a dependency in files not responsible
295 # archives when they are listed as a dependency in files not responsible
309 # archives when they are listed as a dependency in files not responsible
322 # 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:__anon13459
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/chromium-trace/catapult/third_party/gsutil/gslib/commands/
H A Dconfig.py5 # you may not use this file except in compliance with the License.
145 appropriate section (discussed below), and to be careful not to mis-edit
146 any of the setting names (like "gs_access_key_id") and not to remove the
158 the configuration file. If you see a setting you want to change that's not
244 the user to open the browser. This will probably not work as
249 -a is not set.
265 from gcs_oauth2_boto_plugin import oauth2_helper # pylint: disable=g-import-not-at-top namespace
278 # credentials) but be careful not to mis-edit any of the variable names (like
313 # this timeout only applies to httplib, not to httplib2 (which is used for
340 # retrying. However, in general we recommend not settin
[all...]
/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...]

Completed in 868 milliseconds

1234