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

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 262 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N);
263 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
307 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N);
308 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(V));
363 auto Report = llvm::make_unique<BugReport>(
429 auto Report = llvm::make_unique<BugReport>(
431 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(ArgSM));
540 llvm::make_unique<BugReport>(*BT, os.str(), N, LocUsedForUniqueing,
543 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
CallAndMessageChecker.cpp 104 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N);
174 auto R = llvm::make_unique<BugReport>(*BT, Message, N);
209 auto R = llvm::make_unique<BugReport>(*BT, Desc, N);
291 auto R = llvm::make_unique<BugReport>(*BT, os.str(), N);
352 auto R = llvm::make_unique<BugReport>(*BT, Desc, N);
411 llvm::make_unique<BugReport>(*BT_call_few_args, os.str(), N));
471 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N);
514 auto report = llvm::make_unique<BugReport>(*BT_msg_ret, os.str(), N);
DivZeroChecker.cpp 42 auto R = llvm::make_unique<BugReport>(*BT, Msg, N);
  /frameworks/base/libs/hwui/tests/unit/
SkiaPipelineTests.cpp 50 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
71 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
105 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
129 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
174 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
198 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
320 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
350 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
380 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread);
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator_test.cpp 31 util::make_unique<StyledString>(pool.MakeRef(original_style)).get(),
52 util::make_unique<StyledString>(pool.MakeRef(original_style)).get(),
78 util::make_unique<StyledString>(pool.MakeRef(original_style)).get(),
100 util::make_unique<StyledString>(pool.MakeRef(original_style)).get(),
123 util::make_unique<StyledString>(pool.MakeRef(original_style)).get(),
160 util::make_unique<StyledString>(pool.MakeRef(original_style));
238 std::unique_ptr<ResourceTable> table = util::make_unique<ResourceTable>();
246 util::make_unique<StyledString>(table->string_pool.MakeRef(original_style));
250 auto string = util::make_unique<String>(table->string_pool.MakeRef(original_style.str));
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
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...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
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...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
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...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 300 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
327 return llvm::make_unique<VariableExprAST>(IdName);
351 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
380 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
426 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
465 return llvm::make_unique<UnaryExprAST>(Opc, std::move(Operand));
502 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
579 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
591 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
599 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr"
    [all...]
  /frameworks/base/cmds/statsd/benchmark/
metric_util.cpp 250 auto event = std::make_unique<LogEvent>(android::util::SCREEN_STATE_CHANGED, timestampNs);
258 auto event = std::make_unique<LogEvent>(android::util::SCREEN_BRIGHTNESS_CHANGED, timestampNs);
268 auto event = std::make_unique<LogEvent>(android::util::SCHEDULED_JOB_STATE_CHANGED, timestampNs);
294 auto event = std::make_unique<LogEvent>(android::util::WAKELOCK_STATE_CHANGED, timestampNs);
319 auto event = std::make_unique<LogEvent>(
342 auto event = std::make_unique<LogEvent>(android::util::SYNC_STATE_CHANGED, timestampNs);
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 317 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
344 return llvm::make_unique<VariableExprAST>(IdName);
368 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
443 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
492 return llvm::make_unique<VarExprAST>(std::move(VarNames), std::move(Body));
533 return llvm::make_unique<UnaryExprAST>(Opc, std::move(Operand));
570 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
647 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
659 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /art/compiler/linker/
output_stream_test.cc 84 BufferedOutputStream buffered_output_stream(std::make_unique<FileOutputStream>(tmp.GetFile()));
130 std::unique_ptr<CheckingOutputStream> cos = std::make_unique<CheckingOutputStream>();
  /bionic/tests/libs/
bionic_tests_zipalign.cpp 53 entries->emplace_back(std::make_pair(std::make_unique<ZipEntry>(entry),
54 std::make_unique<ZipString>(name)));
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 102 R.addListener(llvm::make_unique<ModuleDependencyListener>(*this));
107 llvm::make_unique<ModuleDependencyMMCallbacks>(*this));
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyTargetMachine.cpp 59 TLOF(make_unique<WebAssemblyTargetObjectFile>()) {
93 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
  /external/parameter-framework/upstream/parameter/
SystemClass.cpp 107 utility::make_unique<VirtualSubsystemBuilder>(_logger));
193 auto library = utility::make_unique<DynamicLibrary>(strPluginFileName);
  /external/skia/debugger/
SkDebugger.cpp 16 : fDebugCanvas(skstd::make_unique<SkDebugCanvas>(0, 0))
23 fDebugCanvas = skstd::make_unique<SkDebugCanvas>(
  /external/skqp/debugger/
SkDebugger.cpp 16 : fDebugCanvas(skstd::make_unique<SkDebugCanvas>(0, 0))
23 fDebugCanvas = skstd::make_unique<SkDebugCanvas>(
  /frameworks/base/tools/aapt2/format/proto/
ProtoSerialize_test.cpp 46 .AddValue("com.app.a:id/foo", {}, util::make_unique<Id>())
61 std::unique_ptr<Plural> plural = util::make_unique<Plural>();
62 plural->values[Plural::One] = util::make_unique<String>(table->string_pool.MakeRef("one"));
72 util::make_unique<StyledString>(table->string_pool.MakeRef(style_string)),
91 util::make_unique<Reference>(expected_ref), context->GetDiagnostics()));
189 std::unique_ptr<xml::Text> text = util::make_unique<xml::Text>();
195 std::unique_ptr<xml::Element> child = util::make_unique<xml::Element>();
198 text = util::make_unique<xml::Text>();
  /frameworks/base/tools/aapt2/process/
SymbolTable_test.cpp 73 symbol_table.AppendSource(util::make_unique<ResourceTableSymbolSource>(table.get()));
107 auto asset_manager_source = util::make_unique<AssetManagerSymbolSource>();
  /hardware/google/av/codec2/vndk/bufferpool/
BufferStatus.cpp 49 std::make_unique<BufferStatusQueue>(kNumElementsInQueue);
95 std::make_unique<BufferStatusQueue>(fmqDesc);
  /system/update_engine/payload_consumer/
bzip_extent_writer_unittest.cc 71 BzipExtentWriter bzip_writer(std::make_unique<DirectExtentWriter>());
106 BzipExtentWriter bzip_writer(std::make_unique<DirectExtentWriter>());
  /art/dex2oat/linker/
elf_writer_quick.cc 151 return std::make_unique<ElfWriterQuick<ElfTypes64>>(instruction_set,
156 return std::make_unique<ElfWriterQuick<ElfTypes32>>(instruction_set,
177 std::make_unique<BufferedOutputStream>(std::make_unique<FileOutputStream>(elf_file))),
  /bionic/tools/versioner/src/
VFS.cpp 71 auto vfs = std::make_unique<InMemoryFileSystem>();
  /external/clang/lib/Frontend/Rewrite/
HTMLPrint.cpp 54 return llvm::make_unique<HTMLPrinter>(OS, PP, SyntaxHighlight,

Completed in 324 milliseconds

1 2 3 4 5 6 7 891011>>