OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unique_ptr
(Results
251 - 275
of
2653
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h
25
std::
unique_ptr
<DiagnosticConsumer> OwningPrimary;
27
std::
unique_ptr
<DiagnosticConsumer> Secondary;
30
ChainedDiagnosticConsumer(std::
unique_ptr
<DiagnosticConsumer> Primary,
31
std::
unique_ptr
<DiagnosticConsumer> Secondary)
37
std::
unique_ptr
<DiagnosticConsumer> Secondary)
/external/clang/include/clang/Rewrite/Frontend/
FrontendActions.h
25
std::
unique_ptr
<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
31
std::
unique_ptr
<FixItRewriter> Rewriter;
32
std::
unique_ptr
<FixItOptions> FixItOpts;
34
std::
unique_ptr
<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
62
std::
unique_ptr
<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.assign/
assign_value.pass.cpp
60
optional<std::
unique_ptr
<int>> opt;
61
opt = std::
unique_ptr
<int>(new int(3));
66
optional<std::
unique_ptr
<int>> opt(std::
unique_ptr
<int>(new int(2)));
67
opt = std::
unique_ptr
<int>(new int(3));
/external/libweave/examples/provider/
ssl_stream.h
49
std::
unique_ptr
<BIO, SslDeleter> stream_bio);
52
std::
unique_ptr
<SSLStream> stream,
55
std::
unique_ptr
<SSLStream> stream,
63
std::
unique_ptr
<SSL_CTX, SslDeleter> ctx_;
64
std::
unique_ptr
<SSL, SslDeleter> ssl_;
avahi_client.h
34
std::
unique_ptr
<AvahiThreadedPoll, decltype(&avahi_threaded_poll_free)>
37
std::
unique_ptr
< ::AvahiClient, decltype(&avahi_client_free)> client_{
40
std::
unique_ptr
<AvahiEntryGroup, decltype(&avahi_entry_group_free)> group_{
/external/llvm/include/llvm/Object/
FunctionIndexObjectFile.h
32
std::
unique_ptr
<FunctionInfoIndex> Index;
36
std::
unique_ptr
<FunctionInfoIndex> I);
66
std::
unique_ptr
<FunctionInfoIndex> takeIndex();
89
static ErrorOr<std::
unique_ptr
<FunctionIndexObjectFile>>
105
ErrorOr<std::
unique_ptr
<FunctionInfoIndex>>
IRObjectFile.h
28
std::
unique_ptr
<Module> M;
29
std::
unique_ptr
<Mangler> Mang;
33
IRObjectFile(MemoryBufferRef Object, std::
unique_ptr
<Module> M);
52
std::
unique_ptr
<Module> takeModule();
68
static ErrorOr<std::
unique_ptr
<IRObjectFile>> create(MemoryBufferRef Object,
/frameworks/base/tools/aapt2/io/
ZipArchive.h
37
std::
unique_ptr
<IData> openAsData() override;
56
std::map<std::string, std::
unique_ptr
<IFile>>::const_iterator mCurrent, mEnd;
64
static std::
unique_ptr
<ZipFileCollection> create(const StringPiece& path,
68
std::
unique_ptr
<IFileCollectionIterator> iterator() override;
77
std::map<std::string, std::
unique_ptr
<IFile>> mFiles;
/frameworks/base/tools/aapt2/proto/
ProtoSerialize.h
31
std::
unique_ptr
<pb::ResourceTable> serializeTableToPb(ResourceTable* table);
32
std::
unique_ptr
<ResourceTable> deserializeTableFromPb(const pb::ResourceTable& pbTable,
36
std::
unique_ptr
<pb::CompiledFile> serializeCompiledFileToPb(const ResourceFile& file);
37
std::
unique_ptr
<ResourceFile> deserializeCompiledFileFromPb(const pb::CompiledFile& pbFile,
68
std::
unique_ptr
<pb::CompiledFile> mPbFile;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.assign/
assign_value.pass.cpp
60
optional<std::
unique_ptr
<int>> opt;
61
opt = std::
unique_ptr
<int>(new int(3));
66
optional<std::
unique_ptr
<int>> opt(std::
unique_ptr
<int>(new int(2)));
67
opt = std::
unique_ptr
<int>(new int(3));
/system/connectivity/shill/
daemon_task.h
112
std::
unique_ptr
<EventDispatcher> dispatcher_;
113
std::
unique_ptr
<ControlInterface> control_;
114
std::
unique_ptr
<Metrics> metrics_;
121
std::
unique_ptr
<Callback80211Metrics> callback80211_metrics_;
123
std::
unique_ptr
<Manager> manager_;
/external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp
14
typename std::enable_if<!std::is_array<T>::value, std::
unique_ptr
<T>>::type
16
return std::
unique_ptr
<T>(new T(std::forward<Args>(args)...));
121
std::
unique_ptr
<ExprAST> LHS, RHS;
124
BinaryExprAST(char Op, std::
unique_ptr
<ExprAST> LHS,
125
std::
unique_ptr
<ExprAST> RHS)
132
std::vector<std::
unique_ptr
<ExprAST>> Args;
136
std::vector<std::
unique_ptr
<ExprAST>> Args)
154
std::
unique_ptr
<PrototypeAST> Proto;
155
std::
unique_ptr
<ExprAST> Body;
158
FunctionAST(std::
unique_ptr
<PrototypeAST> Proto
[
all
...]
/build/kati/
find.h
46
unique_ptr
<FindCond> print_cond;
47
unique_ptr
<FindCond> prune_cond;
52
unique_ptr
<unordered_set<string>> read_dirs;
/external/libbrillo/brillo/
value_conversion.h
61
std::
unique_ptr
<base::ListValue>* out_value);
63
std::
unique_ptr
<base::DictionaryValue>* out_value);
106
BRILLO_EXPORT std::
unique_ptr
<base::Value> ToValue(int value);
107
BRILLO_EXPORT std::
unique_ptr
<base::Value> ToValue(bool value);
108
BRILLO_EXPORT std::
unique_ptr
<base::Value> ToValue(double value);
109
BRILLO_EXPORT std::
unique_ptr
<base::Value> ToValue(const std::string& value);
112
BRILLO_EXPORT std::
unique_ptr
<base::Value> ToValue(const char* value);
115
std::
unique_ptr
<base::Value> ToValue(
119
std::
unique_ptr
<base::Value> ToValue(const std::vector<T, Alloc>& list) {
120
std::
unique_ptr
<base::ListValue> result{new base::ListValue}
[
all
...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_move_pair.pass.cpp
46
typedef std::pair<int, std::
unique_ptr
<D>> T0;
47
typedef std::tuple<alloc_first, std::
unique_ptr
<B>> T1;
48
T0 t0(2, std::
unique_ptr
<D>(new D(3)));
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/
make_pair.pass.cpp
29
typedef std::pair<std::
unique_ptr
<int>, short> P1;
30
P1 p1 = std::make_pair(std::
unique_ptr
<int>(new int(3)), 4);
35
typedef std::pair<std::
unique_ptr
<int>, short> P1;
/external/libweave/src/states/
state_change_queue.h
24
std::
unique_ptr
<base::DictionaryValue> properties)
27
std::
unique_ptr
<base::DictionaryValue> changed_properties;
45
std::map<base::Time, std::
unique_ptr
<base::DictionaryValue>> state_changes_;
/external/llvm/include/llvm/AsmParser/
Parser.h
38
std::
unique_ptr
<Module> parseAssemblyFile(StringRef Filename,
54
std::
unique_ptr
<Module> parseAssemblyString(StringRef AsmString,
65
std::
unique_ptr
<Module> parseAssembly(MemoryBufferRef F, SMDiagnostic &Err,
/external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeEnum.h
23
std::
unique_ptr
<IPDBRawSymbol> EnumTypeSymbol);
29
std::
unique_ptr
<PDBSymbolTypeUDT> getClassParent() const;
30
std::
unique_ptr
<PDBSymbolTypeBuiltin> getUnderlyingType() const;
/external/llvm/include/llvm/Support/
FileOutputBuffer.h
41
static ErrorOr<std::
unique_ptr
<FileOutputBuffer>>
80
FileOutputBuffer(std::
unique_ptr
<llvm::sys::fs::mapped_file_region> R,
83
std::
unique_ptr
<llvm::sys::fs::mapped_file_region> Region;
SpecialCaseList.h
64
static std::
unique_ptr
<SpecialCaseList>
68
static std::
unique_ptr
<SpecialCaseList> create(const MemoryBuffer *MB,
72
static std::
unique_ptr
<SpecialCaseList>
/external/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp
55
std::
unique_ptr
<IPDBRawSymbol> Symbol)
62
return std::
unique_ptr
<PDBSymbol>(new Type(PDBSession, std::move(Symbol)));
64
std::
unique_ptr
<PDBSymbol>
66
std::
unique_ptr
<IPDBRawSymbol> Symbol) {
99
return std::
unique_ptr
<PDBSymbol>(
116
std::
unique_ptr
<IPDBEnumSymbols> PDBSymbol::findAllChildren() const {
120
std::
unique_ptr
<IPDBEnumSymbols>
125
std::
unique_ptr
<IPDBEnumSymbols>
131
std::
unique_ptr
<IPDBEnumSymbols>
137
std::
unique_ptr
<IPDBEnumSymbols
[
all
...]
/external/skia/src/core/
SkSharedMutex.h
53
skstd::
unique_ptr
<ThreadIDSet> fCurrentShared;
54
skstd::
unique_ptr
<ThreadIDSet> fWaitingExclusive;
55
skstd::
unique_ptr
<ThreadIDSet> fWaitingShared;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_move_pair.pass.cpp
44
typedef std::pair<int, std::
unique_ptr
<D>> T0;
45
typedef std::tuple<alloc_first, std::
unique_ptr
<B>> T1;
46
T0 t0(2, std::
unique_ptr
<D>(new D(3)));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.spec/
make_pair.pass.cpp
29
typedef std::pair<std::
unique_ptr
<int>, short> P1;
30
P1 p1 = std::make_pair(std::
unique_ptr
<int>(new int(3)), 4);
35
typedef std::pair<std::
unique_ptr
<int>, short> P1;
Completed in 599 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>