HomeSort by relevance Sort by last modified time
    Searched refs:make_unique (Results 176 - 200 of 1281) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_parcelable.cpp 72 std::make_unique<pdx::default_transport::ChannelParcelable>();
  /frameworks/native/services/surfaceflinger/tests/unittests/
EventControlThreadTest.cpp 61 mThread = std::make_unique<android::impl::EventControlThread>(
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 54 auto library = std::make_unique<SharedLibrary>(String8(path.c_str()));
  /hardware/interfaces/graphics/composer/2.2/utils/hal/include/composer-hal/2.2/
Composer.h 41 return std::make_unique<ComposerImpl>(std::move(hal));
  /hardware/libhardware/modules/camera/3_4/
format_metadata_factory.cpp 238 insertion_point = std::make_unique<Property<ArrayVector<int32_t, 4>>>(
241 insertion_point = std::make_unique<Property<ArrayVector<int64_t, 4>>>(
244 insertion_point = std::make_unique<Property<ArrayVector<int64_t, 4>>>(
246 insertion_point = std::make_unique<Property<int64_t>>(
static_properties.h 57 std::make_unique<MetadataReader>(std::move(metadata)));
  /packages/services/Car/tools/keventreader/server/
eventgatherer.cpp 24 auto dev = std::make_unique<InputSource>(argv[i]);
main.cpp 62 auto service = std::make_unique<EventProviderImpl>(std::move(gatherer));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 42 Mapping = llvm::make_unique<MappingInfo>(Record.content());
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolDeserializer.h 42 Mapping = llvm::make_unique<MappingInfo>(Record.content());
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
SyncScope.h 148 return llvm::make_unique<AtomicScopeOpenCLModel>();
  /system/media/audio_utils/tests/
errorlog_tests.cpp 32 auto elog = std::make_unique<ErrorLog<int32_t>>(100 /* lines */);
powerlog_tests.cpp 32 auto plog = std::make_unique<PowerLog>(
simplelog_tests.cpp 32 auto slog = std::make_unique<SimpleLog>();
  /external/llvm/lib/DebugInfo/PDB/Raw/
PDBFile.cpp 181 auto TempInfo = llvm::make_unique<InfoStream>(std::move(*InfoS));
194 auto TempDbi = llvm::make_unique<DbiStream>(*this, std::move(*DbiS));
207 auto TempTpi = llvm::make_unique<TpiStream>(*this, std::move(*TpiS));
220 auto TempIpi = llvm::make_unique<TpiStream>(*this, std::move(*IpiS));
241 llvm::make_unique<PublicsStream>(*this, std::move(*PublicS));
261 auto TempSymbols = llvm::make_unique<SymbolStream>(std::move(*SymbolS));
287 auto N = llvm::make_unique<NameHashTable>();
  /frameworks/base/tools/aapt2/cmd/
Util.cpp 89 std::unique_ptr<AxisConfigFilter> filter = util::make_unique<AxisConfigFilter>();
174 std::unique_ptr<xml::Element> manifest_el = util::make_unique<xml::Element>();
184 util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_INT_DEC, version_code)});
192 util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_INT_DEC, revision_code)});
219 std::unique_ptr<xml::Element> application_el = util::make_unique<xml::Element>();
223 util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_INT_BOOLEAN, 0u)});
227 std::unique_ptr<xml::XmlResource> doc = util::make_unique<xml::XmlResource>();
  /frameworks/base/tools/aapt2/
ResourceTable_test.cpp 114 util::make_unique<Attribute>(), test::GetDiagnostics()));
131 util::make_unique<Attribute>(attr_one), test::GetDiagnostics()));
133 util::make_unique<Attribute>(attr_two), test::GetDiagnostics()));
141 util::make_unique<Id>(),
145 util::make_unique<Id>(),
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 320 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
347 return llvm::make_unique<VariableExprAST>(IdName);
371 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
495 return llvm::make_unique<VarExprAST>(std::move(VarNames), std::move(Body));
536 return llvm::make_unique<UnaryExprAST>(Opc, std::move(Operand));
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
662 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]

Completed in 1236 milliseconds

1 2 3 4 5 6 78 91011>>