Searched defs:or (Results 26 - 50 of 124) sorted by relevance

12345

/external/proguard/src/proguard/evaluation/value/
H A DIntegerValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
188 * Returns the logical <i>or</i> of this IntegerValue and the given
191 public abstract IntegerValue or(IntegerValue other); method in class:IntegerValue
201 * <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
207 * <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
212 * Returns whether this IntegerValue is less than or equal to the given
213 * IntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
223 * <code>NEVER</code>, <code>MAYBE</code>, or <cod
417 public IntegerValue or(UnknownIntegerValue other) method in class:IntegerValue
661 public IntegerValue or(SpecificIntegerValue other) method in class:IntegerValue
905 public IntegerValue or(ParticularIntegerValue other) method in class:IntegerValue
[all...]
H A DLongValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
182 * Returns the logical <i>or</i> of this LongValue and the given
185 public LongValue or(LongValue other) method in class:LongValue
187 return other.or(this);
200 * Returns an IntegerValue with value -1, 0, or 1, if this LongValue is
201 * less than, equal to, or greater than the given LongValue, respectively.
212 * Returns an IntegerValue with value 1, 0, or -1, if this LongValue is
213 * less than, equal to, or greate
339 public LongValue or(SpecificLongValue other) method in class:LongValue
495 public LongValue or(ParticularLongValue other) method in class:LongValue
[all...]
H A DParticularIntegerValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
201 public IntegerValue or(IntegerValue other) method in class:ParticularIntegerValue
203 return other.or(this);
329 public IntegerValue or(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
144 public LongValue or(LongValue other) method in class:ParticularLongValue
146 return other.or(this);
232 public LongValue or(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificIntegerValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
169 public IntegerValue or(IntegerValue other) method in class:SpecificIntegerValue
171 return other.or(this);
303 public IntegerValue or(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DSpecificLongValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
124 public LongValue or(LongValue other) method in class:SpecificLongValue
126 return other.or(this);
218 public LongValue or(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
171 public IntegerValue or(IntegerValue other) method in class:UnknownIntegerValue
H A DUnknownLongValue.java7 * This program is free software; you can redistribute it and/or modify it
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
125 public LongValue or(LongValue other) method in class:UnknownLongValue
/external/toybox/toys/posix/
H A Dod.c38 char *buf; // Points to buffers[0] or buffers[1].
95 unsigned long long ll = 0, or; local
101 or = -1LL;
102 if (t->type == 2) or >>= 1;
103 } else or = (1LL<<(8*t->size))-1;
104 throw = sprintf(buf, class, 0, or);
108 or = TT.buf[(*offset)++];
109 ll |= or << (8*(IS_BIG_ENDIAN ? t->size-k-1 : k));
114 or = sizeof(or)
[all...]
H A Dcp.c54 --preserve takes either a comma separated list of attributes, or the first
145 // Detect recursive copies via repeated top node (cp -R .. .) or
224 struct dirtree *or; local
228 for (or = try; or->parent; or = or->parent) dotdots++;
230 if (*or->name == '/') dotdots = 0;
252 // make symlink, or make block/char/fifo/socket
416 // Prompt if -i or fil
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBitSet.java6 Redistribution and use in source and binary forms, with or without
13 documentation and/or other materials provided with the distribution.
14 3. The name of the author may not be used to endorse or promote products
107 public BitSet or(BitSet a) { method in class:BitSet
116 /** or this element into this set (grow as necessary to accommodate) */
/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
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
40 * an NFA configuration is valid. It's either a single predicate or
41 * a tree representing an operation tree such as: p1&&p2 or p1||p2.
80 public abstract boolean hasUserSemanticPredicate(); // user-specified sempred {}? or {}?=>
91 /** Is this a {...}?=> gating predicate or a normal disambiguating {..}?
109 /** sometimes predicates are known to be true or false; we need
111 * value like true or TRUE.
528 return SemanticContext.or(lef
644 public static SemanticContext or(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
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
48 * Also seems like or() from util is wrong when size of incoming set is bigger
84 /** or this element into this set (grow as necessary to accommodate) */
371 public IntSet or(IntSet a) { method in class:BitSet
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
144 public static <T> Predicate<T> or( method in class:Predicates
158 public static <T> Predicate<T> or(Predicate<? super T>... components) { method in class:Predicates
168 public static <T> Predicate<T> or( method in class:Predicates
176 * tested {@code equals()} the given target or both are null.
382 /** @see Predicates#or(Iterable) */
411 return "Predicates.or(" + COMMA_JOINER.join(components) + ")";
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
141 public static <T> Predicate<T> or( method in class:Predicates
155 public static <T> Predicate<T> or(Predicate<? super T>... components) { method in class:Predicates
165 public static <T> Predicate<T> or( method in class:Predicates
173 * tested {@code equals()} the given target or both are null.
319 /** @see Predicates#or(Iterable) */
348 return "Predicates.or(" + COMMA_JOINER.join(components) + ")";
/external/guava/guava-testlib/src/com/google/common/testing/
H A DAbstractPackageSanityTests.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
57 * <p>Note that only top-level classes with either a non-private constructor or a non-private static
119 .or(suffix("Tests"))
120 .or(suffix("TestCase"))
121 .or(suffix("TestSuite"));
149 * <li>If a constructor or factory method takes a parameter whose type is interface, a dynamic
153 * <li>If the constructor or factory method takes a parameter that {@link
155 * <li>If there is no visible constructor or visible static factory method declared by {@code C},
158 * static factory method whose return type is {@code C} or {
373 final Chopper or(final Chopper you) { method in class:AbstractPackageSanityTests.Chopper
[all...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
H A DBinaryExpr.java9 * the Free Software Foundation, either version 3 of the License, or
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 or, // || enum constant in enum:BinaryExpr.Operator
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DEscapingEvaluator.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
111 * or the whole expression.
140 setEscaping(or(left, right));
174 * Do not escape the output of a function if either the function is an escaping function, or any
189 finalExpression = or(finalExpression, currentEscapingExpression);
194 return or(finalExpression, funcExpr);
201 private JavaExpression or(JavaExpression first, JavaExpression second) { method in class:EscapingEvaluator
/external/libpcap/
H A Dgrammar.y31 * Redistribution and use in source and binary forms, with or without
35 * this paragraph in its entirety in the documentation or other materials
37 * features or use of this software display the following acknowledgement:
41 * or promote products derived from this software without specific prior
292 %type <blk> and or paren not null prog
356 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
357 | expr or id { gen_or($1.b, $3.b); $$ = $3; }
361 or: OR { $$ = $<blk>0; } label
430 | qid or id { gen_or($1.b, $3.b); $$ = $3; }
727 | atmlistvalue or atmfieldvalu
[all...]
/external/llvm/test/MC/Lanai/
H A Dv11.s343 ld [%r17 or %r18], %r21
361 ld [*%r17 or %r18], %r21
379 ld [%r17* or %r18], %r21
409 or %r17, 0, %r21 label
411 or %r17, 0x00001234, %r21 label
413 or %r17, 0x12340000, %r21 label
415 or.f %r17, 0, %r21
417 or.f %r17, 0x00001234, %r21
419 or.f %r17, 0x12340000, %r21
421 or label
[all...]
/external/toybox/toys/pending/
H A Darp.c127 int or, flag; member in struct:flags
139 (f[j].or) ?(flag |= f[j].flag):(flag &= f[j].flag);
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java3 * or more contributor license agreements. See the NOTICE file
12 * Unless required by applicable law or agreed to in writing, software
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
80 * @param errorHandler Error listener where messages will be sent, or null
111 * @throws TransformerException if there is a syntax or other error.
126 expr = or(opPos); break;
207 * @throws TransformerException if there is a syntax or other error.
229 * @throws TransformerException if syntax or other error occurs.
243 * Compile an 'or' operation.
251 protected Expression or(in method in class:Compiler
[all...]
/external/easymock/src/org/easymock/
H A DEasyMock.java10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
109 * <code>null</code> or <code>false</code> for unexpected invocations.
125 * <code>null</code> or <code>false</code> for unexpected invocations.
161 * <code>null</code> or <code>false</code> for unexpected invocations.
300 * Expects a comparable argument greater than or equal the given value. For details, see
314 * Expects a byte argument greater than or equal to the given value. For
327 * Expects a double argument greater than or equal to the given value. For
340 * Expects a float argument greater than or equal to the given value. For
353 * Expects an int argument greater than or equa
832 public static boolean or(boolean first, boolean second) { method in class:EasyMock
846 public static byte or(byte first, byte second) { method in class:EasyMock
860 public static char or(char first, char second) { method in class:EasyMock
874 public static double or(double first, double second) { method in class:EasyMock
888 public static float or(float first, float second) { method in class:EasyMock
902 public static int or(int first, int second) { method in class:EasyMock
916 public static long or(long first, long second) { method in class:EasyMock
930 public static short or(short first, short second) { method in class:EasyMock
946 public static <T> T or(T first, T second) { method in class:EasyMock
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_state.h100 uint32_t or; member in struct:nv30_vertprog
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DPKIXNameConstraintValidator.java637 * mask as a byte array or an empty <code>Set</code>.
663 byte[] ip = or(minMax[0], minMax[2]);
664 byte[] subnetmask = or(subnetmask1, subnetmask2);
1003 // is sub domain or the same
1683 // in sub domain or domain
1791 private static byte[] or(byte[] ip1, byte[] ip2) method in class:PKIXNameConstraintValidator
1883 * Stringifies an IPv4 or v6 address with subnet mask.

Completed in 613 milliseconds

12345