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

1 2 3

  /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/chromium_org/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/chromium_org/third_party/mesa/src/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))
  /external/droiddriver/src/com/google/android/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/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 48 Step::Step(Axis axis, const NodeTest& nodeTest, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates)
71 // "foo[@bar]", we can check the predicate while enumerating.
73 // list sensitive, or to first predicate that is only context position
75 WillBeHeapVector<OwnPtrWillBeMember<Predicate> > remainingPredicates;
77 OwnPtrWillBeRawPtr<Predicate> predicate(m_predicates[i].release());
78 if ((!predicate->isContextPositionSensitive() || nodeTest().mergedPredicates().isEmpty()) && !predicate->isContextSizeSensitive() && remainingPredicates.isEmpty()) {
79 nodeTest().mergedPredicates().append(predicate.release());
81 remainingPredicates.append(predicate.release())
115 Predicate* predicate = m_predicates[i].get(); local
121 Predicate* predicate = nodeTest().mergedPredicates()[i].get(); local
138 Predicate* predicate = m_predicates[i].get(); local
247 Predicate* predicate = mergedPredicates[i].get(); local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
SortedMaps.java 32 import com.google.common.base.Predicate;
192 * keys satisfy a predicate. The returned map is a live view of {@code
198 * doesn't satisfy the predicate, the map's {@code put()} and {@code putAll()}
214 * equals</i>, as documented at {@link Predicate#apply}. Do not provide a
215 * predicate such as {@code Predicates.instanceOf(ArrayList.class)}, which is
220 SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) {
224 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>() {
235 * values satisfy a predicate. The returned map is a live view of {@code
241 * that doesn't satisfy the predicate, the map's {@code put()}, {@cod
322 Predicate<Entry<K, V>> predicate local
    [all...]
Collections2.java 25 import com.google.common.base.Predicate;
49 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
55 * doesn't satisfy the predicate, the collection's {@code add()} and {@code
67 * it may be faster to copy {@code Iterables.filter(unfiltered, predicate)}
70 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>,
71 * as documented at {@link Predicate#apply}. Do not provide a predicate such
79 Collection<E> unfiltered, Predicate<? super E> predicate) {
83 return ((FilteredCollection<E>) unfiltered).createCombined(predicate);
104 final Predicate<? super E> predicate; field in class:Collections2.FilteredCollection
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
SentinelStrategy.java 25 import com.google.android.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 228 * Creates a function that returns the same boolean output as the given predicate for all inputs.
231 * Function#apply}) if and only if {@code predicate} is itself consistent with equals.
233 public static <T> Function<T, Boolean> forPredicate(Predicate<T> predicate) {
234 return new PredicateFunction<T>(predicate);
239 private final Predicate<T> predicate; field in class:Functions.PredicateFunction
241 private PredicateFunction(Predicate<T> predicate) {
242 this.predicate = checkNotNull(predicate)
    [all...]
Predicates.java 35 * Static utility methods pertaining to {@code Predicate} instances.
51 * Returns a predicate that always evaluates to {@code true}.
54 public static <T> Predicate<T> alwaysTrue() {
59 * Returns a predicate that always evaluates to {@code false}.
62 public static <T> Predicate<T> alwaysFalse() {
67 * Returns a predicate that evaluates to {@code true} if the object reference
71 public static <T> Predicate<T> isNull() {
76 * Returns a predicate that evaluates to {@code true} if the object reference
80 public static <T> Predicate<T> notNull() {
85 * Returns a predicate that evaluates to {@code true} if the given predicat
301 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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 148 int predicate; /* Run this pass? */ member in struct:radeon_compiler_pass
  /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.
48 * Returns a predicate that always evaluates to {@code true}.
51 public static <T> Predicate<T> alwaysTrue() {
56 * Returns a predicate that always evaluates to {@code false}.
59 public static <T> Predicate<T> alwaysFalse() {
64 * Returns a predicate that evaluates to {@code true} if the object reference
68 public static <T> Predicate<T> isNull() {
73 * Returns a predicate that evaluates to {@code true} if the object reference
77 public static <T> Predicate<T> notNull() {
82 * Returns a predicate that evaluates to {@code true} if the given predicat
238 final Predicate<T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 148 int predicate; /* Run this pass? */ member in struct:radeon_compiler_pass
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target.h 153 unsigned int predicate : 1; member in struct:nv50_ir::Target::OpInfo
  /external/llvm/lib/IR/
ConstantsContext.h 237 // needed in order to store the predicate value for these instructions.
246 unsigned short predicate; member in class:llvm::CompareConstantExpr
249 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
457 // The compare instructions are weird. We have to encode the predicate
459 // the opcode by one hundred. We must decode this to get the predicate.
  /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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vec4.h 176 uint32_t predicate; member in class:brw::vec4_instruction
365 vec4_instruction *IF(uint32_t predicate);
381 void emit_bool_to_cond_code(ir_rvalue *ir, uint32_t *predicate);
386 const struct glsl_type *type, uint32_t predicate);

Completed in 660 milliseconds

1 2 3