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

1 2

  /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/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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.10-1.js 7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
252 function Or( s, a ) {
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-3.js 7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
250 function Or( s, a ) {
  /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/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/llvm/include/llvm/ADT/
APSInt.h 223 APSInt Or(const APSInt& RHS) const {
266 /// \brief Determine if two APSInts have the same value, zero- or
293 /// Profile - Used to insert APSInt objects, or objects that contain APSInt
  /external/llvm/lib/Transforms/InstCombine/
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.
176 } else if (I->getOpcode() == Instruction::Or) {
177 // We can simplify (X|Y) -> X or Y in the user's context if we know that
178 // only bits from X or Y are demanded.
180 // If either the LHS or the RHS are One, the result is One.
185 // other. These bits cannot contribute to the result of the 'or' in this
221 // If either the LHS or the RHS are Zero, the result is zero.
252 case Instruction::Or:
253 // If either the LHS or the RHS are One, the result is One
    [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);
273 /// whether to treat the V, Lo and HI as signed or not. IB is the location to
375 case Instruction::Or:
392 /// described as the "AMask" or "BMask" part of the enum. If the enum
395 /// is trivial if C == A, or C == 0. If both A and C are constants, thi
    [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/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/clang/lib/CodeGen/
ItaniumCXXABI.cpp 317 /// Perform a bitcast, derived-to-base, or base-to-derived member pointer
479 // Get the function pointer (or index if this is a virtual function).
563 /// the same if they're either bitwise identical *or* both null.
575 llvm::Instruction::BinaryOps And, Or;
578 And = llvm::Instruction::Or;
579 Or = llvm::Instruction::And;
583 Or = llvm::Instruction::Or;
626 llvm::Value *OrAdj = Builder.CreateOr(LAdj, RAdj, "or.adj");
629 "cmp.or.adj")
    [all...]
CGExprScalar.cpp 374 // effect is the evaluation of the postfix-expression before the dot or
436 return Builder.CreateOr(Ops.LHS, Ops.RHS, "or");
464 HANDLEBINOP(Or)
572 // The source value may be an integer, or a pointer.
576 assert(SrcType->isIntegerType() && "Not ptr->ptr or int->ptr conversion?");
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 96 /// which is currently defined as the absolute section for constants, or
142 /// assembler variable (defined constant), or constitute an implicit definition
316 GT, ///< Signed greater than comparison (result is either 0 or some
318 GTE, ///< Signed greater than or equal comparison (result is either 0 or
321 LOr, ///< Logical or.
322 LT, ///< Signed less than comparison (result is either 0 or
324 LTE, ///< Signed less than or equal comparison (result is either 0 or
329 Or, ///< Bitwise or
    [all...]
  /external/llvm/include/llvm/
Instructions.h 136 /// SubclassData field in Value to store whether or not the load is volatile.
174 /// setVolatile - Specify whether this is a volatile load or not.
194 /// Set the ordering constraint on this load. May not be Release or
206 /// concurrently executing threads, or only with respect to signal handlers
291 /// setVolatile - Specify whether this is a volatile store or not.
314 /// Set the ordering constraint on this store. May not be Acquire or
326 /// concurrently executing threads, or only with respect to signal handlers
395 // Ordering may only be Acquire, Release, AcquireRelease, or
410 /// AcquireRelease, or SequentiallyConsistent.
421 /// concurrently executing threads, or only with respect to signal handler
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 2 // Redistribution and use in source and binary forms, with or without
10 // disclaimer in the documentation and/or other materials provided
13 // contributors may be used to endorse or promote products derived
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TOR
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 166 | Or
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 141 // Without this, every float setcc comes with a AND/OR with the result,
296 setTargetDAGCombine(ISD::OR);
363 // If there exist users other than ADDENode or ADDCNode, this function returns
436 // If there exist users other than SUBENode or SUBCNode, this function returns
644 // $dst = and ((sra or srl) $src , pos), (2**size - 1)
669 // Return if the shifted mask does not start at bit 0 or the sum of its size
684 // $dst = or (and $src1 , mask0), (and (shl $src, pos), mask1),
779 case ISD::OR:
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 64 /// some float libcalls (6, 8 or 12 bits).
97 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
158 Val = DAG.getNode(ISD::OR, DL, TotalVT, Lo, Hi);
189 // zero or sign-extension.
216 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
242 // If the register was not expanded, truncate or copy the value,
258 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the
530 // If the register was not expanded, promote or copy the value,
549 /// RegsForValue - This struct represents the registers (physical or virtual)
552 /// time, but struct or array values are handled element-wise as multipl
    [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 62 /// sets things up to match to an AVX VEXTRACTF128 instruction or a
96 /// sets things up to match to an AVX VINSERTF128 instruction or a
171 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
712 // (for widening) or expand (for scalarization). Then we will selectively
    [all...]

Completed in 1083 milliseconds

1 2