Searched refs:Predicate (Results 101 - 125 of 216) sorted by relevance

123456789

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DClassPool.java35 import com.google.common.base.Predicate;
261 private static final Predicate<Field> HAS_INITIALIZER = new Predicate<Field>() {
356 private static final Predicate<MethodParameter> HAS_PARAMETER_ANNOTATIONS = new Predicate<MethodParameter>() {
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp79 static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
84 CmpInst::Predicate CPred = Cmp->getPredicate();
358 static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
483 static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
1637 static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1684 CmpInst::Predicate Pred,
1810 static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, argument
1812 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
2610 SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, const DataLayout *DL, const TargetLibraryInfo *TLI, const DominatorTree *DT) argument
2620 SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const Query &Q, unsigned MaxRecurse) argument
2707 SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const DataLayout *DL, const TargetLibraryInfo *TLI, const DominatorTree *DT) argument
2959 SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const Query &Q, unsigned MaxRecurse) argument
2966 SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, const DataLayout *DL, const TargetLibraryInfo *TLI, const DominatorTree *DT) argument
[all...]
H A DConstantFolding.cpp1108 Constant *llvm::ConstantFoldCompareInstOperands(unsigned Predicate, argument
1128 return ConstantFoldCompareInstOperands(Predicate, C, Null, TD, TLI);
1138 return ConstantFoldCompareInstOperands(Predicate, C, Null, TD, TLI);
1154 return ConstantFoldCompareInstOperands(Predicate, C0, C1, TD, TLI);
1163 return ConstantFoldCompareInstOperands(Predicate,
1175 if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) &&
1178 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), Ops1,
1181 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(1), Ops1,
1184 Predicate
[all...]
/external/guava/guava/src/com/google/common/collect/
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/lib/Transforms/Scalar/
H A DGVN.cpp117 CmpInst::Predicate Predicate,
125 uint32_t lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Pred,
183 CmpInst::Predicate Predicate = C->getPredicate(); local
186 Predicate = CmpInst::getSwappedPredicate(Predicate);
188 e.opcode = (C->getOpcode() << 8) | Predicate;
199 CmpInst::Predicate Predicate,
198 create_cmp_expression(unsigned Opcode, CmpInst::Predicate Predicate, Value *LHS, Value *RHS) argument
470 lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Predicate, Value *LHS, Value *RHS) argument
[all...]
/external/lldb/include/lldb/Core/
H A DInputReader.h19 #include "lldb/Host/Predicate.h"
263 Predicate<bool> m_reader_done;
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.h25 #include "lldb/Host/Predicate.h"
337 lldb_private::Predicate<bool> m_is_running;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DAbstractClassGenerator.java73 return namingPolicy.getClassName(namePrefix, source.name, key, new Predicate() {
/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/droiddriver/src/com/google/android/droiddriver/finders/
H A DByXPath.java128 Predicate<? super UiElement> predicate) {
137 Predicate<? super UiElement> predicate) {
/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/Analysis/
H A DTargetFolder.h218 Constant *CreateICmp(CmpInst::Predicate P, Constant *LHS,
222 Constant *CreateFCmp(CmpInst::Predicate P, Constant *LHS,
/external/llvm/include/llvm/IR/
H A DConstantFolder.h194 Constant *CreateICmp(CmpInst::Predicate P, Constant *LHS,
198 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.cpp112 switch ((PPC::Predicate)Code) {
161 switch ((PPC::Predicate)Code) {
/external/llvm/lib/IR/
H A DConstantFold.cpp1032 CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
1285 static FCmpInst::Predicate evaluateFCmpRelation(Constant *V1, Constant *V2) {
1314 FCmpInst::Predicate SwappedRelation = evaluateFCmpRelation(V2, V1);
1337 static ICmpInst::Predicate areGlobalsPotentiallyEqual(const GlobalValue *GV1,
1358 static ICmpInst::Predicate evaluateICmpRelation(Constant *V1, Constant *V2,
1371 ICmpInst::Predicate pred = ICmpInst::ICMP_EQ;
1389 ICmpInst::Predicate SwappedRelation =
1396 ICmpInst::Predicate SwappedRelation =
1419 ICmpInst::Predicate SwappedRelatio
[all...]
H A DInstructions.cpp3067 setPredicate((Predicate)predicate);
3080 setPredicate((Predicate)predicate);
3090 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3093 return new ICmpInst(CmpInst::Predicate(predicate),
3098 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3101 return new FCmpInst(CmpInst::Predicate(predicate),
3109 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3112 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3136 CmpInst::Predicate CmpInst::getInversePredicate(Predicate pre
[all...]
/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/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/mesa3d/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/utils/TableGen/
H A DDAGISelMatcher.cpp152 OS.indent(indent) << "CheckPatternPredicate " << Predicate << '\n';
291 return HashString(Predicate);
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlPolicyBuilder.java39 import com.google.common.base.Predicate;
676 final Predicate<? super String> filter) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp61 static unsigned getFCmpCode(FCmpInst::Predicate CC, bool &isOrdered) {
91 ICmpInst::Predicate NewPred;
103 CmpInst::Predicate Pred;
275 ICmpInst::Predicate pred = (isSigned ?
293 ICmpInst::Predicate pred = (isSigned ?
417 ICmpInst::Predicate SCC)
506 static bool decomposeBitTestICmp(const ICmpInst *I, ICmpInst::Predicate &Pred,
558 ICmpInst::Predicate &LHSCC,
559 ICmpInst::Predicate &RHSCC) {
671 ICmpInst::Predicate LHSC
[all...]

Completed in 670 milliseconds

123456789