Home
last modified time | relevance | path

Searched defs:TupleImpl (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp116209 struct TupleImpl<Index> { struct
116210 bool operator==(const TupleImpl<Index>& aOther) const in operator ==()
116222 struct TupleImpl<Index, HeadT, TailT...> struct
116225 typedef TupleImpl<Index + 1, TailT...> Base;
116232 static HeadT& Head(TupleImpl& aTuple) { return aTuple.mHead; } in Head()
116233 static const HeadT& Head(const TupleImpl& aTuple) { return aTuple.mHead; } in Head()
116234 static Base& Tail(TupleImpl& aTuple) { return aTuple; } in Tail()
116235 static const Base& Tail(const TupleImpl& aTuple) { return aTuple; } in Tail()
116237 TupleImpl() : Base(), mHead() { } in TupleImpl() function
116240 explicit TupleImpl(const HeadT& aHead, const TailT&... aTail) in TupleImpl() function
[all …]