/external/clang/test/SemaCXX/ |
generic-selection.cpp | 30 template <unsigned Arg, unsigned... Args> struct Or { 31 enum { result = Arg | Or<Args...>::result }; 34 template <unsigned Arg> struct Or<Arg> { 40 result = Or<_Generic(Args(), int: 1, long: 2, short: 4, float: 8)...>::result
|
/external/easymock/src/org/easymock/internal/matchers/ |
Or.java | 10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 public class Or implements IArgumentMatcher, Serializable {
30 public Or(List<IArgumentMatcher> matchers) {
44 buffer.append("or(");
|
/external/mockito/src/org/mockito/internal/matchers/ |
Or.java | 17 public class Or extends ArgumentMatcher implements Serializable { 22 public Or(List<Matcher> matchers) { 36 description.appendText("or(");
|
/external/mockito/src/org/mockito/internal/progress/ |
ArgumentMatcherStorageImpl.java | 13 import org.mockito.internal.matchers.Or; 63 assertStateFor("Or(?)", TWO_SUB_MATCHERS); 64 Or or = new Or(popLastArgumentMatchers(TWO_SUB_MATCHERS)); local 65 matcherStack.push(new LocalizedMatcher(or));
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Or.java | 3 * 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. 19 * $Id: Or.java 468655 2006-10-28 07:12:06Z minchau $ 28 * The 'or' operation expression executer. 30 public class Or extends Operation 35 * OR two expressions and return the boolean result. Override 40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
|
/external/chromium_org/third_party/re2/re2/ |
prefilter.h | 28 OR, // One of subs() must match 41 CHECK(op_ == AND || op_ == OR); 61 // Prefilters will be part of the returned Prefilter or deleted. 64 // Combines two prefilters together to create an OR. The passed 65 // Prefilters will be part of the returned Prefilter or deleted. 66 static Prefilter* Or(Prefilter* a, Prefilter* b); 68 // Generalized And/Or 84 // Sub-matches for AND or OR Prefilter. 90 // If different prefilters have the same string atom, or if they ar [all...] |
prefilter.cc | 23 if (op_ == AND || op_ == OR) 41 // Simplify if the node is an empty Or or And. 43 if (op_ != AND && op_ != OR) { 47 // Nothing left in the AND/OR. 52 op_ = NONE; // OR of nothing is false 68 // Combines two Prefilters together to create an "op" (AND or OR). 69 // The passed Prefilters will be part of the returned Prefilter or deleted. 85 // NONE OR b = [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
BoundsChecking.cpp | 127 /// result from the load or the value being stored. It is used to determine the 159 Value *Or = Builder->CreateOr(Cmp2, Cmp3); 162 Or = Builder->CreateOr(Cmp1, Or); 164 emitBranchToTrap(Or);
|
/external/regex-re2/re2/ |
prefilter.h | 28 OR, // One of subs() must match 41 CHECK(op_ == AND || op_ == OR); 61 // Prefilters will be part of the returned Prefilter or deleted. 64 // Combines two prefilters together to create an OR. The passed 65 // Prefilters will be part of the returned Prefilter or deleted. 66 static Prefilter* Or(Prefilter* a, Prefilter* b); 68 // Generalized And/Or 84 // Sub-matches for AND or OR Prefilter. 90 // If different prefilters have the same string atom, or if they ar [all...] |
prefilter.cc | 23 if (op_ == AND || op_ == OR) 41 // Simplify if the node is an empty Or or And. 43 if (op_ != AND && op_ != OR) { 47 // Nothing left in the AND/OR. 52 op_ = NONE; // OR of nothing is false 68 // Combines two Prefilters together to create an "op" (AND or OR). 69 // The passed Prefilters will be part of the returned Prefilter or deleted. 85 // NONE OR b = [all...] |
/external/easymock/src/org/easymock/internal/ |
LastControl.java | 10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26 import org.easymock.internal.matchers.Or;
100 stack.push(new Or(popLastArgumentMatchers(count)));
|
/external/libpng/contrib/pngminus/ |
makevms.com | 74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
|
/external/guava/guava/src/com/google/common/base/ |
CharMatcher.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 32 * Determines a true or false value for any Java {@code char} value, just as {@link Predicate} does 77 .or(inRange('\u2000', '\u200a')) 89 .or(inRange('\u2000', '\u2006')) 90 .or(inRange('\u2008', '\u200a')) 111 digit = digit.or(inRange(base, (char) (base + 9))); 129 * inRange('a', 'z').or(inRange('A', 'Z'))}. 138 * Determines whether a character is a letter or digit according to {@lin 393 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher [all...] |
/external/llvm/lib/IR/ |
Instruction.cpp | 96 /// Set or clear the unsafe-algebra flag on this instruction, which must be an 104 /// Set or clear the NoNaNs flag on this instruction, which must be an operator 111 /// Set or clear the no-infs flag on this instruction, which must be an operator 118 /// Set or clear the no-signed-zeros flag on this instruction, which must be an 126 /// Set or clear the allow-reciprocal flag on this instruction, which must be an 213 case Or : return "or"; 474 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative. 477 return Opcode == And || Opcode == Or || Opcode == Xor || 509 case Or [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LowerAtomic.cpp | 64 case AtomicRMWInst::Or:
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
CharMatcher.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 27 * Determines a true or false value for any Java {@code char} value, just as 70 .or(inRange('\u2000', '\u200a')); 82 .or(inRange('\u2000', '\u2006')) 83 .or(inRange('\u2008', '\u200a')); 104 digit = digit.or(inRange(base, (char) (base + 9))); 117 .or(inRange('\u001c', '\u0020')) 118 .or(is('\u1680') 392 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
CharMatcher.java | 10 * Unless required by applicable law or agreed to in writing, software 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 27 * Determines a true or false value for any Java {@code char} value, just as 70 .or(inRange('\u2000', '\u200a')); 82 .or(inRange('\u2000', '\u2006')) 83 .or(inRange('\u2008', '\u200a')); 104 digit = digit.or(inRange(base, (char) (base + 9))); 117 .or(inRange('\u001c', '\u0020')) 118 .or(is('\u1680') 392 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher [all...] |
/external/libnfc-nxp/ |
Android.mk | 115 # Or use "setprop debug.nfc.LOW_LEVEL_TRACES" at run-time
|
/external/qemu-pc-bios/bochs/bios/ |
acpi-dsdt.dsl | 6 * This library is free software; you can redistribute it and/or 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 458 Or (PRQ0, 0x80, PRQ0) 505 Or (PRQ1, 0x80, PRQ1) 552 Or (PRQ2, 0x80, PRQ2) 599 Or (PRQ3, 0x80, PRQ3)
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineSimplifyDemanded.cpp | 84 /// to replace V with a constant or one of its operands. In such cases, this 159 // If either the LHS or the RHS are Zero, the result is zero. 177 } else if (I->getOpcode() == Instruction::Or) { 178 // We can simplify (X|Y) -> X or Y in the user's context if we know that 179 // only bits from X or Y are demanded. 181 // If either the LHS or the RHS are One, the result is One. 186 // other. These bits cannot contribute to the result of the 'or' in this 204 // We can simplify (X^Y) -> X or Y in the user's context if we know that 205 // only bits from X or Y are demanded. 235 // If either the LHS or the RHS are Zero, the result is zero [all...] |
InstCombineAndOrXor.cpp | 94 /// opcode and two operands into either a constant true or false, or a brand 149 case Instruction::Or: 153 Value *Or = Builder->CreateOr(X, Together); 154 Or->takeName(Op); 155 return BinaryOperator::CreateAnd(Or, AndRHS); 269 /// whether to treat the V, Lo and HI as signed or not. IB is the location to 371 case Instruction::Or: 388 /// described as the "AMask" or "BMask" part of the enum. If the enum 391 /// is trivial if C == A, or C == 0. If both A and C are constants, thi [all...] |
InstCombineCasts.cpp | 158 /// CanEvaluateTruncated or CanEvaluateSExtd returns true for, actually 163 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/); 179 case Instruction::Or: 257 // We don't want to form an inttoptr or ptrtoint that converts to an integer 282 // idiom where each element of the extended vector is either zero or all ones. 299 // The first cast (CSrc) is eliminable so we need to fix up or replace 351 // We can't extend or shrink something that has multiple uses: doing so would 361 case Instruction::Or: 363 // These operators can all arbitrarily be extended or truncated. 489 // type, then zero extend or truncate to the result [all...] |
/external/libpng/scripts/ |
makevms.com | 50 $! Build the thing plain or with mms/mmk 124 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
|
/external/llvm/include/llvm/MC/ |
MCExpr.h | 96 /// which is currently defined as the absolute section for constants, or 139 /// assembler variable (defined constant), or constitute an implicit definition 363 GT, ///< Signed greater than comparison (result is either 0 or some 365 GTE, ///< Signed greater than or equal comparison (result is either 0 or 368 LOr, ///< Logical or. 369 LT, ///< Signed less than comparison (result is either 0 or 371 LTE, ///< Signed less than or equal comparison (result is either 0 or 376 Or, ///< Bitwise or [all...] |
/ndk/build/core/ |
setup-app.mk | 9 # Unless required by applicable law or agreed to in writing, software 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 97 # package an obsolete version of it. Or if you change the ABIs you're targetting,
|