Home
last modified time | relevance | path

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

/AliOS-Things-master/components/oss/include/alibabacloud/oss/utils/
A DOutcome.h28 Outcome():success_(false), e_(), r_() in Outcome() function
31 Outcome(const E& e) :success_(false), e_(e) in Outcome() function
34 Outcome(const R& r): success_(true), r_(r) in Outcome() function
37 Outcome(E&& e) : success_(false), e_(std::forward<E>(e)) in Outcome() function
40 Outcome(R&& r) : success_(true), r_(std::forward<R>(r)) in Outcome() function
43 Outcome(const Outcome& other) : in Outcome() function
49 Outcome(Outcome&& other): in Outcome() function
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/include/alibabacloud/core/
A DOutcome.h25 Outcome() : success_(true), e_(), r_() {} in Outcome() function
26 explicit Outcome(const E &e) : e_(e), success_(false), r_() {} in Outcome() function
27 explicit Outcome(const R &r) : r_(r), success_(true), e_() {} in Outcome() function
28 Outcome(const Outcome &other) in Outcome() function
30 Outcome(Outcome &&other) { *this = std::move(other); } in Outcome() function

Completed in 4 milliseconds