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

  /external/parameter-framework/upstream/utility/
Memory.hpp 36 /** Implementation of C++14's std::make_unique.
41 std::unique_ptr<T> make_unique(Args &&... args) function in namespace:utility
  /external/skia/src/core/
SkMakeUnique.h 15 // std::make_unique is in C++14
17 std::unique_ptr<T> make_unique(Args&&... args) { function in namespace:skstd
  /system/core/libmemunreachable/
Allocator.h 81 unique_ptr<T> make_unique(Args&&... args) { function in class:Heap
191 unique_ptr make_unique(Args&& ...args) {
192 return heap_.template make_unique<T>(std::forward<Args>(args)...);
  /frameworks/base/libs/androidfw/include/androidfw/
Util.h 36 std::unique_ptr<T> make_unique(Args&&... args) { function in namespace:android::util
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unique_ptr.h 758 /// std::make_unique for single objects
761 make_unique(_Args&&... __args) function
764 /// std::make_unique for arrays of unknown bound
767 make_unique(size_t __num) function
770 /// Disable std::make_unique for arrays of known bound
773 make_unique(_Args&&...) = delete;
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unique_ptr.h 761 /// std::make_unique for single objects
764 make_unique(_Args&&... __args) function
767 /// std::make_unique for arrays of unknown bound
770 make_unique(size_t __num) function
773 /// Disable std::make_unique for arrays of known bound
776 make_unique(_Args&&...) = delete;
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unique_ptr.h 761 /// std::make_unique for single objects
764 make_unique(_Args&&... __args) function
767 /// std::make_unique for arrays of unknown bound
770 make_unique(size_t __num) function
773 /// Disable std::make_unique for arrays of known bound
776 make_unique(_Args&&...) = delete;
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 10 // Cloning make_unique here until it's standard in C++14.
11 // Using a namespace to avoid conflicting with MSVC's std::make_unique (which
16 make_unique(Args &&... args) { function in namespace:helper
205 auto Result = helper::make_unique<NumberExprAST>(NumVal);
232 return helper::make_unique<VariableExprAST>(IdName);
256 return helper::make_unique<CallExprAST>(IdName, std::move(Args));
308 LHS = helper::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
345 return helper::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
356 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E));
364 auto Proto = helper::make_unique<PrototypeAST>("__anon_expr"
    [all...]
  /frameworks/base/tools/aapt2/util/
Util.h 112 std::unique_ptr<T> make_unique(Args&&... args) { function in namespace:aapt::util
  /external/llvm/include/llvm/ADT/
STLExtras.h 442 // Implement make_unique according to N3656.
449 /// auto p = make_unique<int>();
450 /// auto p = make_unique<std::tuple<int, int>>(0, 1);
453 make_unique(Args &&... args) { function in namespace:llvm
464 /// auto p = make_unique<int[]>(2); // value-initializes the array with 0's.
468 make_unique(size_t n) { function in namespace:llvm
475 make_unique(Args &&...) = delete;

Completed in 267 milliseconds