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

1 2 3 4

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain, getter=getPredicate, setter=setPredicate:) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) exceptionWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain, getter=getPredicate, setter=setPredicate:) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) exceptionWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain, getter=getPredicate, setter=setPredicate:) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) exceptionWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/v8/test/webkit/
array-every.js 37 var predicate = {
43 shouldBeFalse("[12, 5, 10, 130, 44].every(isBigEnough, predicate)");
44 shouldBeTrue("[12, 54, 18, 130, 44].every(isBigEnough, predicate)");
  /external/droiddriver/src/io/appium/droiddriver/finders/
MatchFinder.java 27 * {@link #predicate}.
30 protected final Predicate<? super UiElement> predicate; field in class:MatchFinder
32 public MatchFinder(Predicate<? super UiElement> predicate) {
33 if (predicate == null) {
34 this.predicate = Predicates.any();
36 this.predicate = predicate;
42 return predicate.toString()
    [all...]
  /external/mesa3d/src/glsl/
ir_expression_flattening.cpp 28 * assignments of the leaves to temporaries, according to a predicate.
42 ir_expression_flattening_visitor(bool (*predicate)(ir_instruction *ir))
44 this->predicate = predicate;
53 bool (*predicate)(ir_instruction *ir); member in class:ir_expression_flattening_visitor
58 bool (*predicate)(ir_instruction *ir))
60 ir_expression_flattening_visitor v(predicate);
76 if (!ir || !this->predicate(ir))
  /frameworks/base/core/java/com/android/internal/util/
Predicates.java 23 * {@code Predicate} objects.
31 * Returns a Predicate that evaluates to true iff each of its components
35 public static <T> Predicate<T> and(Predicate<? super T>... components) {
40 * Returns a Predicate that evaluates to true iff each of its components
44 * the behavior of this Predicate. If components is empty, the returned
45 * Predicate will always evaluate to true.
47 public static <T> Predicate<T> and(Iterable<? extends Predicate<? super T>> components) {
52 * Returns a Predicate that evaluates to true iff any one of its component
115 private final Predicate<? super T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 27 import com.google.common.base.Predicate;
240 * Returns a view of the elements of {@code unfiltered} that satisfy a predicate. The returned
246 * that doesn't satisfy the predicate, the multiset's {@code add()} and {@code addAll()} methods
258 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>, as documented at
259 * {@link Predicate#apply}. Do not provide a predicate such as
266 public static <E> Multiset<E> filter(Multiset<E> unfiltered, Predicate<? super E> predicate) {
271 Predicate<E> combinedPredicate
272 = Predicates.<E>and(filtered.predicate, predicate)
280 final Predicate<? super E> predicate; field in class:Multisets.FilteredMultiset
331 "Element %s does not match predicate %s", element, predicate); local
    [all...]
Collections2.java 31 import com.google.common.base.Predicate;
60 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
66 * doesn't satisfy the predicate, the collection's {@code add()} and {@code
78 * it may be faster to copy {@code Iterables.filter(unfiltered, predicate)}
81 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>,
82 * as documented at {@link Predicate#apply}. Do not provide a predicate such
90 Collection<E> unfiltered, Predicate<? super E> predicate) {
94 return ((FilteredCollection<E>) unfiltered).createCombined(predicate);
136 final Predicate<? super E> predicate; field in class:Collections2.FilteredCollection
    [all...]
FilteredEntryMultimap.java 26 import com.google.common.base.Predicate;
40 * Implementation of {@link Multimaps#filterEntries(Multimap, Predicate)}.
48 final Predicate<? super Entry<K, V>> predicate; field in class:FilteredEntryMultimap
50 FilteredEntryMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) {
52 this.predicate = checkNotNull(predicate);
61 public Predicate<? super Entry<K, V>> entryPredicate() {
62 return predicate;
    [all...]
  /bionic/tests/
math_data_test.h 142 FpUlpEq<ULP, RT> predicate; local
144 EXPECT_PRED_FORMAT2(predicate,
166 FpUlpEq<ULP, RT> predicate; local
168 EXPECT_PRED_FORMAT2(predicate,
245 FpUlpEq<ULP, RT> predicate; local
247 EXPECT_PRED_FORMAT2(predicate,
  /external/droiddriver/src/io/appium/droiddriver/scroll/
SentinelStrategy.java 27 import io.appium.droiddriver.finders.Predicate;
44 protected final Predicate<? super UiElement> predicate; field in class:SentinelStrategy.Getter
51 protected Getter(Predicate<? super UiElement> predicate) {
52 this.predicate = predicate;
62 UiElement sentinel = getSentinel(container.getChildren(predicate));
143 * Decorates a {@link Getter} by adding another {@link Predicate}.
148 public MorePredicateGetter(Getter original, Predicate<? super UiElement> extraPredicate)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Functions.java 239 * Creates a function that returns the same boolean output as the given predicate for all inputs.
242 * Function#apply}) if and only if {@code predicate} is itself consistent with equals.
244 public static <T> Function<T, Boolean> forPredicate(Predicate<T> predicate) {
245 return new PredicateFunction<T>(predicate);
250 private final Predicate<T> predicate; field in class:Functions.PredicateFunction
252 private PredicateFunction(Predicate<T> predicate) {
253 this.predicate = checkNotNull(predicate)
    [all...]
Predicates.java 35 * Static utility methods pertaining to {@code Predicate} instances.
42 * use of {@code Predicate}</a>.
55 * Returns a predicate that always evaluates to {@code true}.
58 public static <T> Predicate<T> alwaysTrue() {
63 * Returns a predicate that always evaluates to {@code false}.
66 public static <T> Predicate<T> alwaysFalse() {
71 * Returns a predicate that evaluates to {@code true} if the object reference
75 public static <T> Predicate<T> isNull() {
80 * Returns a predicate that evaluates to {@code true} if the object reference
84 public static <T> Predicate<T> notNull()
321 final Predicate<T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 260 def predicate?( description )
576 # A semantic predicate was evaluate with this result and action text
578 def semantic_predicate( result, predicate )
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 40 * an NFA configuration is valid. It's either a single predicate or
52 * I have scoped the AND, NOT, OR, and Predicate subclasses of
65 public static final SemanticContext EMPTY_SEMANTIC_CONTEXT = new Predicate(Predicate.INVALID_PRED_VALUE);
87 public static class Predicate extends SemanticContext {
88 /** The AST node in tree created from the grammar holding the predicate */
91 /** Is this a {...}?=> gating predicate or a normal disambiguating {..}?
92 * If any predicate in expression is gated, then expression is considered
95 * The simple Predicate object's predicate AST's type is used to se
309 CommutativePredicate predicate = (CommutativePredicate)a; local
316 CommutativePredicate predicate = (CommutativePredicate)b; local
328 CommutativePredicate predicate = (CommutativePredicate)context; local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 32 * Static utility methods pertaining to {@code Predicate} instances.
39 * use of {@code Predicate}</a>.
52 * Returns a predicate that always evaluates to {@code true}.
55 public static <T> Predicate<T> alwaysTrue() {
60 * Returns a predicate that always evaluates to {@code false}.
63 public static <T> Predicate<T> alwaysFalse() {
68 * Returns a predicate that evaluates to {@code true} if the object reference
72 public static <T> Predicate<T> isNull() {
77 * Returns a predicate that evaluates to {@code true} if the object reference
81 public static <T> Predicate<T> notNull()
258 final Predicate<T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 233 // needed in order to store the predicate value for these instructions.
242 unsigned short predicate; member in class:llvm::CompareConstantExpr
245 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 148 int predicate; /* Run this pass? */ member in struct:radeon_compiler_pass
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
PredicatesTest.java 44 private static final Predicate<Integer> TRUE = Predicates.alwaysTrue();
45 private static final Predicate<Integer> FALSE = Predicates.alwaysFalse();
46 private static final Predicate<Integer> NEVER_REACHED =
47 new Predicate<Integer>() {
51 "This predicate should never have been evaluated");
55 /** Instantiable predicate with reasonable hashCode() and equals() methods. */
56 static class IsOdd implements Predicate<Integer>, Serializable {
74 * Generates a new Predicate per call.
76 * <p>Creating a new Predicate each time helps catch cases where code is
116 * Tests for Predicates.not(predicate)
257 Predicate<Object> predicate = Predicates.and(array); local
265 Predicate<Object> predicate = Predicates.and(list); local
279 Predicate<Object> predicate = Predicates.and(iterable); local
394 Predicate<Object> predicate = Predicates.or(array); local
402 Predicate<Object> predicate = Predicates.or(list); local
416 Predicate<Object> predicate = Predicates.or(iterable); local
620 assertEvalsLike(isOdd(), predicate); local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.h 153 unsigned int predicate : 1; member in struct:nv50_ir::Target::OpInfo
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 656 * Compile a location step predicate expression.
660 * @return the contained predicate expression.
664 public Expression predicate(int opPos) throws TransformerException method in class:Compiler
941 * @param opPos The position of the first predicate the m_opMap array.
968 * @param opPos The position of the first predicate the m_opMap array.
992 * @param opPos The position of the first predicate the m_opMap array.
1004 predicates[i] = predicate(opPos);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
RangeTest.java 26 import com.google.common.base.Predicate;
517 Predicate<Integer> predicate = Range.closed(2, 3); local
518 assertFalse(predicate.apply(1));
519 assertTrue(predicate.apply(2));
520 assertTrue(predicate.apply(3));
521 assertFalse(predicate.apply(4));
  /external/lldb/source/Expression/
IRInterpreter.cpp 485 log->Printf("Unsupported ICmp predicate: %s", PrintValue(ii).c_str());
1010 CmpInst::Predicate predicate = icmp_inst->getPredicate(); local
    [all...]

Completed in 815 milliseconds

1 2 3 4