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

12345

/external/clang/lib/Headers/
H A Diso646.h35 #define not ! macro
/external/e2fsprogs/lib/support/
H A Dparse_qtype.c35 int not = 0; local
39 not = 1;
43 if (not)
48 if (not)
53 if (not)
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIsNot.java27 description.appendText("not ").appendDescriptionOf(matcher);
35 * <pre>assertThat(cheese, is(not(equalTo(smelly))))</pre>
40 public static <T> Matcher<T> not(Matcher<T> matcher) { method in class:IsNot
45 * A shortcut to the frequently used <code>not(equalTo(x))</code>.
47 * <pre>assertThat(cheese, is(not(smelly)))</pre>
49 * <pre>assertThat(cheese, is(not(equalTo(smelly))))</pre>
52 * the value that any examined object should <b>not</b> equal
54 public static <T> Matcher<T> not(T value) { method in class:IsNot
55 return not(equalTo(value));
/external/tensorflow/tensorflow/contrib/keras/
H A D__init__.py5 # you may not use this file except in compliance with the License.
31 from tensorflow.contrib.keras import python # pylint: disable=g-import-not-at-top namespace
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
H A Dserialization.py4 # you may not use this file except in compliance with the License.
55 from tensorflow.python.keras._impl.keras import models # pylint: disable=g-import-not-at-top namespace
/external/tensorflow/tensorflow/python/platform/
H A Dself_check.py4 # you may not use this file except in compliance with the License.
27 raise ImportError("Could not import tensorflow. Do not import tensorflow " namespace
34 """Raises an exception if the environment is not correctly configured.
37 ImportError: If the check detects that the environment is not correctly
43 # message if they are not found.
44 import ctypes # pylint: disable=g-import-not-at-top namespace
50 "Could not find %r. TensorFlow requires that this DLL be "
65 "Could not find %r. TensorFlow requires that this DLL "
68 "'C:\\Windows\\System32'. If it is not presen
[all...]
/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/core/src/test/java/com/google/protobuf/
H A DIsValidUtf8Test.java52 * bytes and will return false for any sequence that will not round trip.
143 private void assertValidUtf8(ByteStringFactory factory, int[] bytes, boolean not) { argument
145 assertTrue(not ^ Utf8.isValidUtf8(realBytes));
146 assertTrue(not ^ Utf8.isValidUtf8(realBytes, 0, bytes.length));
149 assertTrue(not ^ leaf.isValidUtf8());
150 assertTrue(not ^ sub.isValidUtf8());
158 assertTrue(not ^ rope.isValidUtf8());
/external/tensorflow/tensorflow/contrib/cluster_resolver/python/training/
H A Dgce_cluster_resolver.py4 # you may not use this file except in compliance with the License.
27 from googleapiclient import discovery # pylint: disable=g-import-not-at-top namespace
28 from oauth2client.client import GoogleCredentials # pylint: disable=g-import-not-at-top namespace
70 ImportError: If the googleapiclient is not installed.
84 if not _GOOGLE_API_CLIENT_INSTALLED:
113 while request is not None:
125 if instance_request is not None:
H A Dtpu_cluster_resolver.py4 # you may not use this file except in compliance with the License.
30 from googleapiclient import discovery # pylint: disable=g-import-not-at-top namespace
31 from oauth2client.client import GoogleCredentials # pylint: disable=g-import-not-at-top namespace
79 ImportError: If the googleapiclient is not installed.
82 if not project:
85 if not zone:
100 if not _GOOGLE_API_CLIENT_INSTALLED:
124 if not job_tasks:
/external/tensorflow/tensorflow/contrib/learn/python/learn/preprocessing/tests/
H A Dcategorical_test.py5 # you may not use this file except in compliance with the License.
41 import pandas as pd # pylint: disable=g-import-not-at-top namespace
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
H A Dio_utils_test.py4 # you may not use this file except in compliance with the License.
30 import h5py # pylint:disable=g-import-not-at-top namespace
76 # But they do not support negative indices, so don't try print(x_train[-1])
/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
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
H A DUnaryExpr.java38 not, // ! enum constant in enum:UnaryExpr.Operator
/external/mockito/src/main/java/org/mockito/
H A DAdditionalMatchers.java26 * Example of using logical and(), not(), or() matchers:
29 * //anything but not "ejb"
30 * mock.someMethod(not(eq("ejb")));
32 * //not "ejb" and not "michael jackson"
33 * mock.someMethod(and(not(eq("ejb")), not(eq("michael jackson"))));
894 * Object argument that does not match the given argument matcher.
904 public static <T> T not(T first) { method in class:AdditionalMatchers
910 * short argument that does not matc
918 public static short not(short first) { method in class:AdditionalMatchers
932 public static int not(int first) { method in class:AdditionalMatchers
946 public static long not(long first) { method in class:AdditionalMatchers
960 public static float not(float first) { method in class:AdditionalMatchers
974 public static double not(double first) { method in class:AdditionalMatchers
988 public static char not(char first) { method in class:AdditionalMatchers
1002 public static boolean not(boolean first) { method in class:AdditionalMatchers
1016 public static byte not(byte first) { method in class:AdditionalMatchers
[all...]
/external/strace/
H A Dnumber_set.c13 * 3. The name of the author may not be used to endorse or promote products
44 bool not; member in struct:number_set
74 return !(set && (set[idx].nslots || set[idx].not));
81 && number_isset(number, set->vec)) ^ set->not;
89 && number_isset(number, set[idx].vec)) ^ set[idx].not;
115 set[i].not = false;
125 set[i].not = !set[i].not;
/external/tensorflow/tensorflow/contrib/learn/python/learn/learn_io/
H A Ddask_io.py4 # you may not use this file except in compliance with the License.
25 # pylint: disable=g-import-not-at-top
56 from toolz import merge # pylint: disable=g-import-not-at-top namespace
H A Dio_test.py4 # you may not use this file except in compliance with the License.
39 import pandas as pd # pylint: disable=g-import-not-at-top namespace
55 import pandas as pd # pylint: disable=g-import-not-at-top namespace
69 import pandas as pd # pylint: disable=g-import-not-at-top namespace
77 import pandas as pd # pylint: disable=g-import-not-at-top namespace
78 import dask.dataframe as dd # pylint: disable=g-import-not-at-top namespace
107 import pandas as pd # pylint: disable=g-import-not-at-top namespace
108 import dask.dataframe as dd # pylint: disable=g-import-not-at-top namespace
/external/tensorflow/tensorflow/contrib/timeseries/examples/
H A Dknown_anomaly.py4 # you may not use this file except in compliance with the License.
29 import matplotlib # pylint: disable=g-import-not-at-top namespace
31 from matplotlib import pyplot # pylint: disable=g-import-not-at-top namespace
35 # execute in an environment without it (i.e. matplotlib is not a build
142 if not HAS_MATPLOTLIB:
H A Dmultivariate.py4 # you may not use this file except in compliance with the License.
32 import matplotlib # pylint: disable=g-import-not-at-top namespace
34 from matplotlib import pyplot # pylint: disable=g-import-not-at-top namespace
38 # execute in an environment without it (i.e. matplotlib is not a build
106 if not HAS_MATPLOTLIB:
H A Dpredict.py4 # you may not use this file except in compliance with the License.
29 import matplotlib # pylint: disable=g-import-not-at-top namespace
31 from matplotlib import pyplot # pylint: disable=g-import-not-at-top namespace
35 # execute in an environment without it (i.e. matplotlib is not a build
115 if not HAS_MATPLOTLIB:
/external/tensorflow/tensorflow/examples/get_started/regression/
H A Dimports85.py4 # you may not use this file except in compliance with the License.
27 import pandas as pd # pylint: disable=g-import-not-at-top namespace
129 # Items not in the training set are in the test set.
130 # This line must use `~` instead of `not` because `not` only works on python
/external/tensorflow/tensorflow/python/client/
H A Dnotebook.py4 # you may not use this file except in compliance with the License.
40 # pylint: disable=g-import-not-at-top
56 if not IS_KERNEL:
62 from IPython.html.notebookapp import NotebookApp # pylint: disable=g-import-not-at-top namespace
69 from IPython.lib import passwd # pylint: disable=g-import-not-at-top namespace
89 [z for z in sys.argv[1:] if not z.startswith("--flagfile")])
90 from IPython.kernel.zmq.kernelapp import IPKernelApp # pylint: disable=g-import-not-at-top namespace
109 used if notebook config file does not exist.\
/external/tensorflow/tensorflow/python/keras/_impl/keras/preprocessing/
H A Dimage_test.py4 # you may not use this file except in compliance with the License.
30 import PIL # pylint:disable=g-import-not-at-top namespace
57 return # Skip test if PIL is not available.
155 return # Skip test if PIL is not available.
210 return # Skip test if PIL is not available.
/external/tensorflow/tensorflow/tools/api/generator/
H A Dcreate_python_api.py4 # you may not use this file except in compliance with the License.
37 This file is MACHINE GENERATED! Do not edit.
82 if not module or 'tensorflow.' not in module.__name__:
84 # Do not generate __init__.py files for contrib modules for now.
128 if submodule_import not in module_imports[dest_submodule]: namespace
142 ValueError: if an output file is not under api/ directory,
147 if _API_DIR not in output_file:
160 if not os.path.isdir(os.path.dirname(file_path)):
171 if module not i
[all...]

Completed in 800 milliseconds

12345