Searched defs:And (Results 1 - 25 of 30) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DAnd.java19 * $Id: And.java 468655 2006-10-28 07:12:06Z minchau $
30 public class And extends Operation class in inherits:Operation
/external/easymock/src/org/easymock/internal/matchers/
H A DAnd.java24 public class And implements IArgumentMatcher, Serializable { class in inherits:IArgumentMatcher,Serializable
30 public And(List<IArgumentMatcher> matchers) { method in class:And
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
H A Dtostring-2.js98 var and = new TestFunction( "And", "a, b", tab + "return a & b;" );
99 function And( a, b ) { function
144 "And.toString()",
146 And.toString() );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.10-1.js81 And( shiftexp, addexp ),
213 function And( s, a ) { function
H A D11.10-2.js212 function And( s, a ) { function
H A D11.10-3.js211 function And( s, a ) { function
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc276 void MacroAssembler::And(Register dst, Register src1, const Operand& src2, function in class:v8::internal::MacroAssembler
/external/llvm/include/llvm/ADT/
H A DAPSInt.h215 APSInt And(const APSInt& RHS) const { function in class:llvm::APSInt
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java585 return new And(Arrays.asList(this, checkNotNull(other)));
588 private static class And extends CharMatcher { class in class:CharMatcher
591 And(List<CharMatcher> components) { method in class:CharMatcher.And
607 return new And(newComponents);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp108 case Instruction::And:
203 case Instruction::And:
394 Value *And = Builder->CreateAnd(NSh, local
399 return new TruncInst(And, I.getType());
411 case Instruction::And:
486 bool isValid = true; // Valid only for And, Or, Xor
498 case Instruction::And:
H A DInstCombineSimplifyDemanded.cpp157 if (I->getOpcode() == Instruction::And) {
220 case Instruction::And:
324 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC); local
325 return InsertNewInstWith(And, *I);
339 if (LHSInst->getOpcode() == Instruction::And && LHSInst->hasOneUse() &&
1082 case Instruction::And:
H A DInstCombineAndOrXor.cpp144 Value *And = Builder->CreateAnd(X, AndRHS); local
145 And->takeName(Op);
146 return BinaryOperator::CreateXor(And, Together);
164 Value *And = Builder->CreateAnd(X, Together); local
165 And->takeName(Op);
166 return BinaryOperator::CreateOr(And, OpRHS);
355 case Instruction::And:
1322 if (I->getOpcode() == Instruction::And &&
1925 Value *And = Builder->CreateAnd(Op0NotVal, Op1NotVal, local
1927 return BinaryOperator::CreateNot(And);
[all...]
H A DInstCombineCasts.cpp172 case Instruction::And:
351 case Instruction::And:
665 case Instruction::And:
682 (Opc == Instruction::And || Opc == Instruction::Or ||
806 Value *And = Builder->CreateAnd(A, AndConst, CSrc->getName()+".mask"); local
807 return new ZExtInst(And, CI.getType());
843 if (SrcI && SrcI->getOpcode() == Instruction::And && SrcI->hasOneUse())
856 if (BinaryOperator *And = dyn_cast<BinaryOperator>(SrcI->getOperand(0)))
857 if (And->getOpcode() == Instruction::And
[all...]
H A DInstCombineCompares.cpp1010 Value *And = Builder->CreateAnd(Shr->getOperand(0), local
1012 return new ICmpInst(ICI.getPredicate(), And, ShiftedCmpRHS);
1102 case Instruction::And: // (icmp pred (and X, AndCST), RHS)
1304 Value *And = local
1306 return new ICmpInst(ICI.getPredicate(), And,
1319 Value *And = local
1322 And, Constant::getNullValue(And->getType()));
1468 case Instruction::And:
2182 // and CodeGen. And i
[all...]
/external/protobuf/python/
H A Dmox.py1046 class And(Comparator): class in inherits:Comparator
/external/regex-re2/re2/
H A Dprefilter.cc41 // Simplify if the node is an empty Or or And.
131 Prefilter* Prefilter::And(Prefilter* a, Prefilter* b) { function in class:re2::Prefilter
201 static Info* And(Info* a, Info* b);
322 Prefilter::Info* Prefilter::Info::And(Info* a, Info* b) { function in class:re2::Prefilter::Info
330 ab->match_ = Prefilter::And(a->TakeMatch(), b->TakeMatch());
550 info = And(info, exact);
553 info = And(info, ci);
559 info = And(info, exact);
/external/llvm/include/llvm/MC/
H A DMCExpr.h313 And, ///< Bitwise and. enumerator in enum:llvm::MCBinaryExpr::Opcode
355 return Create(And, LHS, RHS, Ctx);
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp766 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask); local
768 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
778 InsertDAGNode(DAG, N, And);
782 AM.IndexReg = And;
1031 SDValue And = N.getOperand(0); local
1032 if (And.getOpcode() != ISD::AND) break;
1033 SDValue X = And.getOperand(0);
1043 !isa<ConstantSDNode>(And.getOperand(1)))
1045 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp575 llvm::Instruction::BinaryOps And, Or; local
578 And = llvm::Instruction::Or;
579 Or = llvm::Instruction::And;
582 And = llvm::Instruction::And;
630 EqZero = Builder.CreateBinOp(And, EqZero, OrAdjAnd1EqZero);
635 Result = Builder.CreateBinOp(And, PtrEq, Result,
H A DCGExprScalar.cpp462 HANDLEBINOP(And)
1009 // And that glvalue casts are never null.
2374 Value *And = Builder.CreateAnd(LHS, RHS); local
2375 return Builder.CreateSExt(And, Zero->getType(), "sext");
2824 COMPOUND_OP(And);
/external/clang/include/clang/Parse/
H A DParser.h70 And = 8, // & enumerator in enum:clang::prec::Level
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml165 | And Constructor in type:Opcode/t
/external/llvm/include/llvm/
H A DInstructions.h576 And, enumerator in enum:llvm::AtomicRMWInst::BinOp
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1968 SDValue And = DAG.getNode(ISD::AND, dl, CTVT, CTOp, Sub); local
1970 return DAG.getSetCC(dl, VT, And, DAG.getConstant(0, CTVT), CC);
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc181 And(scratch, object, Operand(ExternalReference::new_space_mask(isolate())));
213 And(t8, dst, Operand((1 << kPointerSizeLog2) - 1));
324 And(t8, scratch, Operand(StoreBuffer::kStoreBufferOverflowBit));
530 And(at, reg1, Operand(Smi::FromInt(PropertyDetails::TypeField::kMask)));
645 void MacroAssembler::And(Register rd, Register rs, const Operand& rt) { function in class:v8::internal::MacroAssembler
1313 And(scratch2, scratch, Operand(HeapNumber::kExponentMask));
1359 And(scratch2, scratch, Operand(0x80000000));
1439 And(except_flag, except_flag, Operand(except_mask));
1478 And(sign, input_high, Operand(HeapNumber::kSignMask));
1553 And(scratc
[all...]

Completed in 476 milliseconds

12