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

12345

/external/proguard/src/proguard/evaluation/value/
H A DLongValue.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
68 * Returns the generalization of this LongValue and the given other
77 * Returns the sum of this LongValue and the given LongValue.
85 * Returns the difference of this LongValue and the given LongValue.
93 * Returns the difference of the given LongValue and this LongValue.
101 * Returns the product of this LongValue and the given LongValue.
110 * Returns the quotient of this LongValue and the given LongValue.
119 * Returns the quotient of the given LongValue and this LongValue.
173 * Returns the logical <i>and</
176 public LongValue and(LongValue other) method in class:LongValue
330 public LongValue and(SpecificLongValue other) method in class:LongValue
486 public LongValue and(ParticularLongValue other) method in class:LongValue
[all...]
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/annotation-tools/annotation-file-utilities/
H A Dannotation-file-format.tex32 % Add line between figure and text
70 writing and storing annotations that is much easier to read and modify
89 (extracted from the Java or \code{.class} files) is easier to read and
94 The external file format should be easy for people to create, read, and
104 declaration annotations and also the type annotations that are introduced by Java SE 8.
111 In that sense, the current design is extremely low-level, and users
167 binary name, ``type'' is any valid type, and ``value'' is any
168 valid Java constant, and quoted strings are literal values.
170 The Kleene qualifiers ``*'' (zero or more), ``?'' (zero or one), and ``
[all...]
/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/guava/guava/src/com/google/common/base/
H A DPredicates.java13 * See the License for the specific language governing permissions and
99 * order, and evaluation will be "short-circuited" as soon as a false
105 public static <T> Predicate<T> and( method in class:Predicates
113 * order, and evaluation will be "short-circuited" as soon as a false
119 public static <T> Predicate<T> and(Predicate<? super T>... components) { method in class:Predicates
126 * order, and evaluation will be "short-circuited" as soon as a false
129 public static <T> Predicate<T> and(Predicate<? super T> first, method in class:Predicates
138 * order, and evaluation will be "short-circuited" as soon as a
152 * order, and evaluation will be "short-circuited" as soon as a
165 * 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}
219 * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
313 @Override public CharMatcher and(CharMatcher other) {
395 @Override public CharMatcher and(CharMatcher other) {
425 @Override public CharMatcher and(CharMatcher other) {
457 @Override public CharMatcher and(CharMatcher other) {
458 return other.matches(match) ? super.and(other) : other;
493 // TODO(user): is it potentially worth just going ahead and buildin
676 public CharMatcher and(CharMatcher other) { method in class:CharMatcher
[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
96 * order, and evaluation will be "short-circuited" as soon as a false
102 public static <T> Predicate<T> and( method in class:Predicates
110 * order, and evaluation will be "short-circuited" as soon as a false
116 public static <T> Predicate<T> and(Predicate<? super T>... components) { method in class:Predicates
123 * order, and evaluation will be "short-circuited" as soon as a false
126 public static <T> Predicate<T> and(Predicate<? super T> first, method in class:Predicates
135 * order, and evaluation will be "short-circuited" as soon as a
149 * order, and evaluation will be "short-circuited" as soon as a
162 * order, and evaluatio
[all...]
H A DCharMatcher.java13 * See the License for the specific language governing permissions and
32 * Implementations are strongly encouraged to be side-effect-free and immutable.
39 * characters are encoded into a {@code String} using surrogate pairs, and a {@code CharMatcher}
217 * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
311 @Override public CharMatcher and(CharMatcher other) {
393 @Override public CharMatcher and(CharMatcher other) {
423 @Override public CharMatcher and(CharMatcher other) {
449 @Override public CharMatcher and(CharMatcher other) {
450 return other.matches(match) ? super.and(other) : other;
478 // TODO(user): is it potentially worth just going ahead and buildin
633 public CharMatcher and(CharMatcher other) { method in class:CharMatcher
[all...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
H A DBinaryExpr.java13 * You should have received a copy of both licenses in LICENCE.LGPL and
34 and, // && enum constant in enum:BinaryExpr.Operator
/external/libpcap/
H A Dgrammar.y8 * handle for the reentrant scanner to the parser, and the
12 * versions of Flex and Bison, if you use yyscan_t in %parse-param and
14 * yyscan_t declared, and you have to include grammar.h before scanner.h
31 * Redistribution and use in source and binary forms, with or without
33 * retain the above copyright notice and this paragraph in its entirety, (2)
34 * distributions including binary code include the above copyright notice and
36 * provided with the distribution, and (3) all advertising materials mentioning
39 * Lawrence Berkeley Laboratory and it
359 and: AND { $$ = $<blk>0; } label
[all...]
/external/llvm/test/MC/Lanai/
H A Dv11.s35 and %r17, 0xffff1234, %r21 label
37 and %r17, 0x1234ffff, %r21 label
39 and.f %r17, 0xffff1234, %r21
41 and.f %r17, 0x1234ffff, %r21
43 and %r17, %r18, %r21 label
45 and.f %r17, %r18, %r21
341 ld [%r17 and %r18], %r21
359 ld [*%r17 and %r18], %r21
377 ld [%r17* and %r18], %r21
631 st %r21, [%r17 and
[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/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp9 return true and false;
13 #ifdef and
16 // The second 'and' is a valid C++ operator name for '&&'.
17 #if defined and and defined(and)
21 // (operators like "and" aren't normally, the rest always is.)
22 #define and macro
107 and
/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/clang/test/Parser/
H A DMicrosoftExtensions.cpp245 // This is a bit weird, but the alternative tokens aren't keywords, and this
247 extern int __identifier(and) r; // expected-error {{cannot convert '&&' token to an identifier}}
339 //expected-warning@+1 {{C++ operator 'and' (aka '&&') used as a macro name}}
340 #define and foo macro
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSpoofChecker.java2 // © 2016 and later: Unicode, Inc. and others.
7 * and others. All Rights Reserved.
46 * This class, based on <a href="http://unicode.org/reports/tr36">Unicode Technical Report #36</a> and
50 * <li>Checking whether two strings are visually <em>confusable</em> with each other, such as "desparejado" and
76 * {@link SpoofChecker.Builder} object, and upon calling {@link SpoofChecker.Builder#build}, expensive data loading
77 * operations are performed, and an immutable <code>SpoofChecker</code> is returned.
82 * application startup), and the more efficient {@link SpoofChecker#areConfusable} method can be used at runtime.
120 * at runtime and do not rely on creating a permanent, or difficult to update, database of skeletons.
140 * startup, and cal
1914 public void and(int script) { method in class:SpoofChecker.ScriptSet
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSpoofChecker.java1 // © 2016 and later: Unicode, Inc. and others.
6 * and others. All Rights Reserved.
45 * This class, based on <a href="http://unicode.org/reports/tr36">Unicode Technical Report #36</a> and
49 * <li>Checking whether two strings are visually <em>confusable</em> with each other, such as "desparejado" and
75 * {@link SpoofChecker.Builder} object, and upon calling {@link SpoofChecker.Builder#build}, expensive data loading
76 * operations are performed, and an immutable <code>SpoofChecker</code> is returned.
81 * application startup), and the more efficient {@link SpoofChecker#areConfusable} method can be used at runtime.
119 * at runtime and do not rely on creating a permanent, or difficult to update, database of skeletons.
139 * startup, and cal
1985 public void and(int script) { method in class:SpoofChecker.ScriptSet
[all...]
/external/guice/lib/build/
H A Deasymock.jar ... java.lang.String) String substring public static boolean and (boolean, boolean) boolean first boolean second public static byte and ...

Completed in 2490 milliseconds

12345