HomeSort by relevance Sort by last modified time
    Searched defs:make_unique (Results 1 - 6 of 6) 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
  /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)...);
  /prebuilts/ndk/current/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;
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 9 // Cloning make_unique here until it's standard in C++14.
10 // Using a namespace to avoid conflicting with MSVC's std::make_unique (which
15 make_unique(Args &&... args) { function in namespace:helper
204 auto Result = helper::make_unique<NumberExprAST>(NumVal);
231 return helper::make_unique<VariableExprAST>(IdName);
255 return helper::make_unique<CallExprAST>(IdName, std::move(Args));
307 LHS = helper::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
344 return helper::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
355 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E));
363 auto Proto = helper::make_unique<PrototypeAST>("__anon_expr"
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 393 // Implement make_unique according to N3656.
400 /// auto p = make_unique<int>();
401 /// auto p = make_unique<std::tuple<int, int>>(0, 1);
404 make_unique(Args &&... args) { function in namespace:llvm
415 /// auto p = make_unique<int[]>(2); // value-initializes the array with 0's.
419 make_unique(size_t n) { function in namespace:llvm
426 make_unique(Args &&...) = delete;
  /frameworks/base/tools/aapt2/util/
Util.h 109 std::unique_ptr<T> make_unique(Args&&... args) { function in namespace:aapt::util

Completed in 110 milliseconds