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

1 2 3 4 5 6 7 8 91011>>

  /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/clang/lib/Analysis/
ThreadSafetyLogical.cpp 33 // Calculates the logical OR implication operator.
49 // C => !(A & B) [if] C => !A | !B [===] C => !A or C => !B
52 case LExpr::Or:
54 // C => (A | B) [if] C => A or C => B
57 return RNeg ? RightAndOperator(cast<Or>(RHS))
58 : RightOrOperator(cast<Or>(RHS));
72 // A & B => C [if] A => C or B => C
77 case LExpr::Or:
81 // !(A | B) => C [if] !A & !B => C [===] !A => C or !B => C
82 return LNeg ? LeftOrOperator(cast<Or>(LHS)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 27 Or,
76 class Or : public BinOp {
78 Or(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::Or) {}
80 static bool classof(const LExpr *E) { return E->kind() == LExpr::Or; }
  /art/test/427-bitwise/src/
Main.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.
111 expectEquals(7, $opt$Or(5, 3));
112 expectEquals(0, $opt$Or(0, 0));
113 expectEquals(3, $opt$Or(0, 3));
114 expectEquals(3, $opt$Or(3, 0));
115 expectEquals(-3, $opt$Or(1, -3));
116 expectEquals(-3, $opt$Or(-12, -3));
130 expectEquals(7L, $opt$Or(5L, 3L))
    [all...]
  /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/skia/src/core/
SkRecordPattern.h 69 // Abstracts away whether the paint is always part of the command or optional.
83 // Matches if any of First or Rest... does. Stores nothing.
85 struct Or {
87 bool operator()(T* ptr) { return First()(ptr) || Or<Rest...>()(ptr); }
90 struct Or<First> {
96 // Greedy is a special matcher that greedily matches Matcher 0 or more times. Stores nothing.
SkRecordOpts.cpp 78 Greedy<Or<Is<NoOp>, IsDraw>>,
118 // drawBitmap/drawSprite or a shader being non-uniform. However, current matchers don't
149 // Nested SaveLayers need to be excluded, or we'll match their Restore!
151 Greedy<Not<Or<Is<Save>,
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 123 /// result from the load or the value being stored. It is used to determine the
156 Value *Or = Builder->CreateOr(Cmp2, Cmp3);
159 Or = Builder->CreateOr(Cmp1, Or);
161 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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
err-builtin.s 8 % FIXME: Another option? Or is this just the consequence?
  /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)));
  /build/core/
install_jni_libs.mk 3 # my_module_multilib, LOCAL_2ND_ARCH_VAR_PREFIX (from package.mk or prebuilt.mk)
40 # Or it explicitly requires both
72 # Or it explicitly requires both
  /external/llvm/lib/IR/
Instruction.cpp 100 /// Set or clear the unsafe-algebra flag on this instruction, which must be an
108 /// Set or clear the NoNaNs flag on this instruction, which must be an operator
115 /// Set or clear the no-infs flag on this instruction, which must be an operator
122 /// Set or clear the no-signed-zeros flag on this instruction, which must be an
130 /// Set or clear the allow-reciprocal flag on this instruction, which must be an
226 case Or : return "or";
491 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
494 return Opcode == And || Opcode == Or || Opcode == Xor ||
526 case Or
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AtomicTest.rs 10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49 TEST_OP(Or)
  /external/libpng/contrib/pngminus/
makevms.com 74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 68 case AtomicRMWInst::Or:
SpeculativeExecution.cpp 51 // that or clean it up.
154 // an if-else or if-then due to one of the branches doing nothing.
178 case Instruction::Or:
  /external/llvm/lib/Transforms/Utils/
LoopVersioning.cpp 73 RuntimeCheck = BinaryOperator::Create(Instruction::Or, MemRuntimeCheck,
  /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...]
  /art/compiler/optimizing/
intrinsics_mips.cc 10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
269 __ Or(out, out, TMP);
283 __ Or(out, out, TMP);
290 __ Or(out, out, TMP);
301 __ Or(out, TMP, out);
307 __ Or(out, TMP, out);
313 __ Or(out, TMP, out);
335 __ Or(TMP, TMP, AT); // Hold in TMP until it's saf
    [all...]
code_generator_mips.cc 10 * Unless required by applicable law or agreed to in writing, software
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
262 // (Might be the load class or an initialization check).
698 // TODO: increment/decrement SP in one step instead of two or remove this comment.
757 // TODO: increment/decrement SP in one step instead of two or remove this comment.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 68 /// operands into either a constant true or false, or a brand new ICmp
105 /// \return Pointer to node that must replace the original binary operator, or
115 if (Op != Instruction::And && Op != Instruction::Or &&
148 else if (Op == Instruction::Or)
178 case Instruction::Or:
182 Value *Or = Builder->CreateOr(X, Together);
183 Or->takeName(Op);
184 return BinaryOperator::CreateAnd(Or, AndRHS);
298 /// whether to treat the V, Lo and HI as signed or not. IB is the location t
    [all...]

Completed in 2098 milliseconds

1 2 3 4 5 6 7 8 91011>>