Home
last modified time | relevance | path

Searched defs:test (Results 126 – 150 of 16494) sorted by relevance

12345678910>>...660

/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/
H A Dtest_sock_addr.c644 static int load_insns(const struct sock_addr_test *test, in load_insns()
663 static int load_path(const struct sock_addr_test *test, const char *path) in load_path()
697 static int bind4_prog_load(const struct sock_addr_test *test) in bind4_prog_load()
702 static int bind6_prog_load(const struct sock_addr_test *test) in bind6_prog_load()
707 static int connect4_prog_load(const struct sock_addr_test *test) in connect4_prog_load()
712 static int connect6_prog_load(const struct sock_addr_test *test) in connect6_prog_load()
717 static int xmsg_ret_only_prog_load(const struct sock_addr_test *test, in xmsg_ret_only_prog_load()
728 static int sendmsg_allow_prog_load(const struct sock_addr_test *test) in sendmsg_allow_prog_load()
733 static int sendmsg_deny_prog_load(const struct sock_addr_test *test) in sendmsg_deny_prog_load()
738 static int recvmsg_allow_prog_load(const struct sock_addr_test *test) in recvmsg_allow_prog_load()
[all …]
/aosp_15_r20/platform_testing/libraries/flicker/test/src/android/tools/flicker/junit/
H A DLegacyFlickerJUnit4ClassRunnerTest.kt77 val test = TestWithParameters("[PARAMS]", testClass, listOf()) in <lambda>() constant
93 val test = TestWithParameters("[PARAMS]", testClass, listOf("invalid param")) in <lambda>() constant
110 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
119 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
131 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
153 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
170 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
188 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
207 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
235 val test = TestWithParameters("[PARAMS]", testClass, listOf(parameters[0])) in <lambda>() constant
[all …]
/aosp_15_r20/external/TestParameterInjector/junit4/src/test/java/com/google/testing/junit/testparameterinjector/
H A DTestParameterAnnotationMethodProcessorTest.java80 public void test() { in test() method in TestParameterAnnotationMethodProcessorTest.SingleAnnotationClass
103 public void test(@TestParameter TestEnum2 enumParameter3) { in test() method in TestParameterAnnotationMethodProcessorTest.MultipleAllEnumValuesAnnotationClass
132 public void test(TestEnum enumParameter) { in test() method in TestParameterAnnotationMethodProcessorTest.SingleParameterAnnotationClass
150 public void test( in test() method in TestParameterAnnotationMethodProcessorTest.SingleAnnotatedParameterAnnotationClass
169 public void test( in test() method in TestParameterAnnotationMethodProcessorTest.AnnotatedSuperclassParameter
188 public void test( in test() method in TestParameterAnnotationMethodProcessorTest.DuplicatedAnnotatedParameterAnnotationClass
211 public void test(@EnumParameter TestEnum enumParameter) {} in test() method in TestParameterAnnotationMethodProcessorTest.SingleAnnotatedParameterAnnotationClassWithMissingValue
307 public void test() { in test() method in TestParameterAnnotationMethodProcessorTest.DuplicateFieldAnnotationTestClass
332 public void test() { in test() method in TestParameterAnnotationMethodProcessorTest.DuplicateIdenticalFieldAnnotationTestClass
358 public void test() {} in test() method in TestParameterAnnotationMethodProcessorTest.ErrorDuplicateFieldAnnotationTestClass
[all …]
/aosp_15_r20/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/
H A Dctor_alloc.pass.cpp21 struct test struct
24 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; argument
26 explicit test(const test_allocator<int>& a) : base(a) {} in test() function
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() function
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() argument
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
H A Dctor_queue_alloc.pass.cpp33 struct test struct
37 typedef test_allocator<int> allocator_type; argument
40 explicit test(const allocator_type& a) : base(a) {} in test() argument
41 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() argument
42 test(const test& q, const allocator_type& a) : base(q, a) {} in test() function
48 test<int> q(make<C>(5), test_allocator<int>(4)); in main() argument
H A Dctor_container_alloc.pass.cpp34 struct test struct
39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() function
42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() argument
43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
/aosp_15_r20/external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/
H A Dctor_alloc.pass.cpp21 struct test struct
24 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; argument
26 explicit test(const test_allocator<int>& a) : base(a) {} in test() function
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() argument
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() function
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument
32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
H A Dctor_copy_alloc.pass.cpp33 struct test struct
37 typedef test_allocator<int> allocator_type; argument
40 explicit test(const allocator_type& a) : base(a) {} in test() argument
41 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() function
42 test(const test& q, const allocator_type& a) : base(q, a) {} in test() function
48 test<int> q(make<C>(5), test_allocator<int>(4)); in main() argument
H A Dctor_container_alloc.pass.cpp34 struct test struct
39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() argument
42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() function
43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument
45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
/aosp_15_r20/external/rust/android-crates-io/crates/etherparse/src/
Dsliced_packet.rs353 mod test { module
662 let test = TestPacket { in from_x_slice() localVariable
698 let test = TestPacket { in from_x_slice() localVariable
737 let mut test = base.clone(); in from_x_slice_vlan_variants() localVariable
784 let mut test = base.clone(); in from_x_slice_vlan_variants() localVariable
829 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
922 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
942 let mut test = test.clone(); in from_x_slice_ip_variants() localVariable
994 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
1071 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
[all …]
Dlax_sliced_packet.rs275 mod test { module
532 let test = TestPacket { in from_x_slice() localVariable
583 let mut test = base.clone(); in from_x_slice_vlan_variants() localVariable
632 let mut test = base.clone(); in from_x_slice_vlan_variants() localVariable
679 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
764 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
784 let mut test = test.clone(); in from_x_slice_ip_variants() localVariable
846 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
927 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
950 let mut test = test.clone(); in from_x_slice_ip_variants() localVariable
[all …]
Dlax_packet_headers.rs570 mod test { module
637 let test = TestPacket { in from_x_slice() localVariable
689 let mut test = base.clone(); in from_x_slice_vlan_variants() localVariable
738 let mut test = base.clone(); in from_x_slice_vlan_variants() localVariable
785 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
870 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
890 let mut test = test.clone(); in from_x_slice_ip_variants() localVariable
952 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
1033 let mut test = base.clone(); in from_x_slice_ip_variants() localVariable
1056 let mut test = test.clone(); in from_x_slice_ip_variants() localVariable
[all …]
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/result/
DTestResultListener.java38 public abstract void testResult(TestDescription test, TestResult result); in testResult()
41 public final void testStarted(TestDescription test, long startTime) { in testStarted()
52 public final void testStarted(TestDescription test) { in testStarted()
57 public final void testFailed(TestDescription test, String trace) { in testFailed()
63 public final void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure()
69 public void testSkipped(TestDescription test, SkipReason reason) { in testSkipped()
75 public final void testIgnored(TestDescription test) { in testIgnored()
80 public final void testEnded(TestDescription test, Map<String, String> testMetrics) { in testEnded()
86 public final void testEnded(TestDescription test, HashMap<String, Metric> testMetrics) { in testEnded()
93 TestDescription test, long endTime, Map<String, String> testMetrics) { in testEnded()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/container.adaptors/queue/queue.cons.alloc/
H A Dctor_alloc.pass.cpp20 struct test struct
23 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; argument
25 explicit test(const test_allocator<int>& a) : base(a) {} in test() function
26 test(const container_type& container, const test_allocator<int>& a) : base(container, a) {} in test() function
28test(container_type&& container, const test_allocator<int>& a) : base(std::move(container), a) {} in test() argument
29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument
31 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
H A Dctor_queue_alloc.pass.cpp33 struct test struct
37 typedef test_allocator<int> allocator_type; argument
40 explicit test(const allocator_type& a) : base(a) {} in test() function
41 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test() function
42 test(const test& q, const allocator_type& a) : base(q, a) {} in test() function
48 test<int> q(make<C>(5), test_allocator<int>(4)); in main() argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/container.adaptors/stack/stack.cons.alloc/
H A Dctor_alloc.pass.cpp20 struct test struct
23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; argument
25 explicit test(const test_allocator<int>& a) : base(a) {} in test() function
26 test(const container_type& cont, const test_allocator<int>& a) : base(cont, a) {} in test() function
28 test(container_type&& cont, const test_allocator<int>& a) : base(std::move(cont), a) {} in test() argument
29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
31 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
/aosp_15_r20/external/threetenbp/src/test/java/org/threeten/bp/format/
H A DTestDateTimeFormatters.java94 DateTimeFormatter test = DateTimeFormatter.ofPattern("d MMM uuuu"); in test_pattern_String() local
114 DateTimeFormatter test = DateTimeFormatter.ofPattern("d MMM uuuu", Locale.UK); in test_pattern_StringLocale() local
161 … TemporalAccessor test = buildAccessor(year, month, day, null, null, null, null, offsetId, zoneId); in test_print_isoLocalDate() local
248 … TemporalAccessor test = buildAccessor(year, month, day, null, null, null, null, offsetId, zoneId); in test_print_isoOffsetDate() local
299 … TemporalAccessor test = buildAccessor(year, month, day, null, null, null, null, offsetId, zoneId); in test_print_isoDate() local
364 … TemporalAccessor test = buildAccessor(null, null, null, hour, min, sec, nano, offsetId, zoneId); in test_print_isoLocalTime() local
427 … TemporalAccessor test = buildAccessor(null, null, null, hour, min, sec, nano, offsetId, zoneId); in test_print_isoOffsetTime() local
490 … TemporalAccessor test = buildAccessor(null, null, null, hour, min, sec, nano, offsetId, zoneId); in test_print_isoTime() local
564 … TemporalAccessor test = buildAccessor(year, month, day, hour, min, sec, nano, offsetId, zoneId); in test_print_isoLocalDateTime() local
636 … TemporalAccessor test = buildAccessor(year, month, day, hour, min, sec, nano, offsetId, zoneId); in test_print_isoOffsetDateTime() local
[all …]
/aosp_15_r20/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
H A DNotificationListenerVerifierActivity.java333 protected void test() { in test() method in NotificationListenerVerifierActivity.NotificationReceivedTest
386 protected void test() { in test() method in NotificationListenerVerifierActivity.LongMessageTest
446 protected void test() { in test() method in NotificationListenerVerifierActivity.ReceiveChannelBlockNoticeTest
533 protected void test() { in test() method in NotificationListenerVerifierActivity.UpdateChannelWithFilterTest
579 protected void test() { in test() method in NotificationListenerVerifierActivity.UpdateChannelWithFilterHalfSheetTest
625 protected void test() { in test() method in NotificationListenerVerifierActivity.ReceiveGroupBlockNoticeTest
697 protected void test() { in test() method in NotificationListenerVerifierActivity.ReceiveAppBlockNoticeTest
774 protected void test() { in test() method in NotificationListenerVerifierActivity.ReceiveAppUnblockNoticeTest
830 protected void test() { in test() method in NotificationListenerVerifierActivity.DataIntactTest
947 protected void test() { in test() method in NotificationListenerVerifierActivity.AudiblyAlertedTest
[all …]
/aosp_15_r20/external/cronet/testing/rust_gtest_interop/
H A Drust_gtest_interop_unittest.rs9 fn test() { in test() function
14 fn test() { in test() function
25 fn test() { in test() function
33 fn test() { in test() function
42 fn test() { in bar() function
53 fn test() { in bar() function
60 fn test() {} in test() function
63 fn test() -> std::io::Result<()> { in test() function
69 fn test() -> std::result::Result<(), Box<dyn std::error::Error>> { in test() function
77 fn test() -> std::result::Result<(), Box<dyn std::error::Error>> { in test() function
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/
H A Dall_tests.go57 type test struct { struct
58 testconfig.Test
60 shard, numShards int
64 cpu string
155 func runTestOnce(test test, mallocNumToFail int64) (passed bool, err error) { argument
237 func runTest(test test) (bool, error) { argument
265 func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
273 func (t test) shortName() string {
284 func (t test) longName() string {
288 func (t test) shardMsg() string {
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/test_importlib/source/
Dtest_file_loader.py405 def _test_empty_file(self, test, *, del_source=False): argument
413 def _test_partial_magic(self, test, *, del_source=False): argument
422 def _test_magic_only(self, test, *, del_source=False): argument
429 def _test_partial_flags(self, test, *, del_source=False): argument
436 def _test_partial_hash(self, test, *, del_source=False): argument
456 def _test_partial_timestamp(self, test, *, del_source=False): argument
463 def _test_partial_size(self, test, *, del_source=False): argument
499 def _test_bad_magic(self, test, *, del_source=False): argument
535 def test(name, mapping, bytecode_path): function
543 def test(name, mapping, bytecode_path): function
[all …]
/aosp_15_r20/prebuilts/misc/common/ub-uiautomator/
HDub-uiautomator.jar ... android/ android/support/ android/support/test/ android/support/test/uiautomator/ android
/aosp_15_r20/libcore/ojluni/src/test/java/time/tck/java/time/
H A DTCKPeriod.java529 Period test = Period.between(start, end); in factory_between_LocalDate() local
691 Period test = Period.ofYears(Integer.MAX_VALUE); in test_plusYears_overflowTooBig() local
697 Period test = Period.ofYears(Integer.MIN_VALUE); in test_plusYears_overflowTooSmall() local
719 Period test = Period.ofMonths(Integer.MAX_VALUE); in test_plusMonths_overflowTooBig() local
725 Period test = Period.ofMonths(Integer.MIN_VALUE); in test_plusMonths_overflowTooSmall() local
747 Period test = Period.ofDays(Integer.MAX_VALUE); in test_plusDays_overflowTooBig() local
753 Period test = Period.ofDays(Integer.MIN_VALUE); in test_plusDays_overflowTooSmall() local
836 Period test = Period.ofYears(Integer.MAX_VALUE); in test_minusYears_overflowTooBig() local
842 Period test = Period.ofYears(Integer.MIN_VALUE); in test_minusYears_overflowTooSmall() local
864 Period test = Period.ofMonths(Integer.MAX_VALUE); in test_minusMonths_overflowTooBig() local
[all …]
/aosp_15_r20/external/kmod/testsuite/
H A Dtestsuite.h82 struct test { struct
104 /* comma-separated list of loaded modules at the end of the test */ argument
106 testfunc func; argument
118 int test_init(const struct test *start, const struct test *stop, argument
/aosp_15_r20/external/boringssl/src/util/
H A Dall_tests.go58 type test struct { struct
59 testconfig.Test
61 shard, numShards int
65 cpu string
161 func runTestOnce(test test, mallocNumToFail int64) (passed bool, err error) { argument
246 func runTest(test test) (bool, error) { argument
274 func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
282 func (t test) shortName() string {
293 func (t test) longName() string {
297 func (t test) shardMsg() string {
[all …]

12345678910>>...660