HomeSort by relevance Sort by last modified time
    Searched defs:IndexSequence (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/
tuple.h 41 struct IndexSequence {};
52 using Type = IndexSequence<>;
55 using Type = IndexSequence<0>;
58 using Type = IndexSequence<0,1>;
61 using Type = IndexSequence<0,1,2>;
64 using Type = IndexSequence<0,1,2,3>;
67 using Type = IndexSequence<0,1,2,3,4>;
70 using Type = IndexSequence<0,1,2,3,4,5>;
73 using Type = IndexSequence<0,1,2,3,4,5,6>;
76 using Type = IndexSequence<0,1,2,3,4,5,6,7>
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
sequence.h 17 struct IndexSequence {
18 using type = IndexSequence;
30 struct MergeSequencesAndRenumber<IndexSequence<I1...>, IndexSequence<I2...>>
31 : IndexSequence<I1..., (sizeof...(I1) + I2)...> {};
35 // Utility to build an IndexSequence with N indices.
43 struct MakeIndexSequence<0> : IndexSequence<> {};
45 struct MakeIndexSequence<1> : IndexSequence<0> {};
47 // Utility to build an IndexSequence with indices for each element of a

Completed in 365 milliseconds