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

1 2 3

  /external/droiddriver/src/com/google/android/droiddriver/finders/
Predicates.java 5 * 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);
XPaths.java 5 * 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
75 * NOT present
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
By.java 5 * you may not use this file except in compliance with the License.
41 * Matches a UiElement whose {@code attribute} is {@code false} or is not set.
43 public static MatchFinder not(Attribute attribute) { method in class:By
98 * Matches by XPath. When applied on an non-root element, it will not evaluate
145 * match is tried, which usually is not what callers expect. In this case,
245 /** Matches a UiElement that does not match the provided {@code finder}. */
246 public static MatchFinder not(MatchFinder finder) {
248 return new MatchFinder(Predicates.not(finder.predicate));
  /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/mockito/src/org/mockito/
AdditionalMatchers.java 27 * 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 match the given argument matcher
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...]
  /bionic/libc/kernel/tools/
update_all.py 36 if not os.path.isdir(original_dir):
37 panic( "Not a directory: %s\n" % original_dir )
40 if not os.path.isdir(original_dir):
44 # Do not update ion.h ion_test.h until after next release in aosp.
75 if not dst_path:
105 print "NOTE: Due to import into aosp, some files were not processed." namespace
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
175 unsigned not:1; member in struct:__anon18345
235 if(table[func].not)
244 /* XXX: It is not clear if we should use the ordered or unordered operators */
416 /* This often gets translated to PANDN, but sometimes the NOT is
418 * on available registers, so it is not a big deal -- hopefully LLVM does
  /external/hamcrest/library/src/org/hamcrest/
Matchers.java 40 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/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
175 unsigned not:1; member in struct:__anon6683
235 if(table[func].not)
244 /* XXX: It is not clear if we should use the ordered or unordered operators */
416 /* This often gets translated to PANDN, but sometimes the NOT is
418 * on available registers, so it is not a big deal -- hopefully LLVM does
  /external/mockito/src/org/mockito/internal/progress/
ArgumentMatcherStorageImpl.java 12 import org.mockito.internal.matchers.Not;
73 assertStateFor("Not(?)", ONE_SUB_MATCHER);
74 Not not = new Not(popLastArgumentMatchers(ONE_SUB_MATCHER).get(0)); local
75 matcherStack.push(new LocalizedMatcher(not));
  /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/chromium_org/third_party/cython/src/pyximport/
pyximport.py 95 if not extension_mod:
96 if not isinstance(pyxfilename, str):
102 if language_level is not None:
119 assert ext and ext.sources, ("make_ext in %s did not return Extension"
124 assert isinstance(setup_args,dict), ("make_setup_args in %s did not return a dict"
171 "Path does not exist: %s" % pyxfilename)
211 if is_package and not hasattr(mod, '__path__'):
240 if fullname in sys.modules and not pyxargs.reload_support:
269 # .so/.pyd's on PATH should not be remote from .pyx's
284 # this may work, but it returns the file content, not its pat
517 if pyimport and not has_py_importer: namespace
524 if pyximport and not has_pyx_importer: namespace
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
Makefile 29 # 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
283 # Not using a pattern rule here because we don't want to generate empty
284 # archives when they are listed as a dependency in files not responsible
292 # Not using a pattern rule here because we don't want to generate empty
293 # archives when they are listed as a dependency in files not responsible
306 # Not using a pattern rule here because we don't want to generate empty
307 # archives when they are listed as a dependency in files not responsibl
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
md5-1.js 14 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
143 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/
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...]
  /external/guava/guava/src/com/google/common/base/
Predicates.java 5 * 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) */
321 return "Not(" + predicate.toString() + ")";
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 5 * 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) */
258 return "Not(" + predicate.toString() + ")";
  /external/libpcap/
grammar.y 263 %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/
Makefile 27 # Note: md5sum is not installed on OS X, but openssl is. Openssl may not be
186 # Older binutils strip global sybols not needed for relocation processing
226 not=$(subst yes,no,$(1)) macro
264 # Not using a pattern rule here because we don't want to generate empty
265 # archives when they are listed as a dependency in files not responsible
273 # Not using a pattern rule here because we don't want to generate empty
274 # archives when they are listed as a dependency in files not responsible
287 # Not using a pattern rule here because we don't want to generate empty
288 # archives when they are listed as a dependency in files not responsibl
    [all...]
  /external/iproute2/doc/
ip-cref.tex 25 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 configured in the kernel. The message is
    [all...]
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 64 #define not macro
149 not

Completed in 1953 milliseconds

1 2 3