Searched defs:predicate (Results 1 - 25 of 135) sorted by relevance

123456

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRFailedPredicateException.h33 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/
H A DANTLRFailedPredicateException.h33 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/
H A DANTLRFailedPredicateException.h33 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/
H A DANTLRFailedPredicateException.h33 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/clang/tools/scan-build-py/libscanbuild/
H A D__init__.py21 def predicate(entry): function in function:duplicate_check
22 entry_hash = predicate.unique(entry)
23 if entry_hash not in predicate.state:
24 predicate.state.add(entry_hash)
28 predicate.unique = method
29 predicate.state = set()
30 return predicate
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DMatchFinder.java27 * {@link #predicate}.
30 protected final Predicate<? super UiElement> predicate; field in class:MatchFinder
32 public MatchFinder(Predicate<? super UiElement> predicate) { argument
33 if (predicate == null) {
34 this.predicate = Predicates.any();
36 this.predicate = predicate;
42 return predicate.toString();
70 return predicate.apply(element);
H A DByXPath.java128 Predicate<? super UiElement> predicate) {
131 domNode = buildDomNode(uiElement, predicate);
137 Predicate<? super UiElement> predicate) {
170 if (!UiElement.VISIBLE.equals(predicate)) {
179 for (BaseUiElement<?, ?> child : uiElement.getChildren(predicate)) {
180 element.appendChild(getDomNode(child, predicate));
127 getDomNode(BaseUiElement<?, ?> uiElement, Predicate<? super UiElement> predicate) argument
136 buildDomNode(BaseUiElement<?, ?> uiElement, Predicate<? super UiElement> predicate) argument
H A DPredicates.java46 * Returns a predicate that always evaluates to {@code true}.
54 * Returns a predicate that is the negation of the provided {@code predicate}.
56 public static <T> Predicate<T> not(final Predicate<T> predicate) { argument
60 return !predicate.apply(input);
65 return "not(" + predicate + ")";
71 * Returns a predicate that evaluates to {@code true} if both arguments evaluate to {@code true}.
73 * false predicate is found.
99 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
101 * as soon as a false predicate i
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DFilteredEntrySetMultimap.java34 FilteredEntrySetMultimap(SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) { argument
35 super(unfiltered, predicate);
H A DPlatform.java87 Predicate<? super E> predicate) {
89 ? Sets.filter((NavigableSet<E>) set, predicate)
90 : Sets.filterSortedIgnoreNavigable(set, predicate);
94 Predicate<? super Map.Entry<K, V>> predicate) {
96 ? Maps.filterEntries((NavigableMap<K, V>) map, predicate)
97 : Maps.filterSortedIgnoreNavigable(map, predicate);
86 setsFilterSortedSet(SortedSet<E> set, Predicate<? super E> predicate) argument
93 mapsFilterSortedMap(SortedMap<K, V> map, Predicate<? super Map.Entry<K, V>> predicate) argument
H A DFilteredEntryMultimap.java48 final Predicate<? super Entry<K, V>> predicate; field in class:FilteredEntryMultimap
50 FilteredEntryMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) { argument
52 this.predicate = checkNotNull(predicate);
62 return predicate;
71 return predicate.apply(Maps.immutableEntry(key, value));
89 Collection<E> collection, Predicate<? super E> predicate) {
91 return Sets.filter((Set<E>) collection, predicate);
93 return Collections2.filter(collection, predicate);
126 return filterCollection(unfiltered.entries(), predicate);
88 filterCollection( Collection<E> collection, Predicate<? super E> predicate) argument
149 removeEntriesIf(Predicate<? super Entry<K, Collection<V>>> predicate) argument
[all...]
/external/mesa3d/src/glsl/
H A Dir_expression_flattening.cpp28 * 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/sfntly/cpp/src/sample/subtly/
H A Dsubsetter.cc35 Subsetter::Subsetter(Font* font, CharacterPredicate* predicate) argument
37 predicate_(predicate) {
40 Subsetter::Subsetter(const char* font_path, CharacterPredicate* predicate) argument
41 : predicate_(predicate) {
H A Dfont_info.cc121 CharacterPredicate* predicate)
124 predicate_(predicate) {
119 FontSourcedInfoBuilder(Font* font, FontId font_id, CharacterPredicate* predicate) argument
/external/guava/guava-testlib/src/com/google/common/testing/
H A DGcFinalization.java63 * <p>Here's an example that uses a user-defined finalization predicate:
198 * A predicate that is expected to return true subsequent to <em>finalization</em>, that is, one
213 * Waits until the given predicate returns true, invoking the garbage collector as necessary to
218 public static void awaitDone(FinalizationPredicate predicate) { argument
219 if (predicate.isDone()) {
226 if (predicate.isDone()) {
232 if (predicate.isDone()) {
/external/smali/util/src/main/java/org/jf/util/
H A DCollectionUtils.java51 public static <T> int lastIndexOf(@Nonnull Iterable<T> iterable, @Nonnull Predicate<? super T> predicate) { argument
55 if (predicate.apply(item)) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs80 public static void SourceAndPredicate (object source, object predicate) argument
84 if (predicate == null)
85 throw new ArgumentNullException ("predicate");
/external/caliper/caliper/src/main/java/com/google/caliper/memory/
H A DObjectGraphMeasurer.java164 * graph), and any object for which the user-provided predicate returns
168 * @param objectAcceptor a predicate that returns {@code true} for objects
174 Preconditions.checkNotNull(objectAcceptor, "predicate");
192 private final Predicate<Chain> predicate; field in class:ObjectGraphMeasurer.ObjectGraphVisitor
194 ObjectGraphVisitor(Predicate<Chain> predicate) { argument
195 this.predicate = predicate;
209 if (predicate.apply(chain) && chain.getValue() != null) {
/external/droiddriver/src/io/appium/droiddriver/
H A DUiElement.java163 * Gets an immutable {@link List} of immediate children that satisfy {@code predicate}. It always
179 List<? extends UiElement> getChildren(Predicate<? super UiElement> predicate); argument
/external/droiddriver/src/io/appium/droiddriver/scroll/
H A DSentinelStrategy.java44 protected final Predicate<? super UiElement> predicate; field in class:SentinelStrategy.Getter
51 protected Getter(Predicate<? super UiElement> predicate) { argument
52 this.predicate = predicate;
62 UiElement sentinel = getSentinel(container.getChildren(predicate));
149 super(Predicates.allOf(original.predicate, extraPredicate));
160 return predicate.toString() + " " + original;
/external/guava/guava/src/com/google/common/base/
H A DFunctions.java239 * 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) { argument
245 return new PredicateFunction<T>(predicate);
250 private final Predicate<T> predicate; field in class:Functions.PredicateFunction
252 private PredicateFunction(Predicate<T> predicate) { argument
253 this.predicate = checkNotNull(predicate);
258 return predicate.apply(t);
264 return predicate
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_pm4.c46 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate) argument
51 count, predicate);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DBlankDebugEventListener.cs93 public virtual void SemanticPredicate(bool result, string predicate) { argument
H A DDebugEventHub.cs205 public virtual void SemanticPredicate(bool result, string predicate) { argument
208 listener.SemanticPredicate(result, predicate);
H A DDebugEventRepeater.cs113 public virtual void SemanticPredicate(bool result, string predicate) { argument
114 _listener.SemanticPredicate(result, predicate);

Completed in 380 milliseconds

123456