Home
last modified time | relevance | path

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

12345678910>>...78

/aosp_15_r20/platform_testing/libraries/flicker/test/src/android/tools/flicker/legacy/
H A DLegacyFlickerTestTest.kt60 val predicate: (FlickerTest) -> Unit = { it.assertLayers { executionCount++ } } in executesLayers() constant
71 val predicate: (FlickerTest) -> Unit = { it.assertLayersStart { executionCount++ } } in executesLayerStart() constant
82 val predicate: (FlickerTest) -> Unit = { it.assertLayersEnd { executionCount++ } } in executesLayerEnd() constant
93 val predicate: (FlickerTest) -> Unit = { it.assertLayers { executionCount++ } } in doesNotExecuteLayersWithoutTrace() constant
99 val predicate: (FlickerTest) -> Unit = { it.assertLayersStart { executionCount++ } } in doesNotExecuteLayersStartWithoutTrace() constant
105 val predicate: (FlickerTest) -> Unit = { it.assertLayersEnd { executionCount++ } } in doesNotExecuteLayersEndWithoutTrace() constant
111 val predicate: (FlickerTest) -> Unit = { it.assertLayersTag("tag") { executionCount++ } } in doesNotExecuteLayerTagWithoutTag() constant
117 val predicate: (FlickerTest) -> Unit = { it.assertWm { executionCount++ } } in executesWm() constant
129 val predicate: (FlickerTest) -> Unit = { it.assertWmStart { executionCount++ } } in executesWmStart() constant
141 val predicate: (FlickerTest) -> Unit = { it.assertWmEnd { executionCount++ } } in executesWmEnd() constant
[all …]
/aosp_15_r20/development/tools/winscope/src/viewers/common/
H A Dtext_filter_test.ts22 const predicate = new TextFilter().getFilterPredicate(); constant
34 const predicate = new TextFilter('foo').getFilterPredicate(); constant
50 const predicate = new TextFilter('Foo', [ constant
59 const predicate = new TextFilter('Foo', [ constant
72 const predicate = new TextFilter('foo|bar', [ constant
92 const predicate = new TextFilter('foo', [ constant
102 const predicate = new TextFilter('foo|bar', [ constant
112 const predicate = new TextFilter('foo|bar', [ constant
124 const predicate = new TextFilter('foo|bar', [ constant
/aosp_15_r20/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/util/
DItemInfoMatcherTest.kt46 val predicate = ItemInfoMatcher.ofUser(UserHandle(11)) in ofUser returns Predicate for ItemInfo containing given UserHandle() constant
74 val predicate = in ofComponents returns Predicate for ItemInfo containing target Component and UserHandle() constant
106 val predicate = ItemInfoMatcher.ofPackages(setOf(expectedPackage), expectedUserHandle) in ofPackages returns Predicate for ItemInfo containing UserHandle and target package() constant
138 val predicate = ItemInfoMatcher.ofShortcutKeys(setOf(expectedShortcutKey)) in ofShortcutKeys returns Predicate for Deep Shortcut Info containing given ShortcutKey() constant
167 val predicate = ItemInfoMatcher.forFolderMatch(ofShortcutKeys(setOf(expectedShortcutKey))) in forFolderMatch returns Predicate to match against children within Folder ItemInfo() constant
187 val predicate = ItemInfoMatcher.ofItemIds(expectedIds) in ofItemIds returns Predicate to match ItemInfo that contains given ids() constant
207 val predicate = ItemInfoMatcher.ofItems(expectedItems) in ofItems returns Predicate matching against provided ItemInfo() constant
/aosp_15_r20/frameworks/base/apct-tests/perftests/core/src/android/util/
H A DArraySetPerfTest.java128 Predicate<Integer> predicate = (i) -> i % 2 == 0; in testRemoveIf_Small_Base() local
142 Predicate<Integer> predicate = (i) -> false; in testRemoveIf_Small_RemoveNothing() local
157 Predicate<Integer> predicate = (i) -> true; in testRemoveIf_Small_RemoveAll() local
172 Predicate<Integer> predicate = (i) -> i % 2 == 0; in testRemoveIf_Small_RemoveHalf() local
191 Predicate<Integer> predicate = (i) -> i % 2 == 0; in testRemoveIf_Large_Base() local
205 Predicate<Integer> predicate = (i) -> false; in testRemoveIf_Large_RemoveNothing() local
220 Predicate<Integer> predicate = (i) -> true; in testRemoveIf_Large_RemoveAll() local
235 Predicate<Integer> predicate = (i) -> i % 2 == 0; in testRemoveIf_Large_RemoveHalf() local
/aosp_15_r20/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
H A DDefaultMethodStreams.java187 public Stream<T> filter(Predicate<? super T> predicate) { in filter()
322 public boolean anyMatch(Predicate<? super T> predicate) { in anyMatch()
327 public boolean allMatch(Predicate<? super T> predicate) { in allMatch()
332 public boolean noneMatch(Predicate<? super T> predicate) { in noneMatch()
398 public IntStream filter(IntPredicate predicate) { in filter()
513 public boolean anyMatch(IntPredicate predicate) { in anyMatch()
518 public boolean allMatch(IntPredicate predicate) { in allMatch()
523 public boolean noneMatch(IntPredicate predicate) { in noneMatch()
609 public LongStream filter(LongPredicate predicate) { in filter()
719 public boolean anyMatch(LongPredicate predicate) { in anyMatch()
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/base/
H A DPredicatesTest.java306 Predicate<Object> predicate = Predicates.and(array); in testAnd_arrayDefensivelyCopied() local
314 Predicate<Object> predicate = Predicates.and(list); in testAnd_listDefensivelyCopied() local
329 Predicate<Object> predicate = Predicates.and(iterable); in testAnd_iterableDefensivelyCopied() local
463 Predicate<Object> predicate = Predicates.or(array); in testOr_arrayDefensivelyCopied() local
471 Predicate<Object> predicate = Predicates.or(list); in testOr_listDefensivelyCopied() local
486 Predicate<Object> predicate = Predicates.or(iterable); in testOr_iterableDefensivelyCopied() local
633 Predicate<Class<?>> predicate = Predicates.subtypeOf(Integer.class); in testSubtypeOf_serialization() local
921 private static void assertEvalsToTrue(Predicate<? super @Nullable Integer> predicate) { in assertEvalsToTrue()
927 private static void assertEvalsToFalse(Predicate<? super @Nullable Integer> predicate) { in assertEvalsToFalse()
933 private static void assertEvalsLikeOdd(Predicate<? super @Nullable Integer> predicate) { in assertEvalsLikeOdd()
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/base/
H A DPredicatesTest.java306 Predicate<Object> predicate = Predicates.and(array); in testAnd_arrayDefensivelyCopied() local
314 Predicate<Object> predicate = Predicates.and(list); in testAnd_listDefensivelyCopied() local
329 Predicate<Object> predicate = Predicates.and(iterable); in testAnd_iterableDefensivelyCopied() local
463 Predicate<Object> predicate = Predicates.or(array); in testOr_arrayDefensivelyCopied() local
471 Predicate<Object> predicate = Predicates.or(list); in testOr_listDefensivelyCopied() local
486 Predicate<Object> predicate = Predicates.or(iterable); in testOr_iterableDefensivelyCopied() local
633 Predicate<Class<?>> predicate = Predicates.subtypeOf(Integer.class); in testSubtypeOf_serialization() local
921 private static void assertEvalsToTrue(Predicate<? super @Nullable Integer> predicate) { in assertEvalsToTrue()
927 private static void assertEvalsToFalse(Predicate<? super @Nullable Integer> predicate) { in assertEvalsToFalse()
933 private static void assertEvalsLikeOdd(Predicate<? super @Nullable Integer> predicate) { in assertEvalsLikeOdd()
[all …]
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
H A DThreadUtils.java260 public static Collection<ThreadGroup> findThreadGroups(final Predicate<ThreadGroup> predicate) { in findThreadGroups()
276 …ups(final ThreadGroup threadGroup, final boolean recurse, final Predicate<ThreadGroup> predicate) { in findThreadGroups()
303 …roups(final ThreadGroup threadGroup, final boolean recurse, final ThreadGroupPredicate predicate) { in findThreadGroups()
320 public static Collection<ThreadGroup> findThreadGroups(final ThreadGroupPredicate predicate) { in findThreadGroups()
353 public static Collection<Thread> findThreads(final Predicate<Thread> predicate) { in findThreads()
369 …dThreads(final ThreadGroup threadGroup, final boolean recurse, final Predicate<Thread> predicate) { in findThreads()
395 …indThreads(final ThreadGroup threadGroup, final boolean recurse, final ThreadPredicate predicate) { in findThreads()
413 public static Collection<Thread> findThreads(final ThreadPredicate predicate) { in findThreads()
/aosp_15_r20/external/aws-sdk-java-v2/utils/src/main/java/software/amazon/awssdk/utils/internal/
H A DDefaultConditionalDecorator.java26 private final Predicate<T> predicate; field in DefaultConditionalDecorator
39 public Predicate<T> predicate() { in predicate() method in DefaultConditionalDecorator
73 private Predicate<T> predicate; field in DefaultConditionalDecorator.Builder
76 public Builder<T> predicate(Predicate<T> predicate) { in predicate() method in DefaultConditionalDecorator.Builder
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/include/boost/archive/detail/
Dhelper_collection.hpp57 struct predicate { struct in boost::archive::detail::helper_collection
60 const void * const m_ti;
61 bool operator()(helper_value_type const &rhs) const { in operator ()()
64 predicate(const void * ti) : in predicate() function
/aosp_15_r20/frameworks/base/core/java/com/android/internal/util/
H A DCollectionUtils.java64 java.util.function.Predicate<? super T> predicate) { in filter()
79 java.util.function.Predicate<? super T> predicate) { in filter()
103 @Nullable Predicate<? super T> predicate) { in addIf()
258 java.util.function.Predicate<T> predicate) { in any()
267 java.util.function.Predicate<T> predicate) { in any()
276 java.util.function.Predicate<T> predicate) { in find()
290 java.util.function.Predicate<T> predicate) { in find()
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/permission/services.permission-pre-jarjar/android_common/kapt/gen/stubs/com/android/server/permission/access/collection/
DListExtensionsKt.java8 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in allIndexed()
14 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in anyIndexed()
30 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in noneIndexed()
36 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in removeAllIndexed()
42 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in retainAllIndexed()
DArraySetExtensionsKt.java16 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in allIndexed()
22 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in anyIndexed()
48 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in noneIndexed()
59 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in removeAllIndexed()
65 …otlin.jvm.functions.Function2<? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in retainAllIndexed()
DSparseArrayExtensionsKt.java10 …n3<? super java.lang.Integer, ? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in allIndexed()
16 …n3<? super java.lang.Integer, ? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in anyIndexed()
48 …n3<? super java.lang.Integer, ? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in noneIndexed()
54 …n3<? super java.lang.Integer, ? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in removeAllIndexed()
60 …n3<? super java.lang.Integer, ? super java.lang.Integer, ? super T, java.lang.Boolean> predicate) { in retainAllIndexed()
DLongSparseArrayExtensionsKt.java10 …tion3<? super java.lang.Integer, ? super java.lang.Long, ? super T, java.lang.Boolean> predicate) { in allIndexed()
16 …tion3<? super java.lang.Integer, ? super java.lang.Long, ? super T, java.lang.Boolean> predicate) { in anyIndexed()
48 …tion3<? super java.lang.Integer, ? super java.lang.Long, ? super T, java.lang.Boolean> predicate) { in noneIndexed()
54 …tion3<? super java.lang.Integer, ? super java.lang.Long, ? super T, java.lang.Boolean> predicate) { in removeAllIndexed()
60 …tion3<? super java.lang.Integer, ? super java.lang.Long, ? super T, java.lang.Boolean> predicate) { in retainAllIndexed()
DSparseBooleanArrayExtensionsKt.java10 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Boolean, java.lang.Boolean> predicate) { in allIndexed()
16 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Boolean, java.lang.Boolean> predicate) { in anyIndexed()
48 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Boolean, java.lang.Boolean> predicate) { in noneIndexed()
63 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Boolean, java.lang.Boolean> predicate) { in removeAllIndexed()
69 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Boolean, java.lang.Boolean> predicate) { in retainAllIndexed()
DSparseIntArrayExtensionsKt.java10 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Integer, java.lang.Boolean> predicate) { in allIndexed()
16 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Integer, java.lang.Boolean> predicate) { in anyIndexed()
48 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Integer, java.lang.Boolean> predicate) { in noneIndexed()
63 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Integer, java.lang.Boolean> predicate) { in removeAllIndexed()
69 …lang.Integer, ? super java.lang.Integer, ? super java.lang.Integer, java.lang.Boolean> predicate) { in retainAllIndexed()
DSparseLongArrayExtensionsKt.java10 …va.lang.Integer, ? super java.lang.Integer, ? super java.lang.Long, java.lang.Boolean> predicate) { in allIndexed()
16 …va.lang.Integer, ? super java.lang.Integer, ? super java.lang.Long, java.lang.Boolean> predicate) { in anyIndexed()
48 …va.lang.Integer, ? super java.lang.Integer, ? super java.lang.Long, java.lang.Boolean> predicate) { in noneIndexed()
63 …va.lang.Integer, ? super java.lang.Integer, ? super java.lang.Long, java.lang.Boolean> predicate) { in removeAllIndexed()
69 …va.lang.Integer, ? super java.lang.Integer, ? super java.lang.Long, java.lang.Boolean> predicate) { in retainAllIndexed()
DArrayMapExtensionsKt.java10 …unctions.Function3<? super java.lang.Integer, ? super K, ? super V, java.lang.Boolean> predicate) { in allIndexed()
16 …unctions.Function3<? super java.lang.Integer, ? super K, ? super V, java.lang.Boolean> predicate) { in anyIndexed()
48 …unctions.Function3<? super java.lang.Integer, ? super K, ? super V, java.lang.Boolean> predicate) { in noneIndexed()
54 …unctions.Function3<? super java.lang.Integer, ? super K, ? super V, java.lang.Boolean> predicate) { in removeAllIndexed()
60 …unctions.Function3<? super java.lang.Integer, ? super K, ? super V, java.lang.Boolean> predicate) { in retainAllIndexed()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/parameter/include/boost/parameter/aux_/preprocessor/impl/
Dfunction_cast.hpp295 #define BOOST_PARAMETER_FUNCTION_CAST_T(tag, predicate, args) \ argument
309 #define BOOST_PARAMETER_FUNCTION_CAST_T(tag, predicate, args) \ argument
325 #define BOOST_PARAMETER_FUNCTION_CAST_B(tag, predicate, args) \ argument
339 #define BOOST_PARAMETER_FUNCTION_CAST_B(tag, predicate, args) \ argument
476 #define BOOST_PARAMETER_FUNCTION_CAST_T(value_t, predicate, args) value_t argument
477 #define BOOST_PARAMETER_FUNCTION_CAST_B(value, predicate, args) value argument
711 #define BOOST_PARAMETER_FUNCTION_CAST_T(tag, predicate, args) \ argument
724 #define BOOST_PARAMETER_FUNCTION_CAST_B(value, predicate, args) \ argument
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/stream/
H A DDoubleStream.annotated.java31 public java.util.stream.DoubleStream filter(java.util.function.DoublePredicate predicate); in filter()
57 public default java.util.stream.DoubleStream takeWhile(java.util.function.DoublePredicate predicate in takeWhile()
60 public default java.util.stream.DoubleStream dropWhile(java.util.function.DoublePredicate predicate in dropWhile()
86 public boolean anyMatch(java.util.function.DoublePredicate predicate); in anyMatch()
88 public boolean allMatch(java.util.function.DoublePredicate predicate); in allMatch()
90 public boolean noneMatch(java.util.function.DoublePredicate predicate); in noneMatch()
H A DIntStream.annotated.java31 public java.util.stream.IntStream filter(java.util.function.IntPredicate predicate); in filter()
57 public default java.util.stream.IntStream takeWhile(java.util.function.IntPredicate predicate) { th… in takeWhile()
60 public default java.util.stream.IntStream dropWhile(java.util.function.IntPredicate predicate) { th… in dropWhile()
86 public boolean anyMatch(java.util.function.IntPredicate predicate); in anyMatch()
88 public boolean allMatch(java.util.function.IntPredicate predicate); in allMatch()
90 public boolean noneMatch(java.util.function.IntPredicate predicate); in noneMatch()
H A DLongStream.annotated.java31 public java.util.stream.LongStream filter(java.util.function.LongPredicate predicate); in filter()
57 public default java.util.stream.LongStream takeWhile(java.util.function.LongPredicate predicate) { … in takeWhile()
60 public default java.util.stream.LongStream dropWhile(java.util.function.LongPredicate predicate) { … in dropWhile()
86 public boolean anyMatch(java.util.function.LongPredicate predicate); in anyMatch()
88 public boolean allMatch(java.util.function.LongPredicate predicate); in allMatch()
90 public boolean noneMatch(java.util.function.LongPredicate predicate); in noneMatch()
/aosp_15_r20/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
H A DCtsWindowInfoUtils.java85 public static boolean waitForWindowInfos(@NonNull Predicate<List<WindowInfo>> predicate, in waitForWindowInfos()
143 public static boolean waitForWindowInfos(@NonNull Predicate<List<WindowInfo>> predicate, in waitForWindowInfos()
168 public static boolean waitForWindowInfo(@NonNull Predicate<WindowInfo> predicate, in waitForWindowInfo()
366 @NonNull Predicate<WindowInfo> predicate) in waitForWindowOnTop()
392 @NonNull Predicate<WindowInfo> predicate, in waitForNthWindowFromTop()
/aosp_15_r20/external/mesa3d/src/intel/compiler/elk/
H A Delk_asm.h60 struct predicate { struct
61 unsigned pred_control:4;
62 unsigned pred_inv:1;
63 unsigned flag_reg_nr:1;
64 unsigned flag_subreg_nr:1;

12345678910>>...78