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

1 2 3 4 5 6

  /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/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 10 * Redistribution and use in source and binary forms, with or without
17 * documentation and/or other materials provided with the distribution.
18 * 3. The name of the author may not be used to endorse or promote products
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE O
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 10 * Redistribution and use in source and binary forms, with or without
17 * documentation and/or other materials provided with the distribution.
18 * 3. The name of the author may not be used to endorse or promote products
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE O
    [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; }
  /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.
  /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/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/llvm/include/llvm/ADT/
APSInt.h 246 APSInt LLVM_ATTRIBUTE_UNUSED_RESULT Or(const APSInt& RHS) const {
288 /// \brief Determine if two APSInts have the same value, zero- or
323 /// Profile - Used to insert APSInt objects, or objects that contain APSInt
  /external/llvm/include/llvm/MC/
MCExpr.h 116 /// currently defined as the absolute section for constants, or
158 /// assembler variable (defined constant), or constitute an implicit definition
414 GT, ///< Signed greater than comparison (result is either 0 or some
416 GTE, ///< Signed greater than or equal comparison (result is either 0 or
419 LOr, ///< Logical or.
420 LT, ///< Signed less than comparison (result is either 0 or
422 LTE, ///< Signed less than or equal comparison (result is either 0 or
427 Or, ///< Bitwise or
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 87 /// to replace V with a constant or one of its operands. In such cases, this
160 // If either the LHS or the RHS are Zero, the result is zero.
180 } else if (I->getOpcode() == Instruction::Or) {
181 // We can simplify (X|Y) -> X or Y in the user's context if we know that
182 // only bits from X or Y are demanded.
184 // If either the LHS or the RHS are One, the result is One.
191 // other. These bits cannot contribute to the result of the 'or' in this
209 // We can simplify (X^Y) -> X or Y in the user's context if we know that
210 // only bits from X or Y are demanded.
242 // If either the LHS or the RHS are Zero, the result is zero
    [all...]
InstCombineSelect.cpp 71 /// %C = or %A, %B
75 /// %D = or %A, %C
86 case Instruction::Or:
106 case Instruction::Or:
124 // If this is a non-volatile load or a cast from the same type,
286 /// (select (icmp eq (and X, C1), 0), Y, (or Y, C2))
288 /// (or (shl (and X, C1), C3), y)
414 // can be adjusted to fit the min/max idiom. We may move or edit ICI
517 // This shift results in either -1 or 0.
520 // Check if we can express the operation with a single or
    [all...]
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...]
  /external/protobuf/python/
mox.py 11 # Unless required by applicable law or agreed to in writing, software
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 If an unexpected method (or an expected method with unexpected
105 This can occur if a method is called with incorrect parameters, or out of the
115 # expected: MockMethod or UnorderedGroup the method should have
118 expected: MockMethod or UnorderedGroup
211 This will replace a class or module with a MockObject, and everything else
282 state (record or replay). The call will be recorded or replaye
    [all...]
  /external/regex-re2/re2/
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/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
mox.py 9 # Unless required by applicable law or agreed to in writing, software
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 If an unexpected method (or an expected method with unexpected
114 This can occur if a method is called with incorrect parameters, or out of
124 # expected: MockMethod or UnorderedGroup the method should have
127 expected: MockMethod or UnorderedGroup
300 This will replace a class or module with a MockObject, and everything
320 if attr_type == MockAnything or attr_type == MockObject:
325 attr_type in self._USE_MOCK_OBJECT or
    [all...]
  /external/chromium-trace/catapult/third_party/mox3/mox3/
mox.py 9 # Unless required by applicable law or agreed to in writing, software
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 If an unexpected method (or an expected method with unexpected
114 This can occur if a method is called with incorrect parameters, or out of
124 # expected: MockMethod or UnorderedGroup the method should have
127 expected: MockMethod or UnorderedGroup
300 This will replace a class or module with a MockObject, and everything
320 if attr_type == MockAnything or attr_type == MockObject:
325 attr_type in self._USE_MOCK_OBJECT or
    [all...]
  /external/opencv3/3rdparty/jinja2/
nodes.py 117 or arbitrary values. Fields are passed to the constructor as regular
135 raise TypeError('%r takes 0 or %d argument%s' % (
138 len(self.fields) != 1 and 's' or ''
152 parameter or to exclude some using the `exclude` parameter. Both
153 should be sets or tuples of field names.
156 if (exclude is only is None) or \
157 (exclude is not None and name not in exclude) or \
214 if node.lineno is None or override:
277 :class:`Name` or :class:`Tuple`), `iter` the iterable. `body` is a list
355 """Return the value of the expression as constant or rais
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
1011 class Or(Node):
1025 return "Or(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
1011 class Or(Node):
1025 return "Or(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
1011 class Or(Node):
1025 return "Or(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
1011 class Or(Node):
1025 return "Or(%s)" % (repr(self.nodes),)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 109 // (or (rotl Input, Rotate), ~Mask)
148 // Try to fold more of the base or index of AM into AM, where IsBase
268 // Check whether (or Op (and X InsertMask)) is effectively an insertion
287 // Try to implement AND or shift node N using RISBG with the zero flag set.
291 // Try to use RISBG or Opcode to implement OR or XOR node N.
379 // Change the base or index in AM to Value, where IsBase selects
389 // The base or index of AM is equivalent to Value + ADJDYNALLOC,
414 // The base or index of AM is equivalent to Op0 + Op1, where IsBase select
    [all...]

Completed in 608 milliseconds

1 2 3 4 5 6