Home
last modified time | relevance | path

Searched defs:View (Results 1 – 25 of 126) sorted by relevance

123456

/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.filter/
Dconstraints.compile.pass.cpp31 struct View : std::ranges::view_base { struct
32 struct NotInputIterator {
53 struct View : std::ranges::view_base { struct
68 struct View { struct
83 struct View : std::ranges::view_base { struct
98 struct View : std::ranges::view_base { struct
Dctor.default.pass.cpp59 using View = std::ranges::filter_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test() typedef
70 using View = std::ranges::filter_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test() typedef
90 … using View = std::ranges::filter_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test() typedef
94 using View = std::ranges::filter_view<NoexceptView, NoexceptPredicate>; in test() typedef
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.lazy.split/
Dconstraints.compile.pass.cpp37 using View = ForwardView; typedef
52 using View = InputView; typedef
86 using View = NonInputView; typedef
101 using View = ForwardRange; typedef
116 using View = ForwardView; typedef
137 using View = ForwardView; typedef
152 using View = InputView; typedef
175 using View = InputView; typedef
198 using View = InputView; typedef
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.chunk.by/
Dconstraints.compile.pass.cpp35 struct View : std::ranges::view_base { struct
54 struct View : std::ranges::view_base { struct
71 struct View { struct
90 struct View : std::ranges::view_base { struct
107 struct View : std::ranges::view_base { struct
Dtypes.h34 struct View : std::ranges::view_base { struct
35 constexpr explicit View(Iter b, Sent e) : begin_(b), end_(e) {} in View() argument
45 View(I b, S e) -> View<I, S>; argument
Dctor.default.pass.cpp77 … using View = std::ranges::chunk_by_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test() typedef
87 … using View = std::ranges::chunk_by_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test() typedef
107 using View = std::ranges::chunk_by_view<MayThrowView, MayThrowPredicate>; in test() typedef
111 using View = std::ranges::chunk_by_view<MayThrowView, NoexceptPredicate>; in test() typedef
115 using View = std::ranges::chunk_by_view<NoexceptView, MayThrowPredicate>; in test() typedef
119 using View = std::ranges::chunk_by_view<NoexceptView, NoexceptPredicate>; in test() typedef
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.transform/iterator/
Dderef.pass.cpp21 using View = std::ranges::transform_view<MoveOnlyView, PlusOne>; in main() typedef
29 using View = std::ranges::transform_view<MoveOnlyView, PlusOneMutable>; in main() typedef
37 using View = std::ranges::transform_view<MoveOnlyView, PlusOneNoexcept>; in main() typedef
45 using View = std::ranges::transform_view<MoveOnlyView, Increment>; in main() typedef
53 using View = std::ranges::transform_view<MoveOnlyView, IncrementRvalueRef>; in main() typedef
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.lazy.split/range.lazy.split.inner/
Diter_move.pass.cpp61 struct View : std::ranges::view_base { struct
62 static constexpr int N = 3;
63 int a[N] = {0, 1, 2};
64 int* iter_moves = nullptr;
67 constexpr View(int& iter_move_invocations) : iter_moves(&iter_move_invocations) { in View() argument
70 constexpr adl::MaybeNoexceptIterator<IsNoexcept> begin() { in begin()
73 constexpr adl::MaybeNoexceptIterator<IsNoexcept> end() { in end()
Diter_swap.pass.cpp63 struct View : std::ranges::view_base { struct
64 int* iter_swaps = nullptr;
67 constexpr View(int& iter_swap_invocations) : iter_swaps(&iter_swap_invocations) { in View() function
70 constexpr adl::MaybeNoexceptIterator<IsNoexcept> begin() { in begin()
73 constexpr adl::MaybeNoexceptIterator<IsNoexcept> end() { in end()
/external/rust/crates/grpcio-sys/grpc/third_party/opencensus-proto/gen-go/stats/v1/
Dstats.pb.go229 type View struct { struct
230 state protoimpl.MessageState
231 sizeCache protoimpl.SizeCache
232 unknownFields protoimpl.UnknownFields
236 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
238 Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
240 Measure *Measure `protobuf:"bytes,3,opt,name=measure,proto3" json:"measure,omitempty"`
244 Columns []string `protobuf:"bytes,4,rep,name=columns,proto3" json:"columns,omitempty"`
253 Aggregation isView_Aggregation `protobuf_oneof:"aggregation"`
256 func (x *View) Reset() {
[all …]
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.take/
Dtypes.h57 struct View : std::ranges::view_base { struct
58 constexpr explicit View(int* b, int* e) : begin_(b), end_(e) { } in View() argument
60 constexpr int* begin() const { return begin_; } in begin()
61 constexpr int* end() const { return end_; } in end()
65 int* end_;
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.drop/
Dtypes.h97 struct View : std::ranges::view_base { struct
98 constexpr explicit View(int* b, int* e) : begin_(b), end_(e) { } in View() argument
100 constexpr int* begin() const { return begin_; } in begin()
101 constexpr int* end() const { return end_; } in end()
105 int* end_;
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.all/
Dall.pass.cpp26 struct View : std::ranges::view_base { struct
28 explicit View() noexcept(IsNoexcept) = default; argument
29 constexpr explicit View(int start) : start_(start) {} in View() argument
35 static_assert(std::ranges::view<View<true>>); argument
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.elements/
Dctor.default.pass.cpp19 struct View : std::ranges::view_base { struct
21 constexpr explicit View() argument
Dctor.view.pass.cpp21 struct View : std::ranges::view_base { struct
28 static_assert(std::is_constructible_v<std::ranges::elements_view<View, 0>, View>); argument
Dbase.pass.cpp22 struct View : std::ranges::view_base { struct
28 struct MoveOnlyView : View { argument
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.split/
Dctor.default.pass.cpp19 struct View : std::ranges::view_base { struct
21 constexpr explicit View() argument
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.take.while/
Dctor.default.pass.cpp18 struct View : std::ranges::view_base { struct
20 constexpr explicit View() argument
Dctor.view.pass.cpp22 struct View : std::ranges::view_base { struct
41 static_assert(!test_convertible<std::ranges::take_while_view<View, Pred>, View, Pred>(), argument
Dbase.pass.cpp22 struct View : std::ranges::view_interface<View> { struct
28 struct MoveOnlyView : View { argument
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.drop.while/
Dctor.default.pass.cpp18 struct View : std::ranges::view_base { struct
20 constexpr explicit View() argument
Dctor.view.pass.cpp22 struct View : std::ranges::view_base { struct
41 static_assert(!test_convertible<std::ranges::drop_while_view<View, Pred>, View, Pred>(), argument
Dbase.pass.cpp21 struct View : std::ranges::view_base { struct
27 struct MoveOnlyView : View { argument
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.filter/iterator/
Dctor.default.pass.cpp23 using View = minimal_view<Iterator, sentinel_wrapper<Iterator>>; in test_default_constructible() typedef
35 using View = minimal_view<Iterator, sentinel_wrapper<Iterator>>; in test_not_default_constructible() typedef
/external/lottie/sample/src/main/kotlin/com/airbnb/lottie/samples/utils/
DTypeExtensions.kt52 fun View.showSnackbarLong(@StringRes message: Int) = in showSnackbarLong() method
55 fun View.showSnackbarLong(message: String) = in showSnackbarLong() method
58 fun View.setVisibleIf(condition: Boolean) { in showSnackbarLong() method
70 fun View.getText(@StringRes res: Int) = this.resources.getText(res) in Float() method

123456