Home
last modified time | relevance | path

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

12345678910

/external/clang/test/CXX/temp/temp.decls/temp.variadic/
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 …]
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
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 …]
/external/flatbuffers/rust/flatbuffers/src/
Dfollow.rs31 type Inner; typedef
32 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner; in follow()
38 pub fn lifted_follow<'a, T: Follow<'a>>(buf: &'a [u8], loc: usize) -> T::Inner { in lifted_follow()
52 pub fn self_follow(&'a self, buf: &'a [u8], loc: usize) -> T::Inner { in self_follow()
57 type Inner = T::Inner; typedef
59 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
Dtable.rs40 default: Option<T::Inner>, in get()
41 ) -> Option<T::Inner> { in get()
51 type Inner = Table<'a>; typedef
53 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
59 pub fn get_root<'a, T: Follow<'a> + 'a>(data: &'a [u8]) -> T::Inner { in get_root()
63 pub fn get_size_prefixed_root<'a, T: Follow<'a> + 'a>(data: &'a [u8]) -> T::Inner { in get_size_prefixed_root()
Dprimitives.rs177 type Inner = T::Inner; typedef
179 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
198 type Inner = T::Inner; typedef
200 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
228 type Inner = T::Inner; typedef
230 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
250 type Inner = T::Inner; typedef
252 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
261 type Inner = T::Inner; typedef
263 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
[all …]
Dvector.rs64 pub fn get(&self, idx: usize) -> T::Inner { in get()
121 type Inner = &'a str; typedef
122 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
143 type Inner = &'a [T]; typedef
144 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
151 type Inner = Vector<'a, T>; typedef
152 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { in follow()
197 fn next(&mut self) -> Option<T::Inner> { in next()
212 fn nth(&mut self, n: usize) -> Option<T::Inner> { in nth()
233 fn next_back(&mut self) -> Option<T::Inner> { in next_back()
[all …]
/external/rust/crates/structopt/tests/
Dgenerics.rs6 struct Inner { in generic_struct_flatten() struct
7 pub answer: isize, in generic_struct_flatten()
27 struct Inner { in generic_struct_flatten_w_where_clause() struct
28 pub answer: isize, in generic_struct_flatten_w_where_clause()
51 struct Inner { in generic_enum() struct
52 pub answer: isize, in generic_enum()
70 struct Inner { in generic_enum_w_where_clause() struct
71 pub answer: isize, in generic_enum_w_where_clause()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
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;
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
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
Dp19.cpp5 template<typename U> struct Inner { }; struct
11 struct X<int>::Inner { struct in X
12 U member;
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.class/
Dp1.cpp9 struct X0<T, U>::Inner { struct in X0
10 T x;
11 U y;
13 void f() { x = y; } // expected-error{{incompatible}} in f()
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
Dp6.cpp41 template<typename Y> struct Inner<T, Y> {}; // expected-note{{previous}} struct
42 template<typename Y> struct Inner<U, Y> {}; // expected-error{{cannot be redeclared}} struct
64 struct Inner<T, T> { struct
65 static const bool value = true;
69 struct Inner { struct
70 static const bool value = false;
/external/rust/crates/tokio/src/runtime/blocking/
Dpool.rs26 struct Inner { struct
28 shared: Mutex<Shared>,
31 condvar: Condvar,
34 thread_name: ThreadNameFn,
37 stack_size: Option<usize>,
40 after_start: Option<Callback>,
43 before_stop: Option<Callback>,
46 thread_cap: usize,
49 keep_alive: Duration,
251 impl Inner { impl
/external/clang/test/SemaTemplate/
Denum-bool.cpp6 struct Inner { struct
7 Inner() {} in Inner() function
/external/rust/crates/futures-util/src/lock/
Dbilock.rs43 struct Inner<T> { struct
48 unsafe impl<T: Send> Send for Inner<T> {} argument
49 unsafe impl<T: Send> Sync for Inner<T> {} implementation
184 impl<T: Unpin> Inner<T> { implementation
190 impl<T> Drop for Inner<T> { implementation
/external/rust/crates/tokio/src/park/
Dthread.rs24 struct Inner { struct
43 inner: Arc::new(Inner { in new() argument
78 impl Inner { impl
304 impl Inner { implementation
310 unsafe fn from_raw(ptr: *const ()) -> Arc<Inner> { in from_raw()
311 Arc::from_raw(ptr as *const Inner) in from_raw() constant
/external/rust/crates/tokio/src/runtime/
Dpark.rs23 struct Inner { struct
25 state: AtomicUsize,
28 mutex: Mutex<()>,
31 condvar: Condvar,
56 inner: Arc::new(Inner { in new() argument
119 impl Inner { impl
/external/rust/crates/crossbeam-utils/src/sync/
Dparker.rs287 inner: Arc::from_raw(ptr as *const Inner), in from_raw() constant
310 struct Inner { struct
316 impl Inner { argument
/external/rust/crates/crossbeam-channel/src/
Dcontext.rs23 struct Inner { struct
25 select: AtomicUsize,
28 packet: AtomicPtr<()>,
31 thread: Thread,
34 thread_id: ThreadId,
/external/rust/crates/mio/src/sys/windows/
Dnamed_pipe.rs87 struct Inner { struct
88 handle: pipe::NamedPipe,
90 connect: Overlapped,
91 connecting: AtomicBool,
93 read: Overlapped,
94 write: Overlapped,
96 io: Mutex<Io>,
98 pool: Mutex<BufferPool>,
466 impl Inner { implementation
474 fn schedule_read(me: &Arc<Inner>, io: &mut Io, events: Option<&mut Vec<Event>>) -> bool { in schedule_read()
[all …]
/external/rust/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 { implementation
187 fn new(actions: VecDeque<Action>) -> (Inner, Handle) { in new()
490 impl fmt::Debug for Inner { implementation
/external/clang/test/CXX/class.access/class.friend/
Dp11.cpp68 struct Inner { in foo() struct
70 static void f() {} in foo()
76 struct Inner { in foo() struct
82 struct Inner { in foo() struct
/external/crosvm/common/cros_asyncv2/src/blocking/
Dpool.rs34 fn run_blocking_thread(idx: usize, inner: Arc<Inner>, exit: Sender<usize>) { in run_blocking_thread()
96 struct Inner { struct
103 impl Inner { implementation
104 fn schedule(self: &Arc<Inner>, runnable: Runnable) { in schedule()
/external/rust/crates/tokio/src/io/driver/
Dmod.rs60 pub(super) struct Inner { struct
67 resources: Mutex<Option<Slab<ScheduledIo>>>,
70 registry: mio::Registry,
73 pub(super) io_dispatch: slab::Allocator<ScheduledIo>,
76 waker: mio::Waker,
210 impl Drop for Inner { implementation
298 pub(super) fn inner(&self) -> Option<Arc<Inner>> { in inner()
317 impl Inner { implementation

12345678910