/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
PredicatesTest.java | 39 assertTrue(Predicates.and(newArrayList(TRUE)).apply(null)); 40 assertTrue(Predicates.and(newArrayList(TRUE, TRUE)).apply(null)); 44 assertFalse(Predicates.and(newArrayList(FALSE, TRUE, TRUE)).apply(null)); 45 assertFalse(Predicates.and(newArrayList(TRUE, FALSE, TRUE)).apply(null)); 46 assertFalse(Predicates.and(newArrayList(TRUE, TRUE, FALSE)).apply(null)); 50 assertTrue(Predicates.or(newArrayList(TRUE, TRUE, TRUE)).apply(null)); 54 assertFalse(Predicates.or(newArrayList(FALSE, FALSE, FALSE)).apply(null)); 58 assertTrue(Predicates.or(newArrayList(TRUE, FALSE, FALSE)).apply(null)); 59 assertTrue(Predicates.or(newArrayList(FALSE, TRUE, FALSE)).apply(null)); 60 assertTrue(Predicates.or(newArrayList(FALSE, FALSE, TRUE)).apply(null)) [all...] |
/frameworks/base/test-runner/src/android/test/suitebuilder/ |
TestSuiteBuilder.java | 42 * and predicates that must be satisfied. 48 private final Set<Predicate<TestMethod>> predicates = new HashSet<Predicate<TestMethod>>(); field in class:TestSuiteBuilder 118 * Exclude tests that fail to satisfy all of the given predicates. 120 * @param predicates Predicates to add to the list of requirements. 123 public TestSuiteBuilder addRequirements(List<Predicate<TestMethod>> predicates) { 124 this.predicates.addAll(predicates); 213 * Exclude tests that fail to satisfy all of the given predicates. If you call this method, you 216 * @param predicates Predicates to add to the list of requirements [all...] |
TestPredicates.java | 27 import com.android.internal.util.Predicates; 37 Predicates.not(SELECT_INSTRUMENTATION); 44 Predicates.not(new HasAnnotation(Suppress.class));
|
/sdk/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyRunnerStarter.java | 19 import com.google.common.base.Predicates; 91 return Predicates.alwaysFalse(); 99 return Predicates.alwaysFalse(); 105 return Predicates.alwaysTrue(); 113 return Predicates.alwaysFalse(); 122 return Predicates.alwaysFalse(); 129 return Predicates.alwaysFalse(); 133 return Predicates.alwaysFalse(); 148 return Predicates.alwaysFalse();
|
/external/guava/src/com/google/common/base/ |
Predicates.java | 35 * <p>All methods returns serializable predicates as long as they're given 42 public final class Predicates { 43 private Predicates() {} 127 return new AndPredicate<T>(Predicates.<T>asList( 166 return new OrPredicate<T>(Predicates.<T>asList( 177 ? Predicates.<T>isNull() 203 * users since it is always possible to use {@code Predicates.<Object>in()}. 222 /** @see Predicates#alwaysTrue() */ 235 /** @see Predicates#alwaysFalse() */ 248 /** @see Predicates#not(Predicate) * [all...] |
Predicate.java | 39 * let predicates return null.
|
/external/llvm/lib/Target/PowerPC/ |
PPCPredicates.h | 10 // This file describes the PowerPC branch predicates. 21 /// Predicate - These are "(BI << 5) | BO" for various predicates.
|
PPCPredicates.cpp | 10 // This file implements the PowerPC branch predicates.
|
/frameworks/base/core/java/com/android/internal/util/ |
Predicates.java | 22 * Predicates contains static methods for creating the standard set of 25 public class Predicates { 27 private Predicates() {
|
/external/guava/javadoc/com/google/common/base/class-use/ |
Predicates.html | 7 Uses of Class com.google.common.base.Predicates (Guava Libraries 2010.01.04) 18 parent.document.title="Uses of Class com.google.common.base.Predicates (Guava Libraries 2010.01.04)"; 42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/base/Predicates.html" title="class in com.google.common.base"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 62 <A HREF="Predicates.html" target="_top"><B>NO FRAMES</B></A> 84 <B>Uses of Class<br>com.google.common.base.Predicates</B></H2> 86 No usage of com.google.common.base.Predicates 102 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/base/Predicates.html" title="class in com.google.common.base"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 122 <A HREF="Predicates.html" target="_top"><B>NO FRAMES</B></A>
|
Predicate.html | 145 <TD><CODE><B>Predicates.</B><B><A HREF="../../../../../com/google/common/base/Predicates.html#alwaysFalse()">alwaysFalse</A></B>()</CODE> 160 <TD><CODE><B>Predicates.</B><B><A HREF="../../../../../com/google/common/base/Predicates.html#alwaysTrue()">alwaysTrue</A></B>()</CODE> 175 <TD><CODE><B>Predicates.</B><B><A HREF="../../../../../com/google/common/base/Predicates.html#and(java.lang.Iterable)">and</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A><? extends <A HREF="../../../../../com/google/common/base/Predicate.html" title="interface in com.google.common.base">Predicate</A><? super T>> components)</CODE> 191 <TD><CODE><B>Predicates.</B><B><A HREF="../../../../../com/google/common/base/Predicates.html#and(com.google.common.base.Predicate...)">and</A></B>(<A HREF="../../../../../com/google/common/base/Predicate.html" title="interface in com.google.common.base">Predicate</A><? super T>... components)</CODE> 207 <TD><CODE><B>Predicates.</B><B><A HREF="../../../../../com/google/common/base/Predicates.html#and(com.google.common.base.Predicate, com.google.common.base.Predicate)">and</A></B>(<A HREF= (…) [all...] |
/external/webkit/Source/WebCore/xml/ |
XPathStep.h | 75 // When possible, we merge some or all predicates with node test for better performance. 79 Step(Axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates = Vector<Predicate*>());
|
XPathStep.cpp | 44 Step::Step(Axis axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates) 47 , m_predicates(predicates) 59 // Evaluate predicates as part of node test if possible to avoid building unnecessary NodeSets. 61 // This optimization can be applied to predicates that are not context node list sensitive, or to first predicate that is only context position sensitive, e.g. foo[position() mod 2 = 0]. 121 // Check predicates that couldn't be merged into node test. 155 // Evaluate NodeTest without considering merged predicates. 227 // No need to set context size - we only get here when evaluating predicates that do not depend on it. 235 // Result nodes are ordered in axis order. Node test (including merged predicates) is applied. 340 if (nodeMatches(n.get(), AttributeAxis, m_nodeTest)) // Still need to check merged predicates.
|
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
StepPattern.java | 207 // * @param predicates List of expression objects. 209 // public void setPredicates(Expression[] predicates) 211 // m_predicates = predicates; 233 * NOTE: Ancestors tests with predicates are problematic, and will require 266 * Get the number of predicates for this match pattern step. 269 * @return the number of predicates for this match pattern step. 277 * Set the predicates for this match pattern step. 280 * @param predicates An array of expressions that define predicates 283 public void setPredicates(Expression[] predicates) [all...] |
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/ |
HasAnnotation.java | 19 import static com.android.internal.util.Predicates.or;
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
PredicatedNodeTest.java | 112 * Get the number of predicates that this walker has. 114 * @return the number of predicates that this walker has. 125 * Set the number of predicates that this walker has. This does more 127 * size of the count argument, and copies count predicates into the new 128 * one from the old, and then reassigns the predicates value. All this 131 * @param count The number of predicates, which must be equal or less 312 * Process the predicates. 612 * of predicates the step contains.
|
/external/antlr/src/org/antlr/runtime/ |
CharStreamState.java | 30 /** When walking ahead with cyclic DFA or for syntactic predicates,
|
FailedPredicateException.java | 30 /** A semantic predicate failed during validation. Validation of predicates
|
/external/llvm/lib/Target/X86/ |
X86InstrCMovSetCC.td | 18 let Uses = [EFLAGS], Predicates = [HasCMov], Constraints = "$src1 = $dst", 37 let Uses = [EFLAGS], Predicates = [HasCMov], Constraints = "$src1 = $dst" in { 53 } // Uses = [EFLAGS], Predicates = [HasCMov], Constraints = "$src1 = $dst"
|
/frameworks/base/test-runner/src/android/test/ |
InstrumentationCoreTestRunner.java | 25 import com.android.internal.util.Predicates; 201 Predicates.not(new HasAnnotation(BrokenTest.class)); 205 Predicates.not(new HasAnnotation(SideEffect.class));
|
/external/guava/javadoc/com/google/common/base/ |
Predicates.html | 7 Predicates (Guava Libraries 2010.01.04) 18 parent.document.title="Predicates (Guava Libraries 2010.01.04)"; 43 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Predicates.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> 61 <A HREF="../../../../index.html?com/google/common/base/Predicates.html" target="_top"><B>FRAMES</B></A> 62 <A HREF="Predicates.html" target="_top"><B>NO FRAMES</B></A> 93 Class Predicates</H2> 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>com.google.common.base.Predicates</B> 100 <DT><PRE>public final class <B>Predicates</B><DT>extends <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></DL> 106 <p>All methods returns serializable predicates as long as they're given 139 <TD><CODE><B><A HREF="../../../../com/google/common/base/Predicates.html#alwaysFalse()">alwaysFalse</A></B>()</CODE [all...] |
/cts/tests/core/runner/src/android/test/ |
InstrumentationCtsTestRunner.java | 20 import com.android.internal.util.Predicates; 265 Predicates.not(new HasAnnotation(BrokenTest.class)); 270 Predicates.not(new HasAnnotation(SideEffect.class));
|
/external/llvm/lib/Target/ARM/ |
ARMInstrFormats.td | 292 list<Predicate> Predicates = [IsARM]; 300 list<Predicate> Predicates = [IsThumb]; 308 list<Predicate> Predicates = [IsThumb2]; 341 list<Predicate> Predicates = [IsARM]; 355 list<Predicate> Predicates = [IsARM]; 375 list<Predicate> Predicates = [IsARM]; 387 list<Predicate> Predicates = [IsARM]; 871 list<Predicate> Predicates = [IsARM]; 874 list<Predicate> Predicates = [IsARM, HasV5T]; 877 list<Predicate> Predicates = [IsARM, HasV5TE] [all...] |
/external/v8/src/ |
char-predicates-inl.h | 31 #include "char-predicates.h"
|
char-predicates.h | 34 // Unicode character predicates as defined by ECMA-262, 3rd,
|