Home
last modified time | relevance | path

Searched defs:it (Results 1 – 25 of 8773) sorted by relevance

12345678910>>...351

/aosp_15_r20/external/llvm/test/MC/ARM/
H A Dv8_IT_manual.s5 it ge label
9 it ge label
12 it ge label
15 it ge label
19 it ge label
23 it ge label
27 it ge label
31 it ge label
35 it ge label
39 it ge label
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/fallible-iterator/src/
Dtest.rs36 let it = a.chain(b); in chain() localVariable
42 let it = a.chain(b).rev(); in chain() localVariable
56 let it = Some(Ok(1)).into_iter().chain(iter::repeat(Err(()))); in count() localVariable
62 let it = convert(vec![5, 6, 7, 8].into_iter().map(Ok::<u32, ()>)).enumerate(); in enumerate() localVariable
72 let it = convert(vec![0, 1, 2, 3].into_iter().map(Ok::<u32, u32>)); in filter() localVariable
73 let it = it.filter(|&x| if x % 2 == 0 { Ok(x % 3 == 0) } else { Err(x) }); in filter() localVariable
78 let it = convert(vec![0, 2, 4, 6].into_iter().map(Ok::<u32, u32>)); in filter() localVariable
79 let it = it.filter(|&x| if x % 2 == 0 { Ok(x % 3 == 0) } else { Err(x) }); in filter() localVariable
97 let it = convert(vec![0, 1, 2, 3, 4, 5, 6].into_iter().map(Ok::<u32, u32>)) in filter_map() localVariable
103 let it = in filter_map() localVariable
[all …]
/aosp_15_r20/frameworks/minikin/tests/unittest/
H A DBidiUtilsTest.cpp37 auto it = bidiText.begin(); in TEST() local
46 auto it = bidiText.begin(); in TEST() local
55 auto it = bidiText.begin(); in TEST() local
64 auto it = bidiText.begin(); in TEST() local
73 auto it = bidiText.begin(); in TEST() local
82 auto it = bidiText.begin(); in TEST() local
96 auto it = bidiText.begin(); in TEST() local
105 auto it = bidiText.begin(); in TEST() local
114 auto it = bidiText.begin(); in TEST() local
123 auto it = bidiText.begin(); in TEST() local
[all …]
/aosp_15_r20/external/perfetto/src/trace_processor/
H A Dtrace_database_integrationtest.cc58 auto it = processor->ExecuteQuery( in TEST() local
81 auto it = processor->ExecuteQuery( in TEST() local
96 auto it = processor->ExecuteQuery( in TEST() local
145 auto it = Query( in TEST_F() local
158 auto it = Query("select start_ts, end_ts from trace_bounds"); in TEST_F() local
173 auto it = Query("select start_ts, end_ts from trace_bounds"); in TEST_F() local
183 auto it = Query("select HASH()"); in TEST_F() local
203 auto it = Query("select DEMANGLE('_Znwm')"); in TEST_F() local
223 auto it = Query( in TEST_F() local
243 auto it = Query( in TEST_F() local
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/tests/iter/adapters/
H A Dstep_by.rs6 let mut it = (0..).step_by(1).take(3); in test_iterator_step_by() localVariable
12 let mut it = (0..).step_by(3).take(4); in test_iterator_step_by() localVariable
19 let mut it = (0..3).step_by(1); in test_iterator_step_by() localVariable
25 let mut it = (0..11).step_by(3); in test_iterator_step_by() localVariable
35 let mut it = (0..16).step_by(5); in test_iterator_step_by_nth() localVariable
42 let it = (0..18).step_by(5); in test_iterator_step_by_nth() localVariable
74 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
81 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
86 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
91 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
[all …]
H A Darray_chunks.rs16 let mut it = (0..5).map(|_| CountDrop::new(&count)).array_chunks::<3>(); in test_iterator_array_chunks_clone_and_drop() localVariable
30 let mut it = (0..11).array_chunks::<4>(); in test_iterator_array_chunks_remainder() localVariable
39 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_size_hint() localVariable
42 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_size_hint() localVariable
45 let it = (0..6).array_chunks::<5>(); in test_iterator_array_chunks_size_hint() localVariable
48 let it = (0..6).array_chunks::<7>(); in test_iterator_array_chunks_size_hint() localVariable
51 let it = (1..).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
54 let it = (1..).filter(|x| x % 2 != 0).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
60 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_count() localVariable
63 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_count() localVariable
[all …]
H A Dskip.rs10 let mut it = xs.iter().skip(5); in test_iterator_skip() localVariable
24 let mut it = xs.iter().rev().skip(5); in test_iterator_skip_doubleended() localVariable
33 let mut it = xs.iter().rev().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
38 let mut it = it_base.by_ref().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
55 let it = xs.iter().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
63 let mut it = xs.iter().skip(0); in test_iterator_skip_nth() localVariable
67 let mut it = xs.iter().skip(5); in test_iterator_skip_nth() localVariable
71 let mut it = xs.iter().skip(12); in test_iterator_skip_nth() localVariable
110 let mut it = xs.iter().skip(5); in test_iterator_skip_last() localVariable
120 let it = xs.iter().skip(5); in test_iterator_skip_fold() localVariable
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/tests/iter/adapters/
H A Dstep_by.rs6 let mut it = (0..).step_by(1).take(3); in test_iterator_step_by() localVariable
12 let mut it = (0..).step_by(3).take(4); in test_iterator_step_by() localVariable
19 let mut it = (0..3).step_by(1); in test_iterator_step_by() localVariable
25 let mut it = (0..11).step_by(3); in test_iterator_step_by() localVariable
35 let mut it = (0..16).step_by(5); in test_iterator_step_by_nth() localVariable
42 let it = (0..18).step_by(5); in test_iterator_step_by_nth() localVariable
74 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
81 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
86 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
91 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
[all …]
H A Darray_chunks.rs16 let mut it = (0..5).map(|_| CountDrop::new(&count)).array_chunks::<3>(); in test_iterator_array_chunks_clone_and_drop() localVariable
30 let mut it = (0..11).array_chunks::<4>(); in test_iterator_array_chunks_remainder() localVariable
39 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_size_hint() localVariable
42 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_size_hint() localVariable
45 let it = (0..6).array_chunks::<5>(); in test_iterator_array_chunks_size_hint() localVariable
48 let it = (0..6).array_chunks::<7>(); in test_iterator_array_chunks_size_hint() localVariable
51 let it = (1..).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
54 let it = (1..).filter(|x| x % 2 != 0).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
60 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_count() localVariable
63 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_count() localVariable
[all …]
H A Dskip.rs10 let mut it = xs.iter().skip(5); in test_iterator_skip() localVariable
24 let mut it = xs.iter().rev().skip(5); in test_iterator_skip_doubleended() localVariable
33 let mut it = xs.iter().rev().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
38 let mut it = it_base.by_ref().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
55 let it = xs.iter().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
63 let mut it = xs.iter().skip(0); in test_iterator_skip_nth() localVariable
67 let mut it = xs.iter().skip(5); in test_iterator_skip_nth() localVariable
71 let mut it = xs.iter().skip(12); in test_iterator_skip_nth() localVariable
110 let mut it = xs.iter().skip(5); in test_iterator_skip_last() localVariable
120 let it = xs.iter().skip(5); in test_iterator_skip_fold() localVariable
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/tests/iter/adapters/
H A Dstep_by.rs6 let mut it = (0..).step_by(1).take(3); in test_iterator_step_by() localVariable
12 let mut it = (0..).step_by(3).take(4); in test_iterator_step_by() localVariable
19 let mut it = (0..3).step_by(1); in test_iterator_step_by() localVariable
25 let mut it = (0..11).step_by(3); in test_iterator_step_by() localVariable
35 let mut it = (0..16).step_by(5); in test_iterator_step_by_nth() localVariable
42 let it = (0..18).step_by(5); in test_iterator_step_by_nth() localVariable
74 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
81 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
86 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
91 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
[all …]
H A Darray_chunks.rs16 let mut it = (0..5).map(|_| CountDrop::new(&count)).array_chunks::<3>(); in test_iterator_array_chunks_clone_and_drop() localVariable
30 let mut it = (0..11).array_chunks::<4>(); in test_iterator_array_chunks_remainder() localVariable
39 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_size_hint() localVariable
42 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_size_hint() localVariable
45 let it = (0..6).array_chunks::<5>(); in test_iterator_array_chunks_size_hint() localVariable
48 let it = (0..6).array_chunks::<7>(); in test_iterator_array_chunks_size_hint() localVariable
51 let it = (1..).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
54 let it = (1..).filter(|x| x % 2 != 0).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
60 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_count() localVariable
63 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_count() localVariable
[all …]
H A Dskip.rs10 let mut it = xs.iter().skip(5); in test_iterator_skip() localVariable
24 let mut it = xs.iter().rev().skip(5); in test_iterator_skip_doubleended() localVariable
33 let mut it = xs.iter().rev().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
38 let mut it = it_base.by_ref().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
55 let it = xs.iter().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
63 let mut it = xs.iter().skip(0); in test_iterator_skip_nth() localVariable
67 let mut it = xs.iter().skip(5); in test_iterator_skip_nth() localVariable
71 let mut it = xs.iter().skip(12); in test_iterator_skip_nth() localVariable
110 let mut it = xs.iter().skip(5); in test_iterator_skip_last() localVariable
120 let it = xs.iter().skip(5); in test_iterator_skip_fold() localVariable
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/tests/iter/adapters/
H A Dstep_by.rs6 let mut it = (0..).step_by(1).take(3); in test_iterator_step_by() localVariable
12 let mut it = (0..).step_by(3).take(4); in test_iterator_step_by() localVariable
19 let mut it = (0..3).step_by(1); in test_iterator_step_by() localVariable
25 let mut it = (0..11).step_by(3); in test_iterator_step_by() localVariable
35 let mut it = (0..16).step_by(5); in test_iterator_step_by_nth() localVariable
42 let it = (0..18).step_by(5); in test_iterator_step_by_nth() localVariable
74 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
81 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
86 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
91 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
[all …]
H A Darray_chunks.rs16 let mut it = (0..5).map(|_| CountDrop::new(&count)).array_chunks::<3>(); in test_iterator_array_chunks_clone_and_drop() localVariable
30 let mut it = (0..11).array_chunks::<4>(); in test_iterator_array_chunks_remainder() localVariable
39 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_size_hint() localVariable
42 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_size_hint() localVariable
45 let it = (0..6).array_chunks::<5>(); in test_iterator_array_chunks_size_hint() localVariable
48 let it = (0..6).array_chunks::<7>(); in test_iterator_array_chunks_size_hint() localVariable
51 let it = (1..).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
54 let it = (1..).filter(|x| x % 2 != 0).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
60 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_count() localVariable
63 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_count() localVariable
[all …]
H A Dskip.rs10 let mut it = xs.iter().skip(5); in test_iterator_skip() localVariable
24 let mut it = xs.iter().rev().skip(5); in test_iterator_skip_doubleended() localVariable
33 let mut it = xs.iter().rev().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
38 let mut it = it_base.by_ref().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
55 let it = xs.iter().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
63 let mut it = xs.iter().skip(0); in test_iterator_skip_nth() localVariable
67 let mut it = xs.iter().skip(5); in test_iterator_skip_nth() localVariable
71 let mut it = xs.iter().skip(12); in test_iterator_skip_nth() localVariable
110 let mut it = xs.iter().skip(5); in test_iterator_skip_last() localVariable
120 let it = xs.iter().skip(5); in test_iterator_skip_fold() localVariable
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/tests/iter/adapters/
H A Dstep_by.rs6 let mut it = (0..).step_by(1).take(3); in test_iterator_step_by() localVariable
12 let mut it = (0..).step_by(3).take(4); in test_iterator_step_by() localVariable
19 let mut it = (0..3).step_by(1); in test_iterator_step_by() localVariable
25 let mut it = (0..11).step_by(3); in test_iterator_step_by() localVariable
35 let mut it = (0..16).step_by(5); in test_iterator_step_by_nth() localVariable
42 let it = (0..18).step_by(5); in test_iterator_step_by_nth() localVariable
74 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
81 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
86 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
91 let mut it = Test(0); in test_iterator_step_by_nth_overflow() localVariable
[all …]
H A Darray_chunks.rs16 let mut it = (0..5).map(|_| CountDrop::new(&count)).array_chunks::<3>(); in test_iterator_array_chunks_clone_and_drop() localVariable
30 let mut it = (0..11).array_chunks::<4>(); in test_iterator_array_chunks_remainder() localVariable
39 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_size_hint() localVariable
42 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_size_hint() localVariable
45 let it = (0..6).array_chunks::<5>(); in test_iterator_array_chunks_size_hint() localVariable
48 let it = (0..6).array_chunks::<7>(); in test_iterator_array_chunks_size_hint() localVariable
51 let it = (1..).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
54 let it = (1..).filter(|x| x % 2 != 0).array_chunks::<2>(); in test_iterator_array_chunks_size_hint() localVariable
60 let it = (0..6).array_chunks::<1>(); in test_iterator_array_chunks_count() localVariable
63 let it = (0..6).array_chunks::<3>(); in test_iterator_array_chunks_count() localVariable
[all …]
H A Dskip.rs10 let mut it = xs.iter().skip(5); in test_iterator_skip() localVariable
24 let mut it = xs.iter().rev().skip(5); in test_iterator_skip_doubleended() localVariable
33 let mut it = xs.iter().rev().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
38 let mut it = it_base.by_ref().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
55 let it = xs.iter().skip(5).rev(); in test_iterator_skip_doubleended() localVariable
63 let mut it = xs.iter().skip(0); in test_iterator_skip_nth() localVariable
67 let mut it = xs.iter().skip(5); in test_iterator_skip_nth() localVariable
71 let mut it = xs.iter().skip(12); in test_iterator_skip_nth() localVariable
110 let mut it = xs.iter().skip(5); in test_iterator_skip_last() localVariable
120 let it = xs.iter().skip(5); in test_iterator_skip_fold() localVariable
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/native/services/surfaceflinger/tests/unittests/libsurfaceflingerflags_test/android_arm64_armv8-2a_cortex-a55_static/gen/
Dcom_android_graphics_surfaceflinger_flags.cc24 auto it = overrides_.find("add_sf_skipped_frames_to_trace"); in add_sf_skipped_frames_to_trace() local
38 auto it = overrides_.find("adpf_fmq_sf"); in adpf_fmq_sf() local
52 auto it = overrides_.find("adpf_gpu_sf"); in adpf_gpu_sf() local
66 auto it = overrides_.find("adpf_native_session_manager"); in adpf_native_session_manager() local
80 auto it = overrides_.find("allow_n_vsyncs_in_targeter"); in allow_n_vsyncs_in_targeter() local
94 auto it = overrides_.find("arr_setframerate_api"); in arr_setframerate_api() local
108 auto it = overrides_.find("arr_setframerate_gte_enum"); in arr_setframerate_gte_enum() local
122 auto it = overrides_.find("arr_surfacecontrol_setframerate_api"); in arr_surfacecontrol_setframerate_api() local
136 auto it = overrides_.find("begone_bright_hlg"); in begone_bright_hlg() local
150 auto it = overrides_.find("cache_when_source_crop_layer_only_moved"); in cache_when_source_crop_layer_only_moved() local
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/android.os.flags-aconfig-cc-test/android_arm64_armv8-2a_cortex-a55_static/gen/
Dandroid_os.cc24 auto it = overrides_.find("adpf_gpu_report_actual_work_duration"); in adpf_gpu_report_actual_work_duration() local
38 auto it = overrides_.find("adpf_graphics_pipeline"); in adpf_graphics_pipeline() local
52 auto it = overrides_.find("adpf_hwui_gpu"); in adpf_hwui_gpu() local
66 auto it = overrides_.find("adpf_measure_during_input_event_boost"); in adpf_measure_during_input_event_boost() local
80 auto it = overrides_.find("adpf_obtainview_boost"); in adpf_obtainview_boost() local
94 auto it = overrides_.find("adpf_platform_power_efficiency"); in adpf_platform_power_efficiency() local
108 auto it = overrides_.find("adpf_prefer_power_efficiency"); in adpf_prefer_power_efficiency() local
122 auto it = overrides_.find("adpf_use_fmq_channel"); in adpf_use_fmq_channel() local
136 auto it = overrides_.find("adpf_use_fmq_channel_fixed"); in adpf_use_fmq_channel_fixed() local
150 auto it = overrides_.find("adpf_use_load_hints"); in adpf_use_load_hints() local
[all …]
/aosp_15_r20/external/angle/src/compiler/translator/tree_util/
H A DIntermTraverse.cpp62 void TIntermNode::traverse(TIntermTraverser *it) in traverse()
67 void TIntermSymbol::traverse(TIntermTraverser *it) in traverse()
73 void TIntermConstantUnion::traverse(TIntermTraverser *it) in traverse()
79 void TIntermFunctionPrototype::traverse(TIntermTraverser *it) in traverse()
85 void TIntermBinary::traverse(TIntermTraverser *it) in traverse()
90 void TIntermUnary::traverse(TIntermTraverser *it) in traverse()
95 void TIntermFunctionDefinition::traverse(TIntermTraverser *it) in traverse()
100 void TIntermBlock::traverse(TIntermTraverser *it) in traverse()
105 void TIntermAggregate::traverse(TIntermTraverser *it) in traverse()
110 void TIntermLoop::traverse(TIntermTraverser *it) in traverse()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/native/libs/input/com.android.input.flags-aconfig-cc/linux_glibc_x86_64_static/gen/
Dcom_android_input_flags.cc24 auto it = overrides_.find("a11y_crash_on_inconsistent_event_stream"); in a11y_crash_on_inconsistent_event_stream() local
38 auto it = overrides_.find("collect_palm_rejection_quality_metrics"); in collect_palm_rejection_quality_metrics() local
52 auto it = overrides_.find("connected_displays_cursor"); in connected_displays_cursor() local
66 auto it = overrides_.find("device_associations"); in device_associations() local
80 auto it = overrides_.find("disable_reject_touch_on_stylus_hover"); in disable_reject_touch_on_stylus_hover() local
94 auto it = overrides_.find("enable_alphabetic_keyboard_wake"); in enable_alphabetic_keyboard_wake() local
108 auto it = overrides_.find("enable_inbound_event_verification"); in enable_inbound_event_verification() local
122 auto it = overrides_.find("enable_input_event_tracing"); in enable_input_event_tracing() local
136 auto it = overrides_.find("enable_input_filter_rust_impl"); in enable_input_filter_rust_impl() local
150 auto it = overrides_.find("enable_input_policy_profile"); in enable_input_policy_profile() local
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/native/libs/input/com.android.input.flags-aconfig-cc/android_arm64_armv8-2a_cortex-a55_static/gen/
Dcom_android_input_flags.cc24 auto it = overrides_.find("a11y_crash_on_inconsistent_event_stream"); in a11y_crash_on_inconsistent_event_stream() local
38 auto it = overrides_.find("collect_palm_rejection_quality_metrics"); in collect_palm_rejection_quality_metrics() local
52 auto it = overrides_.find("connected_displays_cursor"); in connected_displays_cursor() local
66 auto it = overrides_.find("device_associations"); in device_associations() local
80 auto it = overrides_.find("disable_reject_touch_on_stylus_hover"); in disable_reject_touch_on_stylus_hover() local
94 auto it = overrides_.find("enable_alphabetic_keyboard_wake"); in enable_alphabetic_keyboard_wake() local
108 auto it = overrides_.find("enable_inbound_event_verification"); in enable_inbound_event_verification() local
122 auto it = overrides_.find("enable_input_event_tracing"); in enable_input_event_tracing() local
136 auto it = overrides_.find("enable_input_filter_rust_impl"); in enable_input_filter_rust_impl() local
150 auto it = overrides_.find("enable_input_policy_profile"); in enable_input_policy_profile() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/itertools/tests/
Dspecializations.rs197 let it = v.iter().duplicates(); localVariable
203 let it = v.iter().duplicates_by(|x| *x % 10); localVariable
209 let it = v.iter().unique(); localVariable
215 let it = v.iter().unique_by(|x| *x % 50); localVariable
230 let it = v.iter().copied().pad_using(10, |i| u8::try_from(5 * i).unwrap_or(u8::MAX)); localVariable
240 let it = v.iter().positions(|x| x % 5 == 0); localVariable
246 let it = v.iter().copied().update(|x| *x = x.wrapping_mul(7)); localVariable
302 let it = a.into_iter().zip_longest(b); localVariable
312 let it = itertools::multizip((a.iter(), a.iter().rev(), a.iter().take(50))); localVariable
330 let it = itertools::repeat_n(element, n as usize); localVariable
[all …]

12345678910>>...351