Searched defs:and (Results 51 - 75 of 106) sorted by relevance

12345

/external/proguard/src/proguard/evaluation/value/
H A DParticularIntegerValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
196 public IntegerValue and(IntegerValue other) method in class:ParticularIntegerValue
198 return other.and(this);
324 public IntegerValue and(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
139 public LongValue and(LongValue other) method in class:ParticularLongValue
141 return other.and(this);
227 public LongValue and(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificIntegerValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
164 public IntegerValue and(IntegerValue other) method in class:SpecificIntegerValue
166 return other.and(this);
296 public IntegerValue and(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DSpecificLongValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
119 public LongValue and(LongValue other) method in class:SpecificLongValue
121 return other.and(this);
211 public LongValue and(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
166 public IntegerValue and(IntegerValue other) method in class:UnknownIntegerValue
H A DUnknownLongValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
120 public LongValue and(LongValue other) method in class:UnknownLongValue
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DSemanticContext.java6 * Redistribution and use in source and binary forms, with or without
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
48 * we will have to combine p1 and p2 into DFA state as we will be
52 * I have scoped the AND, NOT, OR, and Predicate subclasses of
68 * nongated predicates set to true and then reduced. So p&&(q||r) would
69 * return p&&r if q is nongated but p and r are gated.
272 return "true"; // not used for code gen, just DOT and prin
607 public static SemanticContext and(SemanticContext a, SemanticContext b) { method in class:SemanticContext
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBitSet.java6 * Redistribution and use in source and binary forms, with or without
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
41 * as opposed to oring and anding "in place". Further, a number of
44 * and, because it is final, I cannot subclass to add functionality.
102 // walk set and add each interval
151 public IntSet and(IntSet a) { method in class:BitSet
268 /** Get the first element you find and retur
[all...]
/external/chromium_org/third_party/cython/src/pyximport/
H A Dpyximport.py17 A custom distutils.core.Extension instance and setup() args
35 automatically run Cython on every .pyx and .py module that Python
36 imports, including parts of the standard library and installed
44 Running this module as a top-level script will run a test and then print
85 "Load a pyrex file given a name and filename."
97 # distutils is stupid in Py2 and requires exactly 'str'
119 assert ext and ext.sources, ("make_ext in %s did not return Extension"
211 if is_package and not hasattr(mod, '__path__'):
215 if pyxargs.load_py_module_on_import_failure and pyxfilename.endswith('.py'):
240 if fullname in sys.modules and no
517 if pyimport and not has_py_importer: namespace
524 if pyximport and not has_pyx_importer: namespace
[all...]
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dmd5-1.js4 // Redistribution and use in source and binary forms, with or without
8 // notice, this list of conditions and the following disclaimer.
10 // notice, this list of conditions and the following disclaimer in the
11 // documentation and/or other materials provided with the distribution.
35 * Permission to use, copy, modify, and distribute this software
36 * and its documentation for any purposes and without
91 function and(a,b) { function
178 return or(and(
[all...]
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java13 * See the License for the specific language governing permissions and
95 * order, and evaluation will be "short-circuited" as soon as a false
101 public static <T> Predicate<T> and( method in class:Predicates
109 * order, and evaluation will be "short-circuited" as soon as a false
115 public static <T> Predicate<T> and(Predicate<? super T>... components) { method in class:Predicates
122 * order, and evaluation will be "short-circuited" as soon as a false
125 public static <T> Predicate<T> and(Predicate<? super T> first, method in class:Predicates
134 * order, and evaluation will be "short-circuited" as soon as a
148 * order, and evaluation will be "short-circuited" as soon as a
161 * order, and evaluatio
[all...]
H A DCharMatcher.java13 * See the License for the specific language governing permissions and
34 * Implementations are strongly encouraged to be side-effect-free and immutable.
41 * characters are encoded into a {@code String} using surrogate pairs, and a {@code CharMatcher}
176 * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
278 @Override public CharMatcher and(CharMatcher other) {
354 @Override public CharMatcher and(CharMatcher other) {
389 @Override public CharMatcher and(CharMatcher other) {
422 @Override public CharMatcher and(CharMatcher other) {
423 return other.matches(match) ? super.and(other) : other;
582 * Returns a matcher that matches any character matched by both this matcher and {
584 public CharMatcher and(CharMatcher other) { method in class:CharMatcher
604 @Override public CharMatcher and(CharMatcher other) { method in class:CharMatcher.And
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java13 * See the License for the specific language governing permissions and
92 * order, and evaluation will be "short-circuited" as soon as a false
98 public static <T> Predicate<T> and( method in class:Predicates
106 * order, and evaluation will be "short-circuited" as soon as a false
112 public static <T> Predicate<T> and(Predicate<? super T>... components) { method in class:Predicates
119 * order, and evaluation will be "short-circuited" as soon as a false
122 public static <T> Predicate<T> and(Predicate<? super T> first, method in class:Predicates
131 * order, and evaluation will be "short-circuited" as soon as a
145 * order, and evaluation will be "short-circuited" as soon as a
158 * order, and evaluatio
[all...]
/external/libpcap/
H A Dgrammar.y6 * Redistribution and use in source and binary forms, with or without
8 * retain the above copyright notice and this paragraph in its entirety, (2)
9 * distributions including binary code include the above copyright notice and
11 * provided with the distribution, and (3) all advertising materials mentioning
14 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
263 %type <blk> and or paren not null prog
325 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
326 | expr and id { gen_and($1.b, $3.b); $$ = $3; }
330 and label
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java15 * See the License for the specific language governing permissions and
69 * of operation codes (op map) and then builds from that into an Expression
77 * Construct a Compiler object with a specific ErrorListener and
97 * Construct a Compiler instance that has a null error listener and a
128 expr = and(opPos); break;
200 * Bottle-neck compilation of an operation with left and right operands.
257 * Compile an 'and' operation.
265 protected Expression and(int opPos) throws TransformerException method in class:Compiler
811 * and match patterns.
906 // This is the magic and invisibl
[all...]
/external/easymock/src/org/easymock/
H A DEasyMock.java13 * See the License for the specific language governing permissions and
108 * is disabled by default, and the mock object will return <code>0</code>,
124 * is disabled by default, and the mock object will return <code>0</code>,
159 * Creates a control, order checking is disabled by default, and the mock
704 public static boolean and(boolean first, boolean second) { method in class:EasyMock
718 public static byte and(byte first, byte second) { method in class:EasyMock
732 public static char and(char first, char second) { method in class:EasyMock
746 public static double and(double first, double second) { method in class:EasyMock
760 public static float and(float first, float second) { method in class:EasyMock
774 public static int and(in method in class:EasyMock
788 public static long and(long first, long second) { method in class:EasyMock
802 public static short and(short first, short second) { method in class:EasyMock
818 public static <T> T and(T first, T second) { method in class:EasyMock
[all...]
/external/iproute2/doc/
H A Dip-cref.tex28 However, the document is self-contained and the reader, provided they have a
30 and examples to understand and configure Linux-2.2 IP and IPv6
34 and options, decrypting \verb|ip| output and containing a few examples.
35 More voluminous examples and some topics, which require more elaborate
39 bugs and design drawbacks. They may be skipped at the first reading.
49 begin with the character \verb|'-'| and may be used in either long or abbreviated
55 --- print the version of the \verb|ip| utility and exi
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex4 \section{Introduction and Description} \label{vorbis:spec:intro}
20 it is in the same league as MPEG-2 and MPC. Similarly, the 1.0
21 encoder can encode high-quality CD and DAT rate stereo at below 48kbps
23 lower and higher sample rates (from 8kHz telephony to 192kHz digital
24 masters) and a range of channel representations (monaural,
33 transient response and reproduction using a transform better suited to
40 encoder and simple, low-complexity decoder. Vorbis decode is
52 dividing it into individual frames and compressing these frames into
55 them, and reassembles the frames into a facsimile of the original
56 audio stream. Vorbis is a free-form variable bit rate (VBR) codec and packet
[all...]
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp240 // This is a bit weird, but the alternative tokens aren't keywords, and this
242 extern int __identifier(and) r; // expected-error {{cannot convert '&&' token to an identifier}}
333 //expected-warning@+1 {{C++ operator 'and' (aka '&&') used as a macro name}}
334 #define and foo macro
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp7 return true and false;
11 #ifdef and
14 // The second 'and' is a valid C++ operator name for '&&'.
15 #if defined and and defined(and)
19 // (operators like "and" aren't normally, the rest always is.)
20 #define and macro
105 and
/external/pixman/pixman/
H A Dpixman-arm-simd-asm.h5 * Permission to use, copy, modify, distribute, and sell this software and its
7 * the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of the copyright holders not be used in
29 * Because the alignment of pixel data to cachelines, and even the number of
30 * cachelines per row can vary from row to row, and because of the need to
31 * preload each scanline once and only once, this prefetch strategy treats
51 * this is the "narrow" case, and there is no attempt to align writes to
52 * 16-byte boundaries. In the "medium" and "narro
448 PF and, WK0, X, #pix_per_block-1 variable
748 PF and, WK0, WK0, #15 variable
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBitSet.js104 * <li>If el is a number and el2 is a number return a BitSet containing
105 * the numbers between el and el2 (inclusive).</li>
189 // walk set and add each interval
206 * Clone this BitSet and then {@link #andInPlace} with a.
210 and: function(a) {
220 * and only if it both initially had the value true and the corresponding
300 * The result is true if and only if the argument is not null and is a
408 * set and {
[all...]
/external/chromium_org/chrome/third_party/mock4js/
H A Dmock4js.js51 object.and = function() {
157 msg += " and has been invoked";
187 if(this._hasBeenInvoked) desc+=" and has been invoked";
261 return "and("+Mock4JSUtil.join(this._constraints)+")";
/external/guava/guava-tests/lib/
H A Dlibtruth.jar ... junit.contrib.truth.subjects.Subject$And contains (java.lang.Object) Object item public org ...
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParsing.py162 #and_test: not_test ('and' not_test)*
165 #return p_binop_expr(s, ('and',), p_not_test)
166 return p_rassoc_binop_expr(s, ('and',), p_not_test)
296 elif sy == 'IDENT' and s.systring == "sizeof":
308 if (not is_memslice and not is_template and not is_const
309 and base_type.name is None):
356 if s.sy != ')' and s.sy not in statement_terminators:
376 if s.systring == 'new' and s.peek()[0] == 'IDENT':
452 if len(positional_args) == 1 and no
1407 if is_cimport and s.systring in imported_name_kinds: namespace
[all...]

Completed in 817 milliseconds

12345