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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
predicate-bad-1.d 1 #name: C6X bad predicate syntax
2 #error-output: predicate-bad-1.l
predicate-bad-2.d 3 #error-output: predicate-bad-2.l
predicate-bad-3.d 3 #error-output: predicate-bad-3.l
  /external/mesa3d/src/glsl/
ir_expression_flattening.h 29 * assignments of the leaves to temporaries, according to a predicate.
38 bool (*predicate)(ir_instruction *ir));
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/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/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;
  /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...]
  /bionic/tools/relocation_packer/src/
debug.h 10 // LOG_IF(tag, predicate) logs if predicate evaluates to true, else silent.
15 // VLOG_IF(level, predicate) logs INFO if predicate evaluates to true,
18 // CHECK(predicate) logs a FATAL error if predicate is false.
37 // equal to the level set with SetVerbose() and predicate is true.
40 // |predicate| controls if the logger prints or is silent.
41 Logger(Severity severity, int level, bool predicate);
64 // Message severity, verbosity level, and predicate
    [all...]
  /external/sfntly/cpp/src/sample/subtly/
subsetter.h 25 // Subsets a given font using a character predicate.
28 Subsetter(sfntly::Font* font, CharacterPredicate* predicate);
29 Subsetter(const char* font_path, CharacterPredicate* predicate);
subsetter.cc 35 Subsetter::Subsetter(Font* font, CharacterPredicate* predicate)
37 predicate_(predicate) {
40 Subsetter::Subsetter(const char* font_path, CharacterPredicate* predicate)
41 : predicate_(predicate) {
  /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/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
list_pager.py 13 method='List', field='items', predicate=None,
30 predicate: lambda, A function that returns true for items to be yielded.
50 if predicate:
51 items = list(filter(predicate, items))
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-death-test.h 166 // integer exit status that satisfies predicate, and emitting error output
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
173 # define EXPECT_EXIT(statement, predicate, regex) \
174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
187 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /external/gtest/include/gtest/
gtest-death-test.h 166 // integer exit status that satisfies predicate, and emitting error output
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
173 # define EXPECT_EXIT(statement, predicate, regex) \
174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
187 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-death-test.h 155 // integer exit status that satisfies predicate, and emitting error output
157 # define ASSERT_EXIT(statement, predicate, regex) \
158 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
162 # define EXPECT_EXIT(statement, predicate, regex) \
163 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
176 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /external/mesa3d/src/gtest/include/gtest/
gtest-death-test.h 155 // integer exit status that satisfies predicate, and emitting error output
157 # define ASSERT_EXIT(statement, predicate, regex) \
158 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
162 # define EXPECT_EXIT(statement, predicate, regex) \
163 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
176 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /external/protobuf/gtest/include/gtest/
gtest-death-test.h 155 // integer exit status that satisfies predicate, and emitting error output
157 #define ASSERT_EXIT(statement, predicate, regex) \
158 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
162 #define EXPECT_EXIT(statement, predicate, regex) \
163 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
176 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-death-test.h 166 // integer exit status that satisfies predicate, and emitting error output
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
173 # define EXPECT_EXIT(statement, predicate, regex) \
174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
187 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest-death-test.h 166 // integer exit status that satisfies predicate, and emitting error output
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
173 # define EXPECT_EXIT(statement, predicate, regex) \
174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
187 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /external/guava/guava/src/com/google/common/collect/
Platform.java 21 import com.google.common.base.Predicate;
87 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);
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/etree/
ElementPath.py 151 predicate = []
159 predicate.append(token[1])
161 # use signature to determine predicate type
163 # [@attribute] predicate
164 key = predicate[1]
172 key = predicate[1]
173 value = predicate[-1]
179 if signature == "-" and not re.match("\d+$", predicate[0]):
181 tag = predicate[0]
187 if signature == "-='" and not re.match("\d+$", predicate[0])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/etree/
ElementPath.py 151 predicate = []
159 predicate.append(token[1])
161 # use signature to determine predicate type
163 # [@attribute] predicate
164 key = predicate[1]
172 key = predicate[1]
173 value = predicate[-1]
179 if signature == "-" and not re.match("\d+$", predicate[0]):
181 tag = predicate[0]
187 if signature == "-='" and not re.match("\d+$", predicate[0])
    [all...]

Completed in 689 milliseconds

1 2 3 4 5 6 7 8 91011>>