Home
last modified time | relevance | path

Searched defs:Inner (Results 1 – 25 of 550) sorted by relevance

12345678910>>...22

/aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmulti-level-substitution.cpp33 template<typename> struct Inner { struct
34 static const unsigned value = 1;
38 struct Inner<tuple<pair<Types, YTypes>...> > { struct
39 static const unsigned value = sizeof...(Types) - sizeof...(YTypes);
56 template<typename, typename> struct Inner { struct
57 static const unsigned value = 0;
61 struct Inner<tuple<pair<Types, YTypes>...>, struct
63 static const unsigned value = 1;
84 template<typename> struct Inner { struct
85 static const unsigned value = 1;
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/mio/src/sys/windows/
Dnamed_pipe.rs81 struct Inner { struct
95 impl Inner { impl
101 unsafe fn ptr_from_conn_overlapped(ptr: *mut OVERLAPPED) -> *const Inner { in ptr_from_conn_overlapped()
107 unsafe fn ptr_from_read_overlapped(ptr: *mut OVERLAPPED) -> *const Inner { in ptr_from_read_overlapped()
109 (ptr as *mut Overlapped).wrapping_sub(1) as *const Inner in ptr_from_read_overlapped() constant
113 unsafe fn ptr_from_write_overlapped(ptr: *mut OVERLAPPED) -> *const Inner { in ptr_from_write_overlapped()
115 (ptr as *mut Overlapped).wrapping_sub(2) as *const Inner in ptr_from_write_overlapped() constant
119 unsafe fn ptr_from_event_overlapped(ptr: *mut OVERLAPPED) -> *const Inner { in ptr_from_event_overlapped()
121 (ptr as *mut Overlapped).wrapping_sub(3) as *const Inner in ptr_from_event_overlapped() constant
696 impl Inner { impl
[all …]
/aosp_15_r20/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp1.cpp31 struct Inner { struct
32 T member1;
33 U member2; // expected-error{{incomplete}}
42 template struct X1<int>::Inner<float>; member in X1
43 template struct X1<int>::Inner<double>; member in X1
44 template struct X1<int>::Inner<void>; // expected-note{{instantiation}} member in X1
66 struct Inner { struct
67 T member1;
68 U member2; // expected-error{{incomplete}}
85 template struct X2<int, float>::Inner; member in X2
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/src/sync/cancellation_token/
Dtree_node.rs73 struct Inner { struct
95 inner: Mutex::new(Inner { in child_node() argument
125 fn disconnect_children(node: &mut Inner) { in disconnect_children()
152 F: FnOnce(MutexGuard<'_, Inner>, Option<MutexGuard<'_, Inner>>) -> Ret, in with_locked_node_and_parent() argument
202 fn move_children_to_parent(node: &mut Inner, parent: &mut Inner) { in move_children_to_parent()
220 fn remove_child(parent: &mut Inner, mut node: MutexGuard<'_, Inner>) { in remove_child() argument
/aosp_15_r20/external/flatbuffers/rust/flatbuffers/src/
H A Dprimitives.rs180 type Inner = T::Inner; typedef
182 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
201 type Inner = T::Inner; typedef
203 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
231 type Inner = T::Inner; typedef
233 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
253 type Inner = T::Inner; typedef
255 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
264 type Inner = T::Inner; typedef
266 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
[all …]
H A Dvector.rs86 pub fn get(&self, idx: usize) -> T::Inner { in get()
145 type Inner = &'a str; typedef
146 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
167 type Inner = &'a [T]; typedef
168 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
175 type Inner = Vector<'a, T>; typedef
176 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
231 fn next(&mut self) -> Option<T::Inner> { in next()
246 fn nth(&mut self, n: usize) -> Option<T::Inner> { in nth()
267 fn next_back(&mut self) -> Option<T::Inner> { in next_back()
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/nfa/thompson/
H A Dnfa.rs1195 pub(super) struct Inner { struct
1201 states: Vec<State>,
1203 start_anchored: StateID,
1205 start_unanchored: StateID,
1211 start_pattern: Vec<StateID>,
1214 group_info: GroupInfo,
1226 byte_class_set: ByteClassSet,
1236 byte_classes: ByteClasses,
1238 has_capture: bool,
1240 has_empty: bool,
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/
Dpark.rs21 struct Inner { struct
22 state: AtomicUsize,
46 inner: Arc::new(Inner { in new() argument
83 impl Inner { impl
299 impl Inner { impl
305 unsafe fn from_raw(ptr: *const ()) -> Arc<Inner> { in from_raw()
306 Arc::from_raw(ptr as *const Inner) in from_raw() constant
318 Arc::increment_strong_count(raw as *const Inner); in clone() constant
332 let raw = raw as *const Inner; in wake_by_ref() constant
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/clap_builder-4.5.2/src/builder/
H A Dstr.rs31 pub(crate) fn into_inner(self) -> Inner { in into_inner()
223 pub(crate) enum Inner { enum
228 impl Inner { impl
260 pub(crate) struct Inner(pub(crate) &'static str); struct
262 impl Inner { impl
279 impl Default for Inner { implementation
285 impl PartialEq for Inner { implementation
291 impl PartialOrd for Inner { implementation
297 impl Ord for Inner { implementation
303 impl Eq for Inner {} implementation
[all …]
H A Dos_str.rs242 pub(crate) enum Inner { enum
247 impl Inner { impl
276 pub(crate) struct Inner(&'static std::ffi::OsStr); struct
278 impl Inner { implementation
295 impl Default for Inner { implementation
301 impl PartialEq for Inner { implementation
307 impl PartialOrd for Inner { implementation
313 impl Ord for Inner { implementation
319 impl Eq for Inner {} implementation
321 impl std::hash::Hash for Inner { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/clap_builder/src/builder/
Dstr.rs31 pub(crate) fn into_inner(self) -> Inner { in into_inner()
223 pub(crate) enum Inner { enum
228 impl Inner { implementation
260 pub(crate) struct Inner(pub(crate) &'static str); struct
262 impl Inner { impl
279 impl Default for Inner { implementation
285 impl PartialEq for Inner { implementation
291 impl PartialOrd for Inner { implementation
297 impl Ord for Inner { implementation
303 impl Eq for Inner {} implementation
[all …]
Dos_str.rs252 pub(crate) enum Inner { enum
257 impl Inner { implementation
286 pub(crate) struct Inner(&'static std::ffi::OsStr); struct
288 impl Inner { implementation
305 impl Default for Inner { implementation
311 impl PartialEq for Inner { implementation
317 impl PartialOrd for Inner { implementation
323 impl Ord for Inner { implementation
329 impl Eq for Inner {} implementation
331 impl std::hash::Hash for Inner { implementation
/aosp_15_r20/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp2.cpp78 struct Inner : public T { }; // expected-note 2{{explicitly specialized declaration is here}} struct
177 struct X0<void*>::Inner { }; struct in N0::X0
180 struct X0<int>::Inner { }; struct in N0::X0
183 struct X0<unsigned>::Inner; member in N0::X0
186 struct X0<float>::Inner; member in N0::X0
189 struct X0<double>::Inner; // expected-note{{forward declaration}} member in N0::X0
193 struct N0::X0<long>::Inner { }; struct in N0::X0
199 struct N0::X0<float>::Inner { }; struct in N0::X0
203 struct N0::X0<unsigned>::Inner { }; // expected-error{{member class specialization}} struct in N1::N0::X0
206 struct N0::X0<unsigned long>::Inner { }; // expected-error{{member class specialization}} struct in N1::N0::X0
H A Dp2-0x.cpp60 struct Inner : public T { }; // expected-note 2{{here}} struct
179 struct X0<void*>::Inner { }; struct in N0::X0
182 struct X0<int>::Inner { }; struct in N0::X0
185 struct X0<unsigned>::Inner; member in N0::X0
188 struct X0<float>::Inner; member in N0::X0
191 struct X0<double>::Inner; // expected-note{{forward declaration}} member in N0::X0
195 struct N0::X0<long>::Inner { }; struct in N0::X0
198 struct N0::X0<float>::Inner { }; struct in N0::X0
202 struct N0::X0<unsigned>::Inner { }; // expected-error{{member class specialization}} struct in N1::N0::X0
205 struct N0::X0<unsigned long>::Inner { }; // expected-error{{member class specialization}} struct in N1::N0::X0
H A Dp4.cpp15 struct Inner { // expected-error{{implicit default}} struct
16 T value; // expected-note {{member is declared here}}
40 struct X<IntHolder, long>::Inner { struct in X
41 Inner() : value(17) { } in Inner() function
42 IntHolder value;
/aosp_15_r20/external/rust/android-crates-io/crates/log/src/kv/
Dvalue.rs736 pub enum Inner<'v> { enum
750 impl<'v> From<()> for Inner<'v> { implementation
756 impl<'v> From<bool> for Inner<'v> { implementation
762 impl<'v> From<char> for Inner<'v> { implementation
768 impl<'v> From<f32> for Inner<'v> { implementation
774 impl<'v> From<f64> for Inner<'v> { implementation
780 impl<'v> From<i8> for Inner<'v> { implementation
786 impl<'v> From<i16> for Inner<'v> { implementation
792 impl<'v> From<i32> for Inner<'v> { implementation
798 impl<'v> From<i64> for Inner<'v> { implementation
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/log-0.4.21/src/kv/
H A Dvalue.rs736 pub enum Inner<'v> { enum
750 impl<'v> From<()> for Inner<'v> { implementation
756 impl<'v> From<bool> for Inner<'v> { implementation
762 impl<'v> From<char> for Inner<'v> { implementation
768 impl<'v> From<f32> for Inner<'v> { implementation
774 impl<'v> From<f64> for Inner<'v> { implementation
780 impl<'v> From<i8> for Inner<'v> { implementation
786 impl<'v> From<i16> for Inner<'v> { implementation
792 impl<'v> From<i32> for Inner<'v> { implementation
798 impl<'v> From<i64> for Inner<'v> { implementation
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/blocking/
Dpool.rs76 struct Inner { struct
78 shared: Mutex<Shared>,
81 condvar: Condvar,
84 thread_name: ThreadNameFn,
87 stack_size: Option<usize>,
90 after_start: Option<Callback>,
93 before_stop: Option<Callback>,
96 thread_cap: usize,
99 keep_alive: Duration,
102 metrics: SpawnerMetrics,
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-test/src/
Dio.rs68 struct Inner { struct
69 actions: VecDeque<Action>,
70 waiting: Option<Instant>,
71 sleep: Option<Pin<Box<Sleep>>>,
72 read_wait: Option<Waker>,
73 rx: UnboundedReceiverStream<Action>,
186 impl Inner { impl
187 fn new(actions: VecDeque<Action>) -> (Inner, Handle) { in new()
490 impl fmt::Debug for Inner { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/future/future/
Dshared.rs21 struct Inner<Fut: Future> { struct
32 pub struct WeakShared<Fut: Future>(Weak<Inner<Fut>>); argument
49 impl<Fut: Future> fmt::Debug for Inner<Fut> { implementation
66 unsafe impl<Fut> Send for Inner<Fut> implementation
73 unsafe impl<Fut> Sync for Inner<Fut> implementation
188 impl<Fut> Inner<Fut> impl
202 impl<Fut> Inner<Fut> impl
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/time/
Dmod.rs113 struct Inner { struct
115 next_wake: AtomicOptionNonZeroU64,
118 wheels: RwLock<ShardedWheel>,
121 wheels_len: u32,
124 pub(super) is_shutdown: AtomicBool,
156 inner: Inner { in new() argument
458 impl Inner { impl
470 impl fmt::Debug for Inner { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/lock/
Dbilock.rs43 struct Inner<T> { struct
48 unsafe impl<T: Send> Send for Inner<T> {} implementation
49 unsafe impl<T: Send> Sync for Inner<T> {} implementation
194 impl<T: Unpin> Inner<T> { implementation
200 impl<T> Drop for Inner<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/sync/
Doneshot.rs379 struct Inner<T> { struct
381 state: AtomicUsize,
385 value: UnsafeCell<Option<T>>,
393 tx_task: Task,
401 rx_task: Task,
1124 impl<T> Inner<T> { impl
1238 unsafe impl<T: Send> Send for Inner<T> {} implementation
1239 unsafe impl<T: Send> Sync for Inner<T> {} implementation
1245 impl<T> Drop for Inner<T> { implementation
1272 impl<T: fmt::Debug> fmt::Debug for Inner<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/scheduler/multi_thread_alt/
Dpark.rs21 struct Inner { struct
23 state: AtomicUsize,
49 inner: Arc::new(Inner { in new() argument
103 impl Inner { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/scheduler/multi_thread/
Dpark.rs24 struct Inner { struct
26 state: AtomicUsize,
52 inner: Arc::new(Inner { in new() argument
113 impl Inner { implementation

12345678910>>...22