Home
last modified time | relevance | path

Searched defs:predicate (Results 1 – 25 of 308) sorted by relevance

12345678910>>...13

/external/pthreadpool/src/
Dthreadpool-common.h56 #define PTHREADPOOL_STATIC_ASSERT(predicate, message) _Static_assert((predicate), message) argument
58 #define PTHREADPOOL_STATIC_ASSERT(predicate, message) argument
62 #define PTHREADPOOL_STATIC_ASSERT(predicate, message) _Static_assert((predicate), message) argument
64 #define PTHREADPOOL_STATIC_ASSERT(predicate, message) argument
/external/mesa3d/src/intel/tools/
Di965_asm.h61 struct predicate { struct
62 unsigned pred_control:4;
63 unsigned pred_inv:1;
64 unsigned flag_reg_nr:1;
65 unsigned flag_subreg_nr:1;
/external/guava/guava-tests/test/com/google/common/base/
DPredicatesTest.java307 Predicate<Object> predicate = Predicates.and(array); in testAnd_arrayDefensivelyCopied() local
315 Predicate<Object> predicate = Predicates.and(list); in testAnd_listDefensivelyCopied() local
330 Predicate<Object> predicate = Predicates.and(iterable); in testAnd_iterableDefensivelyCopied() local
471 Predicate<Object> predicate = Predicates.or(array); in testOr_arrayDefensivelyCopied() local
479 Predicate<Object> predicate = Predicates.or(list); in testOr_listDefensivelyCopied() local
494 Predicate<Object> predicate = Predicates.or(iterable); in testOr_iterableDefensivelyCopied() local
635 Predicate<Class<?>> predicate = Predicates.subtypeOf(Integer.class); in testSubtypeOf_serialization() local
911 private static void assertEvalsToTrue(Predicate<? super Integer> predicate) { in assertEvalsToTrue()
917 private static void assertEvalsToFalse(Predicate<? super Integer> predicate) { in assertEvalsToFalse()
923 private static void assertEvalsLikeOdd(Predicate<? super Integer> predicate) { in assertEvalsLikeOdd()
[all …]
/external/guava/android/guava-tests/test/com/google/common/base/
DPredicatesTest.java307 Predicate<Object> predicate = Predicates.and(array); in testAnd_arrayDefensivelyCopied() local
315 Predicate<Object> predicate = Predicates.and(list); in testAnd_listDefensivelyCopied() local
330 Predicate<Object> predicate = Predicates.and(iterable); in testAnd_iterableDefensivelyCopied() local
471 Predicate<Object> predicate = Predicates.or(array); in testOr_arrayDefensivelyCopied() local
479 Predicate<Object> predicate = Predicates.or(list); in testOr_listDefensivelyCopied() local
494 Predicate<Object> predicate = Predicates.or(iterable); in testOr_iterableDefensivelyCopied() local
635 Predicate<Class<?>> predicate = Predicates.subtypeOf(Integer.class); in testSubtypeOf_serialization() local
911 private static void assertEvalsToTrue(Predicate<? super Integer> predicate) { in assertEvalsToTrue()
917 private static void assertEvalsToFalse(Predicate<? super Integer> predicate) { in assertEvalsToFalse()
923 private static void assertEvalsLikeOdd(Predicate<? super Integer> predicate) { in assertEvalsLikeOdd()
[all …]
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dtake_while_ops.py30 def __init__(self, input_dataset, predicate): argument
56 def take_while(predicate): argument
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Diterator.h185 Predicate predicate) in FilterIterator()
194 FilterIterator(const SubIterator& end, Predicate predicate) in FilterIterator()
243 const IteratorRange<SubIterator>& sub_iterator_range, Predicate predicate) { in MakeFilterIterator()
249 const SubIterator& begin, const SubIterator& end, Predicate predicate) { in MakeFilterIterator()
255 const SubIterator& begin, const SubIterator& end, Predicate predicate) { in MakeFilterIteratorRange()
/external/deqp-deps/SPIRV-Tools/source/opt/
Diterator.h193 Predicate predicate) in FilterIterator()
202 FilterIterator(const SubIterator& end, Predicate predicate) in FilterIterator()
251 const IteratorRange<SubIterator>& sub_iterator_range, Predicate predicate) { in MakeFilterIterator()
257 const SubIterator& begin, const SubIterator& end, Predicate predicate) { in MakeFilterIterator()
263 const SubIterator& begin, const SubIterator& end, Predicate predicate) { in MakeFilterIteratorRange()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Diterator.h193 Predicate predicate) in FilterIterator()
202 FilterIterator(const SubIterator& end, Predicate predicate) in FilterIterator()
251 const IteratorRange<SubIterator>& sub_iterator_range, Predicate predicate) { in MakeFilterIterator()
257 const SubIterator& begin, const SubIterator& end, Predicate predicate) { in MakeFilterIterator()
263 const SubIterator& begin, const SubIterator& end, Predicate predicate) { in MakeFilterIteratorRange()
/external/sfntly/cpp/src/sample/subtly/
Dsubsetter.cc35 Subsetter::Subsetter(Font* font, CharacterPredicate* predicate) in Subsetter()
40 Subsetter::Subsetter(const char* font_path, CharacterPredicate* predicate) in Subsetter()
/external/guava/android/guava-tests/test/com/google/common/collect/
DFilteredCollectionsTest.java71 abstract C filter(C elements, Predicate<? super Integer> predicate); in filter()
387 Iterable<Integer> filter(Iterable<Integer> elements, Predicate<? super Integer> predicate) { in filter()
400 Collection<Integer> filter(Collection<Integer> elements, Predicate<? super Integer> predicate) { in filter()
412 Set<Integer> filter(Set<Integer> elements, Predicate<? super Integer> predicate) { in filter()
432 SortedSet<Integer> filter(SortedSet<Integer> elements, Predicate<? super Integer> predicate) { in filter()
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
Dmap_and_filter_fusion_test.py79 def _testDataset(self, dataset, function, predicate): argument
94 def testMapAndFilterFusion(self, function, predicate): argument
111 def predicate(y): function
/external/guava/android/guava/src/com/google/common/collect/
DIterables.java177 public static <T> boolean removeIf(Iterable<T> removeFrom, Predicate<? super T> predicate) { in removeIf()
185 List<T> list, Predicate<? super T> predicate) { in removeIfFromRandomAccessList()
217 List<T> list, Predicate<? super T> predicate, int to, int from) { in slowRemoveIfForRemainingElements()
241 static <T> T removeFirstMatching(Iterable<T> removeFrom, Predicate<? super T> predicate) { in removeFirstMatching()
DFilteredEntryMultimap.java47 final Predicate<? super Entry<K, V>> predicate; field in FilteredEntryMultimap
49 FilteredEntryMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) { in FilteredEntryMultimap()
87 Collection<E> collection, Predicate<? super E> predicate) { in filterCollection()
147 boolean removeEntriesIf(Predicate<? super Entry<K, Collection<V>>> predicate) { in removeEntriesIf()
393 private boolean removeEntriesIf(final Predicate<? super Multiset.Entry<K>> predicate) { in entrySet()
DMultisets.java269 public static <E> Multiset<E> filter(Multiset<E> unfiltered, Predicate<? super E> predicate) { in filter()
282 final Predicate<? super E> predicate; field in Multisets.FilteredMultiset
284 FilteredMultiset(Multiset<E> unfiltered, Predicate<? super E> predicate) { in FilteredMultiset()
335 predicate.apply(element), "Element %s does not match predicate %s", element, predicate); in add() local
/external/guava/guava/src/com/google/common/collect/
DFilteredEntryMultimap.java47 final Predicate<? super Entry<K, V>> predicate; field in FilteredEntryMultimap
49 FilteredEntryMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) { in FilteredEntryMultimap()
87 Collection<E> collection, Predicate<? super E> predicate) { in filterCollection()
147 boolean removeEntriesIf(Predicate<? super Entry<K, Collection<V>>> predicate) { in removeEntriesIf()
393 private boolean removeEntriesIf(final Predicate<? super Multiset.Entry<K>> predicate) { in entrySet()
/external/guava/guava-tests/test/com/google/common/collect/
DFilteredCollectionsTest.java72 abstract C filter(C elements, Predicate<? super Integer> predicate); in filter()
402 Iterable<Integer> filter(Iterable<Integer> elements, Predicate<? super Integer> predicate) { in filter()
415 Collection<Integer> filter(Collection<Integer> elements, Predicate<? super Integer> predicate) { in filter()
427 Set<Integer> filter(Set<Integer> elements, Predicate<? super Integer> predicate) { in filter()
447 SortedSet<Integer> filter(SortedSet<Integer> elements, Predicate<? super Integer> predicate) { in filter()
/external/rust/crates/peeking_take_while/src/
Dlib.rs70 predicate: P, field
81 let predicate = &mut self.predicate; in next() localVariable
/external/tensorflow/tensorflow/python/module/
Dmodule.py219 predicate=None, argument
275 predicate = lambda _: True function
349 predicate, argument
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/
DPredicateTree.cpp263 static bool isSamePredicate(MatcherNode *node, OrderedPredicate *predicate) { in isSamePredicate()
271 OrderedPredicate *predicate, in getOrCreateChild()
373 for (auto &predicate : patternAndPredList.second) { in generateMatcherTree() local
385 for (auto &predicate : patternAndPredList.second) { in generateMatcherTree() local
400 for (auto *predicate : list.predicates) in generateMatcherTree() local
402 for (auto *predicate : list.predicates) in generateMatcherTree() local
/external/mesa3d/src/panfrost/midgard/
Dmidgard_schedule.c618 struct midgard_predicate *predicate) in mir_choose_instruction()
753 struct midgard_predicate predicate = { in mir_choose_bundle() local
773 struct midgard_predicate *predicate, in mir_choose_alu()
807 struct midgard_predicate *predicate, in mir_comparison_mobile()
862 struct midgard_predicate *predicate, in mir_schedule_comparison()
893 struct midgard_predicate *predicate, in mir_schedule_condition()
953 struct midgard_predicate predicate = { in mir_schedule_texture() local
982 struct midgard_predicate predicate = { in mir_schedule_ldst() local
1014 struct midgard_predicate *predicate, in mir_schedule_zs_write()
1090 struct midgard_predicate predicate = { in mir_schedule_alu() local
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/
DCompileWithEclipseTest.java87 private void compileWithEclipse(String version, Predicate<File> predicate) throws IOException { in compileWithEclipse()
129 private static ImmutableSet<File> filesUnderDirectory(File dir, Predicate<File> predicate) in filesUnderDirectory()
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/
Dreport.py378 def predicate(bug): function
398 def predicate(bug): function
413 def predicate(crash): function
/external/rust/crates/rayon/src/iter/
Dpositions.rs17 predicate: P, field
59 predicate: &'p P, field
106 predicate: &'p P, field
/external/antlr/runtime/ObjC/Framework/
DFailedPredicateException.h33 NSString *predicate; variable
/external/llvm-project/mlir/test/lib/Dialect/SPIRV/
DTestAvailability.cpp179 Value predicate = op->getOperand(0); in matchAndRewrite() local
193 Value predicate = op->getOperand(0); in matchAndRewrite() local
219 Value predicate = op->getOperand(0); in matchAndRewrite() local

12345678910>>...13