Searched defs:not (Results 1 - 25 of 60) sorted by path

123

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/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/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/chromium_org/chrome/third_party/mock4js/
H A Dmock4js.js47 object.not = function(valueNotExpected) {
147 throw new Mock4JSException("expected method was not invoked the expected number of times");
153 return "not expected";
243 return "not("+this._matcherToNotMatch.describe()+")";
453 throw new Error("cannot add a method action that does not have an invoke() method");
488 throw new Error("cannot add a method action that does not have an invoke() method");
501 throw new Mock4JSException("Unable to create Mock: must create Mock using a class not prototype, eg. 'new Mock(TypeToMock)' or using the convenience method 'mock(TypeToMock)'");
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1306 BigInteger.prototype.not = bnNot;
1327 // BigInteger interfaces not implemented in jsbn:
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js1306 BigInteger.prototype.not = bnNot;
1327 // BigInteger interfaces not implemented in jsbn:
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js1306 BigInteger.prototype.not = bnNot;
1327 // BigInteger interfaces not implemented in jsbn:
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DExprNodes.py72 (Builtin.unicode_type, Builtin.str_type) : "Cannot convert Unicode string to 'str' implicitly. This is not portable and requires explicit encoding.",
76 (Builtin.bytes_type, Builtin.str_type) : "Cannot convert 'bytes' object to str implicitly. This is not portable to Py3.",
77 (Builtin.bytes_type, Builtin.basestring_type) : "Cannot convert 'bytes' object to basestring implicitly. This is not portable to Py3.",
79 (Builtin.basestring_type, Builtin.bytes_type) : "Cannot convert 'basestring' object to bytes implicitly. This is not portable.",
80 (Builtin.str_type, Builtin.unicode_type) : "str objects do not support coercion to unicode, use a unicode string literal instead (u'')",
81 (Builtin.str_type, Builtin.bytes_type) : "Cannot convert 'str' to 'bytes' implicitly. This is not portable.",
82 (Builtin.str_type, PyrexTypes.c_char_ptr_type) : "'str' objects do not support coercion to C types (use 'bytes'?).",
83 (Builtin.str_type, PyrexTypes.c_uchar_ptr_type) : "'str' objects do not support coercion to C types (use 'bytes'?).",
84 (Builtin.str_type, PyrexTypes.c_py_unicode_ptr_type) : "'str' objects do not support coercion to C types (use 'unicode'?).",
100 return "'%s' objects do not suppor
2182 Future.absolute_import not in env.global_scope().context.future_directives): namespace
[all...]
H A DModuleNode.py74 if x not in L1:
91 if not Options.docstrings:
95 if not self.doc is None:
364 if not self.scope.included_files:
372 if not target_file_dir.startswith(target_dir):
373 # any other directories may not be writable => avoid trying
376 if not source_file:
378 if target_file_dir != target_dir and not os.path.exists(target_file_dir):
408 if env not in modules_seen:
426 if not base_typ
655 if Options.pre_import is not None: namespace
2356 if Options.pre_import is not None: namespace
[all...]
H A DParsing.py168 #not_test: 'not' not_test | comparison
171 if s.sy == 'not':
179 #comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
222 if s.sy == 'not':
228 if s.sy == 'not':
242 'in', 'is', 'not'
288 elif not s.in_python_file:
308 if (not is_memslice and not is_templat
1323 s.error("Relative cimport is not supported yet") namespace
1331 s.error("Relative cimport is not supported yet") namespace
[all...]
/external/chromium_org/third_party/cython/src/pyximport/
H A Dpyximport.py95 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 it
517 if pyimport and not has_py_importer: namespace
524 if pyximport and not has_pyx_importer: namespace
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libvpx/source/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c175 unsigned not:1; member in struct:__anon13720
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/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c5 ** unit. This allows many compilers to do optimizations that would not be
12 ** the programming interface to the SQLite library. (If you do not have
35 ** May you do good and not evil.
59 ** without this option, LFS is enable. But LFS does not exist in the kernel
89 ** May you do good and not evil.
122 ** not have more than a dozen or so columns in any table. And if
134 ** turn the limit off. That is no longer true. It is not possible
147 ** A value of 0 used to mean that the limit was not enforced.
226 ** compiled with the default page-size limit will not be able to rollback
284 ** A value of 1 means that a trigger program will not b
102682 int not; /* True if the NOT keyword is present */ member in struct:LikeOp
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbitvect.c21 #define not ! macro
356 while ((sample >>= 1) and (not lsb))
362 if (sample) return(ErrCode_Powr); /* # of bits is not a power of 2! */
425 /* WARNING: Do not "free()" constant character strings, i.e., */
722 if (not (mask >>= 1))
727 if (not (bit <<= 1))
881 if (not (lomask <<= 1))
886 if (not (himask >>= 1))
937 while (not (mask AND LSB))
960 while (not (valu
[all...]
/external/chromium_org/v8/benchmarks/
H A Dcrypto.js1314 BigInteger.prototype.not = bnNot;
1335 // BigInteger interfaces not implemented in jsbn:
/external/chromium_org/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/clang/lib/Headers/
H A Diso646.h35 #define not ! macro
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp64 #define not macro
149 not
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jar ... public static int not (int) int first public static long not (long) long first public static float not (float) float first ...

Completed in 5520 milliseconds

123