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

1 2 3 4 5 6 7 8 91011>>

  /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/clang/tools/scan-build-py/libscanbuild/
__init__.py 13 """ Predicate to detect duplicated entries.
21 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
report.py 409 def predicate(bug): function in function:create_counters
412 current_category = predicate.categories.get(bug_category, dict())
420 predicate.categories.update({bug_category: current_category})
421 predicate.total += 1
423 predicate.total = 0
424 predicate.categories = dict()
425 return predicate
429 def predicate(bug): function in function:prettify_bug
440 return predicate
444 def predicate(crash) function in function:prettify_crash
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
conditional_thunk.cc 47 // Copy the predicate value from device.
48 bool predicate; local
51 stream->ThenMemcpy(&predicate, predicate_address, sizeof(bool));
55 return InternalError("Failed to retrieve predicate value on stream %p: %s.",
60 // predicate.
61 if (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/compiler/glsl/
ir_expression_flattening.cpp 28 * assignments of the leaves to temporaries, according to a predicate.
40 ir_expression_flattening_visitor(bool (*predicate)(ir_instruction *ir))
42 this->predicate = predicate;
51 bool (*predicate)(ir_instruction *ir); member in class:ir_expression_flattening_visitor
56 bool (*predicate)(ir_instruction *ir))
58 ir_expression_flattening_visitor v(predicate);
72 if (!ir || !this->predicate(ir))
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestPredicates.java 22 import com.android.internal.util.Predicate;
30 static final Predicate<TestMethod> REJECT_INSTRUMENTATION =
33 static final Predicate<TestMethod> SELECT_SMOKE = hasAnnotation(Smoke.class);
35 static final Predicate<TestMethod> REJECT_SUPPRESSED = not(hasAnnotation(Suppress.class));
38 * Return a predicate that checks to see if a {@link TestMethod} has an instance of the supplied
41 public static Predicate<TestMethod> hasAnnotation(Class<? extends Annotation> annotationClass) {
45 private static class HasAnnotation implements Predicate<TestMethod> {
61 * Returns a Predicate that evaluates to true iff the given Predicate
64 public static <T> Predicate<T> not(Predicate<? super T> predicate)
69 private final Predicate<? super T> predicate; field in class:TestPredicates.NotPredicate
    [all...]
  /external/guice/core/test/com/google/inject/matcher/
MatcherTest.java 141 Matcher<Method> predicate = returns(only(String.class)); local
142 assertTrue(predicate.matches(
144 assertFalse(predicate.matches(
147 assertEqualsBothWays(predicate, returns(only(String.class)));
148 assertFalse(predicate.equals(returns(only(Integer.class))));
  /external/guice/jdk8-tests/test/com/google/inject/jdk8/
Java8LanguageFeatureBindingTest.java 36 import java.util.function.Predicate;
52 bind(new TypeLiteral<Predicate<Object>>() {}).toInstance(o -> o != null);
56 Predicate<Object> predicate = injector.getInstance(new Key<Predicate<Object>>() {}); local
57 assertTrue(predicate.test(new Object()));
58 assertFalse(predicate.test(null));
  /external/mesa3d/src/loader/
pci_id_driver_map.h 75 int (*predicate)(int fd); member in struct:__anon30384
  /frameworks/rs/tests/lldb/tests/harness/
test_base.py 91 def predicate(obj): function in function:TestBase.run
101 method for name, method in inspect.getmembers(self, predicate)
  /cts/hostsidetests/statsd/src/android/cts/statsd/metric/
DurationMetricsTests.java 25 import com.android.internal.os.StatsdConfigProto.Predicate;
59 // Add Predicate's.
64 Predicate predicate = Predicate.newBuilder() local
65 .setId(MetricsUtils.StringToId("Predicate"))
68 builder.addPredicate(predicate);
74 .setWhat(predicate.getId())
119 // Add Predicate's.
124 Predicate predicateA = Predicate.newBuilder(
    [all...]
GaugeMetricsTests.java 25 import com.android.internal.os.StatsdConfigProto.Predicate;
57 // Add Predicate's.
62 Predicate predicate = Predicate.newBuilder() local
63 .setId(MetricsUtils.StringToId("Predicate"))
66 builder.addPredicate(predicate);
75 .setCondition(predicate.getId())
  /external/python/cpython3/Lib/
textwrap.py 467 def indent(text, prefix, predicate=None):
470 If 'predicate' is provided, 'prefix' will only be added to the lines
471 where 'predicate(line)' is True. If 'predicate' is not provided,
475 if predicate is None:
476 def predicate(line): function in function:indent
481 yield (prefix + line if predicate(line) else line)
  /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...]
  /bionic/tests/
math_data_test.h 170 FpUlpEq<ULP, RT> predicate; local
172 EXPECT_PRED_FORMAT2(predicate,
216 FpUlpEq<ULP, RT> predicate; local
218 EXPECT_PRED_FORMAT2(predicate,
295 FpUlpEq<ULP, RT> predicate; local
297 EXPECT_PRED_FORMAT2(predicate,
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectGraphMeasurer.java 23 import com.google.common.base.Predicate;
164 * graph), and any object for which the user-provided predicate returns
168 * @param objectAcceptor a predicate that returns {@code true} for objects
173 public static Footprint measure(Object rootObject, Predicate<Object> objectAcceptor) {
174 Preconditions.checkNotNull(objectAcceptor, "predicate");
176 Predicate<Chain> completePredicate = Predicates.and(ImmutableList.of(
192 private final Predicate<Chain> predicate; field in class:ObjectGraphMeasurer.ObjectGraphVisitor
194 ObjectGraphVisitor(Predicate<Chain> predicate) {
    [all...]
  /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...]
  /external/mesa3d/src/amd/common/
ac_debug.c 148 const char *predicate = PKT3_PREDICATE(ib[0]) ? "(predicate)" : ""; local
164 name, predicate);
167 name, predicate);
170 op, predicate);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0/
kotlin-stdlib-1.0.0.jar 

Completed in 977 milliseconds

1 2 3 4 5 6 7 8 91011>>