HomeSort by relevance Sort by last modified time
    Searched refs:Or (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /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/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/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
tostring-2.js 7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
93 var or = new TestFunction( "Or", "a, b", tab + "return a | b;" );
94 function Or( a, b ) {
139 "Or.toString()",
140 or.valueOf(),
141 Or.toString() );
  /external/libpng/contrib/pngminus/
makevms.com 74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.10-2.js 7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
80 Or( shiftexp, addexp ),
251 function Or( s, a ) {
11.10-1.js 7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
252 function Or( s, a ) {
11.10-3.js 7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
250 function Or( s, a ) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 138 /// opcode and two operands into either a constant true or false, or a brand
183 /// PredicatesFoldable - Return true if both predicates match sign or if at
212 case Instruction::Or:
216 Value *Or = Builder->CreateOr(X, Together);
217 Or->takeName(Op);
218 return BinaryOperator::CreateAnd(Or, AndRHS);
336 /// whether to treat the V, Lo and HI as signed or not. IB is the location to
438 case Instruction::Or:
455 /// described as the "AMask" or "BMask" part of the enum. If the enum
    [all...]
InstCombineSimplifyDemanded.cpp 83 /// to replace V with a constant or one of its operands. In such cases, this
158 // If either the LHS or the RHS are Zero, the result is zero.
178 } else if (I->getOpcode() == Instruction::Or) {
179 // We can simplify (X|Y) -> X or Y in the user's context if we know that
180 // only bits from X or Y are demanded.
182 // If either the LHS or the RHS are One, the result is One.
189 // other. These bits cannot contribute to the result of the 'or' in this
225 // If either the LHS or the RHS are Zero, the result is zero.
256 case Instruction::Or:
257 // If either the LHS or the RHS are One, the result is One
    [all...]
InstCombineCasts.cpp 153 /// CanEvaluateTruncated or CanEvaluateSExtd returns true for, actually
158 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
174 case Instruction::Or:
248 // We don't want to form an inttoptr or ptrtoint that converts to an integer
275 // idiom where each element of the extended vector is either zero or all ones.
292 // The first cast (CSrc) is eliminable so we need to fix up or replace
344 // We can't extend or shrink something that has multiple uses: doing so would
354 case Instruction::Or:
356 // These operators can all arbitrarily be extended or truncated.
482 // type, then zero extend or truncate to the result
    [all...]
InstCombineShifts.cpp 57 /// logically to the left or right by some number of bits. This should return
63 /// %E = or i128 %C, %D
109 case Instruction::Or:
203 case Instruction::Or:
411 case Instruction::Or:
485 bool isValid = true; // Valid only for And, Or, Xor
493 case Instruction::Or:
  /external/llvm/lib/VMCore/
Instruction.cpp 124 case Or : return "or";
365 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
368 return Opcode == And || Opcode == Or || Opcode == Xor ||
386 case Or:
423 return false; // The called function could have undefined behavior or
  /external/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.
28 * Determines a true or false value for any Java {@code char} value, just as
72 .or(inRange('\u2000', '\u200a'));
84 .or(inRange('\u2000', '\u2006'))
85 .or(inRange('\u2008', '\u200a'));
106 digit = digit.or(inRange(base, (char) (base + 9)));
119 .or(inRange('\u001c', '\u0020'))
120 .or(is('\u1680')
380 @Override public CharMatcher or(CharMatcher other) { method in class:CharMatcher
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 64 case AtomicRMWInst::Or:
Reassociate.cpp 174 return 0; // Otherwise it's a global or constant, rank 0.
189 // If this is a not or neg instruction, do not count it for rank. This
227 // linearize it as well. Besides that case, this does not recurse into A,B, or
296 // Neither the LHS or RHS as part of the tree, thus this is a leaf. As
439 // non-instruction value) or right after the definition. These negates will
475 // Don't bother to break this up unless either the LHS is an associable add or
476 // subtract or if this is only used by one.
491 /// BreakUpSubtract - If we have (X-Y), and if either X is an add, or if this is
517 /// ConvertShiftToMul - If this is a shift of a reassociable multiply or is used
522 // If an operand of this shift is a reassociable multiply, or if the shif
    [all...]
  /external/libnfc-nxp/
Android.mk 110 # Or use "setprop debug.nfc.LOW_LEVEL_TRACES" at run-time
  /external/llvm/include/llvm/MC/
MCExpr.h 97 /// which is currently defined as the absolute section for constants, or
143 /// assembler variable (defined constant), or constitute an implicit definition
289 GT, ///< Signed greater than comparison (result is either 0 or some
291 GTE, ///< Signed greater than or equal comparison (result is either 0 or
294 LOr, ///< Logical or.
295 LT, ///< Signed less than comparison (result is either 0 or
297 LTE, ///< Signed less than or equal comparison (result is either 0 or
302 Or, ///< Bitwise or
    [all...]
  /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/clang/lib/CodeGen/
ItaniumCXXABI.cpp 315 /// Perform a derived-to-base or base-to-derived member pointer conversion.
509 // Get the function pointer (or index if this is a virtual function).
559 /// the same if they're either bitwise identical *or* both null.
571 llvm::Instruction::BinaryOps And, Or;
574 And = llvm::Instruction::Or;
575 Or = llvm::Instruction::And;
579 Or = llvm::Instruction::Or;
622 llvm::Value *OrAdj = Builder.CreateOr(LAdj, RAdj, "or.adj");
625 "cmp.or.adj")
    [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
  /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.
69 # package an obsolete version of it. Or if you change the ABIs you're targetting,
  /external/clang/include/clang/AST/
StmtVisitor.h 111 // back on VisitExpr or whatever else is the superclass.
129 BINOP_FALLBACK(And) BINOP_FALLBACK(Xor) BINOP_FALLBACK(Or)
  /external/llvm/include/llvm/ADT/
APSInt.h 210 APSInt Or(const APSInt& RHS) const {
253 /// Profile - Used to insert APSInt objects, or objects that contain APSInt

Completed in 860 milliseconds

1 2 3 4