HomeSort by relevance Sort by last modified time
    Searched full:make_unique (Results 51 - 75 of 368) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt2/split/
TableSplitter.h 55 mSplits.push_back(util::make_unique<ResourceTable>());
TableSplitter_test.cpp 63 util::make_unique<Id>(),
66 util::make_unique<Id>(),
69 util::make_unique<Id>(),
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 122 V = llvm::make_unique<FixedStackPseudoSourceValue>(FI);
131 E = llvm::make_unique<GlobalValuePseudoSourceValue>(GV);
140 E = llvm::make_unique<ExternalSymbolPseudoSourceValue>(ES);
  /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)...);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 324 return make_unique<RuntimeDyldMachOARM>(MemMgr, Resolver);
326 return make_unique<RuntimeDyldMachOAArch64>(MemMgr, Resolver);
328 return make_unique<RuntimeDyldMachOI386>(MemMgr, Resolver);
330 return make_unique<RuntimeDyldMachOX86_64>(MemMgr, Resolver);
336 return llvm::make_unique<LoadedMachOObjectInfo>(*this, loadObjectImpl(O));
  /frameworks/base/tools/aapt2/link/
ReferenceLinker_test.cpp 41 .addSymbolSource(util::make_unique<ResourceTableSymbolSource>(table.get()))
81 style->entries.back().value = util::make_unique<RawString>(
168 .addSymbolSource(util::make_unique<ResourceTableSymbolSource>(table.get()))
189 .addSymbolSource(util::make_unique<ResourceTableSymbolSource>(table.get()))
213 .addSymbolSource(util::make_unique<ResourceTableSymbolSource>(table.get()))
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 213 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
240 return llvm::make_unique<VariableExprAST>(IdName);
264 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
317 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
353 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
364 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
372 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
374 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
531 TheModule = llvm::make_unique<Module>("my cool jit", getGlobalContext());
535 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get())
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 47 return make_unique<X86_64MachoTargetObjectFile>();
48 return make_unique<TargetLoweringObjectFileMachO>();
52 return make_unique<X86LinuxNaClTargetObjectFile>();
54 return make_unique<X86ELFTargetObjectFile>();
56 return make_unique<X86WindowsTargetObjectFile>();
58 return make_unique<TargetLoweringObjectFileCOFF>();
166 I = llvm::make_unique<X86Subtarget>(TargetTriple, CPU, FS, *this,
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 61 auto Y = make_unique<ELFYAML::Object>();
277 auto S = make_unique<ELFYAML::RelocationSection>();
301 auto S = make_unique<ELFYAML::RelocationSection>();
326 auto S = make_unique<ELFYAML::RawContentSection>();
343 auto S = make_unique<ELFYAML::NoBitsSection>();
354 auto S = make_unique<ELFYAML::Group>();
401 auto S = make_unique<ELFYAML::MipsABIFlags>();
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 288 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
315 return llvm::make_unique<VariableExprAST>(IdName);
339 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
368 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
414 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
453 return llvm::make_unique<UnaryExprAST>(Opc, std::move(Operand));
490 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
567 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
579 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
587 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr"
    [all...]
  /frameworks/base/tools/aapt2/
ResourceUtils.cpp 241 std::unique_ptr<Reference> value = util::make_unique<Reference>(ref);
250 return util::make_unique<Reference>(ref, Reference::Type::kAttribute);
269 return util::make_unique<BinaryPrimitive>(value);
283 return util::make_unique<BinaryPrimitive>(value);
297 return util::make_unique<BinaryPrimitive>(flags);
319 return util::make_unique<BinaryPrimitive>(flags);
386 return error ? std::unique_ptr<BinaryPrimitive>() : util::make_unique<BinaryPrimitive>(value);
416 return util::make_unique<BinaryPrimitive>(value);
426 return util::make_unique<BinaryPrimitive>(value);
434 return util::make_unique<BinaryPrimitive>(value)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 255 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
282 return llvm::make_unique<VariableExprAST>(IdName);
306 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
335 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
381 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
441 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
477 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
488 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
496 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
498 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/clang/unittests/Tooling/
ToolingTest.cpp 67 runToolOnCode(new TestAction(llvm::make_unique<FindTopLevelDeclConsumer>(
107 runToolOnCode(new TestAction(llvm::make_unique<FindClassDeclXConsumer>(
114 runToolOnCode(new TestAction(llvm::make_unique<FindClassDeclXConsumer>(
139 return llvm::make_unique<FindTopLevelDeclConsumer>(nullptr);
211 return llvm::make_unique<FindTopLevelDeclConsumer>(&Matched);
253 return llvm::make_unique<SkipBodyConsumer>();
  /external/llvm/docs/tutorial/
LangImpl2.rst 154 auto LHS = llvm::make_unique<VariableExprAST>("x");
155 auto RHS = llvm::make_unique<VariableExprAST>("y");
156 auto Result = std::make_unique<BinaryExprAST>('+', std::move(LHS),
209 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
275 return llvm::make_unique<VariableExprAST>(IdName);
299 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
502 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
532 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
592 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
607 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 88 auto Streamer = llvm::make_unique<BufferDataStreamer>(std::move(Buffer));
113 llvm::make_unique<StreamingMemoryObject>(std::move(Streamer));
114 auto Reader = llvm::make_unique<BitstreamReader>(std::move(OwnedBytes));
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 110 std::unique_ptr<StyledString> localizedString = util::make_unique<StyledString>(
132 std::unique_ptr<Plural> localized = util::make_unique<Plural>();
152 std::unique_ptr<String> localized = util::make_unique<String>(mPool->makeRef(result));
  /frameworks/base/tools/aapt2/flatten/
TableFlattener_test.cpp 152 util::make_unique<BinaryPrimitive>(uint8_t(Res_value::TYPE_INT_DEC), 1u))
155 util::make_unique<BinaryPrimitive>(uint8_t(Res_value::TYPE_INT_DEC), 2u))
217 util::make_unique<Attribute>(attr))
  /hardware/libhardware/tests/input/evdev/
InputHub_test.cpp 129 auto tempDir = std::make_unique<TempDir>();
160 auto tempDir = std::make_unique<TempDir>();
202 auto tempDir = std::make_unique<TempDir>();
  /external/clang/lib/StaticAnalyzer/Checkers/
FixedAddressChecker.cpp 60 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N);
MacOSKeychainAPIChecker.cpp 270 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N);
271 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
315 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N);
316 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(V));
371 auto Report = llvm::make_unique<BugReport>(
437 auto Report = llvm::make_unique<BugReport>(
439 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(ArgSM));
548 llvm::make_unique<BugReport>(*BT, os.str(), N, LocUsedForUniqueing,
551 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
TaintTesterChecker.cpp 53 auto report = llvm::make_unique<BugReport>(*BT, "tainted",N);
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 207 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
234 return llvm::make_unique<VariableExprAST>(IdName);
258 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
311 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
347 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
358 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
366 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
368 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
580 TheModule = llvm::make_unique<Module>("my cool jit", getGlobalContext());
  /external/llvm/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 55 return make_unique<LR>(std::move(ExternalLookupFtor),
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.cpp 78 return llvm::make_unique<FunctionArgEnumerator>(Session, *this);
  /external/llvm/lib/Target/MSP430/
MSP430TargetMachine.cpp 35 TLOF(make_unique<TargetLoweringObjectFileELF>()),

Completed in 3055 milliseconds

1 23 4 5 6 7 8 91011>>