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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/async_safe/include/async_safe/
CHECK.h 39 #define CHECK(predicate) \
41 if (!(predicate)) { \
42 async_safe_fatal("%s:%d: %s CHECK '" #predicate "' failed", \
  /external/mesa3d/src/compiler/glsl/
ir_expression_flattening.h 29 * assignments of the leaves to temporaries, according to a predicate.
41 bool (*predicate)(ir_instruction *ir));
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))
  /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/runtime/ObjC/Framework/
FailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain) NSString *predicate; variable
40 + (FailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<IntStream>)theStream;
41 - (FailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<IntStream>)theStream;
  /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/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
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_conditional_render.c 45 brw->predicate.state = BRW_PREDICATE_STATE_RENDER;
47 brw->predicate.state = BRW_PREDICATE_STATE_DONT_RENDER;
56 brw->predicate.state = BRW_PREDICATE_STATE_STALL_FOR_QUERY;
60 brw->predicate.state = BRW_PREDICATE_STATE_USE_BIT;
63 * command when loading the values into the predicate source registers for
77 if (!brw->predicate.supported) {
78 brw->predicate.state = BRW_PREDICATE_STATE_STALL_FOR_QUERY;
82 brw->predicate.state = BRW_PREDICATE_STATE_USE_BIT;
85 * command when loading the values into the predicate source registers for
114 if (brw->predicate.state == BRW_PREDICATE_STATE_USE_BIT)
    [all...]
  /external/tensorflow/tensorflow/python/data/experimental/ops/
take_while_ops.py 28 """A dataset that stops iteration when `predicate` returns false."""
30 def __init__(self, input_dataset, predicate):
35 predicate,
41 raise ValueError("`predicate` must return a scalar boolean tensor.")
47 predicate=self._predicate.function,
56 def take_while(predicate):
57 """A transformation that stops dataset iteration based on a `predicate`.
60 predicate: A function that maps a nested structure of tensors (having shapes
70 return _TakeWhileDataset(dataset, predicate)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
fset.c 446 /* MR11 */ Predicate *pred=p->ampersandPred;
512 verify_context(Predicate *predicate)
514 verify_context(predicate)
515 Predicate *predicate;
518 if ( predicate == NULL ) return;
520 if ( predicate->expr == PRED_OR_LIST ||
521 predicate->expr == PRED_AND_LIST )
523 verify_context(predicate->down);
    [all...]
  /external/python/apitools/apitools/base/py/
list_pager.py 28 method='List', field='items', predicate=None,
47 predicate: lambda, A function that returns true for items to be yielded.
69 if predicate:
70 items = list(filter(predicate, items))
  /external/tensorflow/tensorflow/python/module/
module.py 131 return tuple(self._flatten(predicate=_IS_VARIABLE))
146 return tuple(self._flatten(predicate=_IS_TRAINABLE_VARIABLE))
167 return tuple(self._flatten(predicate=_IS_MODULE))
171 predicate=None,
180 against the given `predicate` and finally yielded.
191 ... return tuple(self._flatten(predicate=is_tensor, with_path=True))
206 predicate: (Optional) If set then only values matching predicate are
221 if predicate is None:
222 predicate = lambda _: Tru
    [all...]
  /external/tensorflow/tensorflow/python/data/kernel_tests/
filter_test.py 28 def apply_filter(self, input_dataset, predicate):
29 return input_dataset.filter(predicate)
filter_with_legacy_function_test.py 28 def apply_filter(self, input_dataset, predicate):
29 return input_dataset.filter_with_legacy_function(predicate)
  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
map_and_filter_fusion_test.py 53 for y, predicate in enumerate(filters):
54 tests.append(("Mixed{}{}".format(x, y), fun, predicate))
68 def _testMapAndFilter(self, dataset, function, predicate):
73 b = predicate(*r) # Pass tuple as multiple arguments.
75 b = predicate(r)
81 def testMapFilterFusion(self, function, predicate):
84 ["Map", "FilterByLastComponent"])).map(function).filter(predicate)
89 self._testMapAndFilter(dataset, function, predicate)
97 def predicate(y): function in function:MapAndFilterFusionTest.testCapturedInputs
103 "Filter"])).map(function).filter(predicate)
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
MoreCollectors.java 20 import java.util.function.Predicate;
32 * predicate. For example,
38 * @param predicate a predicator to find a specific element.
41 * accepted by {@code predicate}.
43 static <E> Collector<E, ?, Stream<E>> endingAt(Predicate<E> predicate) {
52 if (predicate.test(element)) {
69 * predicate. For example,
75 * @param predicate a predicator to find a specific element.
78 * accepted by {@code predicate}
    [all...]
  /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/libaom/libaom/third_party/googletest/src/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/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 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/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/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/u-boot/arch/arm/include/asm/
ptrace.h 26 #define predicate(x) (x & 0xf0000000) macro
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
it-nv.s 4 @ CHECK-ERRS: error: unpredictable IT predicate sequence
6 @ CHECK-ERRS: error: unpredictable IT predicate sequence
8 @ CHECK-ERRS: error: unpredictable IT predicate sequence
10 @ CHECK-ERRS: error: unpredictable IT predicate sequence
12 @ CHECK-ERRS: error: unpredictable IT predicate sequence

Completed in 1023 milliseconds

1 2 3 4 5 6 7 8 91011>>