HomeSort by relevance Sort by last modified time
    Searched refs:unique_ptr (Results 126 - 150 of 2653) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolTypePointer.cpp 20 const IPDBSession &PDBSession, std::unique_ptr<IPDBRawSymbol> Symbol)
23 std::unique_ptr<PDBSymbol> PDBSymbolTypePointer::getPointeeType() const {
  /external/parameter-framework/upstream/parameter/
CommandHandlerWrapper.h 39 CommandHandlerWrapper(std::unique_ptr<IRemoteCommandHandler> &&wrapped);
45 std::unique_ptr<IRemoteCommandHandler> mWrapped;
  /frameworks/base/tools/aapt2/io/
File.h 45 virtual std::unique_ptr<IData> openAsData() = 0;
72 virtual std::unique_ptr<IFileCollectionIterator> iterator() = 0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/array.tuple/
get_rv.pass.cpp 22 typedef std::unique_ptr<double> T;
24 C c = {std::unique_ptr<double>(new double(3.5))};
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
move01.fail.cpp 12 // unique_ptr
14 // Test unique_ptr move assignment
34 std::unique_ptr<A> s(new A);
35 std::unique_ptr<A> s2;
move02.fail.cpp 12 // unique_ptr
14 // Test unique_ptr move assignment
34 const std::unique_ptr<A[]> s(new A[3]);
35 std::unique_ptr<A[]> s2;
pointer_type.pass.cpp 12 // unique_ptr
14 // Test unique_ptr<T[]>::pointer type
27 typedef std::unique_ptr<int[]> P;
31 typedef std::unique_ptr<int[], Deleter> P;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
default01.pass.cpp 12 // unique_ptr
14 // Test unique_ptr default ctor
16 // default unique_ptr ctor should only require default Deleter ctor
39 std::unique_ptr<int[]> p;
43 std::unique_ptr<int[], Deleter> p;
nullptr.pass.cpp 12 // unique_ptr
14 // unique_ptr(nullptr_t);
19 // default unique_ptr ctor should only require default Deleter ctor
38 std::unique_ptr<int[]> p(nullptr);
42 std::unique_ptr<int[], Deleter> p(nullptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
get_deleter.pass.cpp 12 // unique_ptr
30 std::unique_ptr<int[], Deleter> p;
34 const std::unique_ptr<int[], Deleter> p;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/
pointer_type.pass.cpp 12 // unique_ptr
14 // Test unique_ptr::pointer type
27 typedef std::unique_ptr<int> P;
31 typedef std::unique_ptr<int, Deleter> P;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move01.fail.cpp 12 // unique_ptr
14 // Test unique_ptr move assignment
34 std::unique_ptr<A> s(new A);
35 std::unique_ptr<A> s2;
move02.fail.cpp 12 // unique_ptr
14 // Test unique_ptr move assignment
34 const std::unique_ptr<A> s(new A);
35 std::unique_ptr<A> s2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
default01.pass.cpp 12 // unique_ptr
14 // Test unique_ptr default ctor
19 // default unique_ptr ctor should only require default Deleter ctor
38 std::unique_ptr<int> p;
42 std::unique_ptr<int, Deleter> p;
nullptr.pass.cpp 12 // unique_ptr
14 // unique_ptr(nullptr_t);
19 // default unique_ptr ctor should only require default Deleter ctor
38 std::unique_ptr<int> p(nullptr);
42 std::unique_ptr<int, Deleter> p(nullptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
get_deleter.pass.cpp 12 // unique_ptr
30 std::unique_ptr<int, Deleter> p;
34 const std::unique_ptr<int, Deleter> p;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.hash/
hash_unique_ptr.pass.cpp 13 // struct hash<unique_ptr<T, D>>
15 // typedef unique_ptr<T, D> argument_type;
17 // size_t operator()(const unique_ptr<T, D>& p) const;
26 std::unique_ptr<int> p(ptr);
27 std::hash<std::unique_ptr<int> > f;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
U_V.pass.cpp 24 typedef std::pair<std::unique_ptr<int>, short*> P;
25 P p(std::unique_ptr<int>(new int(3)), nullptr);
assign_rv_pair.pass.cpp 24 typedef std::pair<std::unique_ptr<int>, short> P;
25 P p1(std::unique_ptr<int>(new int(3)), 4);
  /system/connectivity/apmanager/dbus/
dbus_control.h 38 std::unique_ptr<ConfigAdaptorInterface> CreateConfigAdaptor(
40 std::unique_ptr<DeviceAdaptorInterface> CreateDeviceAdaptor(
42 std::unique_ptr<ManagerAdaptorInterface> CreateManagerAdaptor(
44 std::unique_ptr<ServiceAdaptorInterface> CreateServiceAdaptor(
46 std::unique_ptr<FirewallProxyInterface> CreateFirewallProxy(
49 std::unique_ptr<ShillProxyInterface> CreateShillProxy(
63 std::unique_ptr<brillo::dbus_utils::ExportedObjectManager> object_manager_;
64 std::unique_ptr<Manager> manager_;
  /system/update_engine/update_manager/
state_factory.cc 33 using std::unique_ptr;
43 unique_ptr<RealConfigProvider> config_provider(
45 unique_ptr<RealDevicePolicyProvider> device_policy_provider(
47 unique_ptr<RealRandomProvider> random_provider(new RealRandomProvider());
48 unique_ptr<RealShillProvider> shill_provider(
50 unique_ptr<RealSystemProvider> system_provider(
53 unique_ptr<RealTimeProvider> time_provider(new RealTimeProvider(clock));
54 unique_ptr<RealUpdaterProvider> updater_provider(
  /system/update_engine/
weave_service_factory.cc 25 std::unique_ptr<WeaveServiceInterface> ConstructWeaveService(
27 std::unique_ptr<WeaveServiceInterface> result;
  /system/webservd/libwebserv/
request_handler_callback.cc 23 void RequestHandlerCallback::HandleRequest(std::unique_ptr<Request> request,
24 std::unique_ptr<Response> response) {
server.cc 25 using std::unique_ptr;
30 unique_ptr<Server> Server::ConnectToServerViaDBus(
37 unique_ptr<Server> ret(server);
44 std::unique_ptr<Server> ConnectToServerViaBinder(
48 return unique_ptr<Server>(new BinderServer(
  /frameworks/base/tools/aapt2/
ResourceUtils.h 98 std::unique_ptr<Reference> tryParseReference(const StringPiece16& str, bool* outCreate = nullptr);
104 std::unique_ptr<BinaryPrimitive> tryParseNullOrEmpty(const StringPiece16& str);
110 std::unique_ptr<BinaryPrimitive> tryParseColor(const StringPiece16& str);
116 std::unique_ptr<BinaryPrimitive> tryParseBool(const StringPiece16& str);
122 std::unique_ptr<BinaryPrimitive> tryParseInt(const StringPiece16& str);
128 std::unique_ptr<BinaryPrimitive> tryParseFloat(const StringPiece16& str);
134 std::unique_ptr<BinaryPrimitive> tryParseEnumSymbol(const Attribute* enumAttr,
141 std::unique_ptr<BinaryPrimitive> tryParseFlagSymbol(const Attribute* enumAttr,
149 std::unique_ptr<Item> parseItemForAttribute(
153 std::unique_ptr<Item> parseItemForAttribute
    [all...]

Completed in 331 milliseconds

1 2 3 4 56 7 8 91011>>