OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:make_unique_ptr
(Results
1 - 2
of
2
) sorted by null
/external/libbrillo/brillo/
make_unique_ptr.h
13
// Doing e.g.
make_unique_ptr
(new FooBarBaz<type>(arg)) is a shorter notation
19
std::unique_ptr<T>
make_unique_ptr
(T* ptr) {
function in namespace:brillo
/external/clang/test/SemaCXX/
rval-references-examples.cpp
56
unique_ptr<T>
make_unique_ptr
(Args &&...args) {
function
68
unique_ptr<int> p2(
make_unique_ptr
<int>(17));
69
unique_ptr<int> p3 =
make_unique_ptr
<int>(17);
77
p2 =
make_unique_ptr
<int>(0);
83
accept_unique_ptr(
make_unique_ptr
<double>(0.0));
Completed in 79 milliseconds