Searched refs:Predicate (Results 76 - 100 of 179) sorted by relevance

12345678

/external/guava/guava/src/com/google/common/collect/
H A DRange.java24 import com.google.common.base.Predicate;
103 * <p>When evaluated as a {@link Predicate}, a range yields the same result as
113 implements Predicate<C>, Serializable {
210 * Predicate} interface. When using a reference of type {@code Range}, always
H A DStandardTable.java24 import com.google.common.base.Predicate;
541 boolean removePredicate(Predicate<? super Entry<R, V>> predicate) {
582 Predicate<Entry<R, V>> predicate = Predicates.alwaysTrue();
681 Predicate<Entry<R, V>> predicate = new Predicate<Entry<R, V>>() {
728 Predicate<Entry<R, V>> predicate = new Predicate<Entry<R, V>>() {
739 Predicate<Entry<R, V>> predicate = new Predicate<Entry<R, V>>() {
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h40 Predicate, enumerator in enum:llvm::MCOI::OperandFlags
82 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c285 * Predicate
288 if (inst->Instruction.Predicate) {
291 assert(inst->Predicate.Index < LP_MAX_TGSI_PREDS);
294 bld->preds[inst->Predicate.Index], "");
305 if (inst->Predicate.Negate) {
310 inst->Predicate.SwizzleX,
311 inst->Predicate.SwizzleY,
312 inst->Predicate.SwizzleZ,
313 inst->Predicate.SwizzleW);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.c189 if (inst->Instruction.Predicate) {
190 next_token(ctx, &inst->Predicate);
H A Dtgsi_text.c884 inst.Instruction.Predicate = 1;
889 inst.Predicate.Negate = 1;
897 inst.Predicate.SwizzleX = swizzle[0];
898 inst.Predicate.SwizzleY = swizzle[1];
899 inst.Predicate.SwizzleZ = swizzle[2];
900 inst.Predicate.SwizzleW = swizzle[3];
/external/v8/src/
H A Dunicode-inl.h35 template <class T, int s> bool Predicate<T, s>::get(uchar code_point) {
41 template <class T, int s> bool Predicate<T, s>::CalculateValue(
H A Dunicode.h50 class Predicate { class in namespace:unibrow
52 inline Predicate() { } function in class:unibrow::Predicate
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp79 static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
84 CmpInst::Predicate CPred = Cmp->getPredicate();
430 static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
555 static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
1686 static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1733 CmpInst::Predicate Pred,
1848 static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, argument
1850 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
2577 SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, const DataLayout *TD, const TargetLibraryInfo *TLI, const DominatorTree *DT) argument
2587 SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const Query &Q, unsigned MaxRecurse) argument
2674 SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const DataLayout *TD, const TargetLibraryInfo *TLI, const DominatorTree *DT) argument
2924 SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const Query &Q, unsigned MaxRecurse) argument
2931 SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const DataLayout *TD, const TargetLibraryInfo *TLI, const DominatorTree *DT) argument
[all...]
H A DConstantFolding.cpp1014 Constant *llvm::ConstantFoldCompareInstOperands(unsigned Predicate, argument
1034 return ConstantFoldCompareInstOperands(Predicate, C, Null, TD, TLI);
1043 return ConstantFoldCompareInstOperands(Predicate, C, Null, TD, TLI);
1058 return ConstantFoldCompareInstOperands(Predicate, C0, C1, TD, TLI);
1066 return ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0),
1073 if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) &&
1076 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), Ops1,
1079 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(1), Ops1,
1082 Predicate
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp115 CmpInst::Predicate Predicate,
123 uint32_t lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Pred,
181 CmpInst::Predicate Predicate = C->getPredicate(); local
184 Predicate = CmpInst::getSwappedPredicate(Predicate);
186 e.opcode = (C->getOpcode() << 8) | Predicate;
197 CmpInst::Predicate Predicate,
196 create_cmp_expression(unsigned Opcode, CmpInst::Predicate Predicate, Value *LHS, Value *RHS) argument
468 lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Predicate, Value *LHS, Value *RHS) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPath.cpp39 Filter::Filter(Expression* expr, const Vector<Predicate*>& predicates)
/external/guava/guava-tests/test/com/google/common/collect/
H A DIterablesTest.java32 import com.google.common.base.Predicate;
227 Predicate<String> predicate = Predicates.equalTo("pants");
238 Predicate<String> predicate = Predicates.equalTo("cool");
1051 new Predicate<String>() {
1059 new Predicate<String>() {
1078 new Predicate<Integer>() {
1086 new Predicate<Integer>() {
1098 new Predicate<String>() {
1106 new Predicate<String>() {
1269 private static final Predicate<CharSequenc
[all...]
H A DIteratorsTest.java32 import com.google.common.base.Predicate;
257 new Predicate<String>() {
273 final Predicate<Integer> isEven = new Predicate<Integer>() {
289 Predicate<String> predicate = Predicates.equalTo("pants");
300 Predicate<String> predicate = Predicates.equalTo("cool");
1405 new Predicate<String>() {
1414 new Predicate<String>() {
/external/guava/guava-testlib/src/com/google/common/testing/
H A DNullPointerTester.java22 import com.google.common.base.Predicate;
88 setDefault(Predicate.class, Predicates.alwaysTrue());
/external/guava/guava-tests/test/com/google/common/math/
H A DMathTesting.java32 import com.google.common.base.Predicate;
243 Iterables.filter(FINITE_DOUBLE_CANDIDATES, new Predicate<Double>() {
/external/llvm/include/llvm/Support/
H A DConstantFolder.h194 Constant *CreateICmp(CmpInst::Predicate P, Constant *LHS,
198 Constant *CreateFCmp(CmpInst::Predicate P, Constant *LHS,
H A DTargetFolder.h218 Constant *CreateICmp(CmpInst::Predicate P, Constant *LHS,
222 Constant *CreateFCmp(CmpInst::Predicate P, Constant *LHS,
H A DNoFolder.h253 Instruction *CreateICmp(CmpInst::Predicate P,
257 Instruction *CreateFCmp(CmpInst::Predicate P,
/external/llvm/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp92 switch ((PPC::Predicate)Code) {
138 switch ((PPC::Predicate)Code) {
/external/guava/guava-tests/test/com/google/common/base/
H A DFunctionsTest.java316 Predicate<? super Integer> h = Predicates.equalTo(42);
320 Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f);
321 Predicate<Float> p2 = Predicates.compose(h, Functions.compose(g, f));
/external/llvm/lib/IR/
H A DConstantFold.cpp1018 CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
1271 static FCmpInst::Predicate evaluateFCmpRelation(Constant *V1, Constant *V2) {
1300 FCmpInst::Predicate SwappedRelation = evaluateFCmpRelation(V2, V1);
1335 static ICmpInst::Predicate evaluateICmpRelation(Constant *V1, Constant *V2,
1348 ICmpInst::Predicate pred = ICmpInst::ICMP_EQ;
1366 ICmpInst::Predicate SwappedRelation =
1373 ICmpInst::Predicate SwappedRelation =
1399 ICmpInst::Predicate SwappedRelation =
1591 if (ICmpInst::isEquality(ICmpInst::Predicate(pre
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c884 inst.Instruction.Predicate = 1;
889 inst.Predicate.Negate = 1;
897 inst.Predicate.SwizzleX = swizzle[0];
898 inst.Predicate.SwizzleY = swizzle[1];
899 inst.Predicate.SwizzleZ = swizzle[2];
900 inst.Predicate.SwizzleW = swizzle[3];
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp806 Cond[0].setImm(PPC::InvertPredicate((PPC::Predicate)Cond[0].getImm()));
988 PPC::Predicate P1 = (PPC::Predicate) Pred1[0].getImm();
989 PPC::Predicate P2 = (PPC::Predicate) Pred2[0].getImm();
1263 SmallVector<std::pair<MachineOperand*, PPC::Predicate>, 4> PredsToUpdate;
1285 PPC::Predicate Pred = (PPC::Predicate) UseMI->getOperand(0).getImm();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h162 ICmpInst::Predicate Pred, Value *TheAdd);
164 ICmpInst::Predicate Cond, Instruction &I);

Completed in 1880 milliseconds

12345678