Home
last modified time | relevance | path

Searched refs:IntrusiveRefCntPtr (Results 1 – 25 of 97) sorted by relevance

1234

/external/llvm/include/llvm/ADT/
DIntrusiveRefCntPtr.h31 class IntrusiveRefCntPtr; variable
135 class IntrusiveRefCntPtr {
141 explicit IntrusiveRefCntPtr() : Obj(nullptr) {} in IntrusiveRefCntPtr() function
143 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr() function
147 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() function
151 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() function
156 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.get()) { in IntrusiveRefCntPtr() function
161 IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X>& S) in IntrusiveRefCntPtr() function
166 IntrusiveRefCntPtr& operator=(IntrusiveRefCntPtr S) {
171 ~IntrusiveRefCntPtr() { release(); } in ~IntrusiveRefCntPtr()
[all …]
/external/llvm/unittests/ADT/
DIntrusiveRefCntPtrTest.cpp22 TEST(IntrusiveRefCntPtr, RefCountedBaseVPTRCopyDoesNotLeak) { in TEST() argument
24 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1; in TEST()
26 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2; in TEST()
32 TEST(IntrusiveRefCntPtr, RefCountedBaseCopyDoesNotLeak) { in TEST() argument
34 IntrusiveRefCntPtr<SimpleRefCounted> R1 = S1; in TEST()
36 IntrusiveRefCntPtr<SimpleRefCounted> R2 = S2; in TEST()
55 TEST(IntrusiveRefCntPtr, UsesTraitsToRetainAndRelease) { in TEST() argument
60 IntrusiveRefCntPtr<InterceptRefCounted> R = I; in TEST()
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp137 IntrusiveRefCntPtr<DummyFileSystem> D(new DummyFileSystem()); in TEST()
177 IntrusiveRefCntPtr<DummyFileSystem> D(new DummyFileSystem()); in TEST()
181 IntrusiveRefCntPtr<vfs::OverlayFileSystem> O(new vfs::OverlayFileSystem(D)); in TEST()
195 IntrusiveRefCntPtr<DummyFileSystem> Base(new DummyFileSystem()); in TEST()
196 IntrusiveRefCntPtr<DummyFileSystem> Middle(new DummyFileSystem()); in TEST()
197 IntrusiveRefCntPtr<DummyFileSystem> Top(new DummyFileSystem()); in TEST()
198 IntrusiveRefCntPtr<vfs::OverlayFileSystem> O( in TEST()
234 IntrusiveRefCntPtr<DummyFileSystem> Lower(new DummyFileSystem()); in TEST()
235 IntrusiveRefCntPtr<DummyFileSystem> Upper(new DummyFileSystem()); in TEST()
236 IntrusiveRefCntPtr<vfs::OverlayFileSystem> O( in TEST()
[all …]
/external/clang/include/clang/Frontend/
DCompilerInstance.h73 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
76 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
79 IntrusiveRefCntPtr<TargetInfo> Target;
82 IntrusiveRefCntPtr<TargetInfo> AuxTarget;
85 IntrusiveRefCntPtr<vfs::FileSystem> VirtualFileSystem;
88 IntrusiveRefCntPtr<FileManager> FileMgr;
91 IntrusiveRefCntPtr<SourceManager> SourceMgr;
94 IntrusiveRefCntPtr<Preprocessor> PP;
97 IntrusiveRefCntPtr<ASTContext> Context;
115 IntrusiveRefCntPtr<ASTReader> ModuleManager;
[all …]
DASTUnit.h89 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
90 IntrusiveRefCntPtr<FileManager> FileMgr;
91 IntrusiveRefCntPtr<SourceManager> SourceMgr;
93 IntrusiveRefCntPtr<TargetInfo> Target;
94 IntrusiveRefCntPtr<Preprocessor> PP;
95 IntrusiveRefCntPtr<ASTContext> Ctx;
97 IntrusiveRefCntPtr<HeaderSearchOptions> HSOpts;
98 IntrusiveRefCntPtr<ASTReader> Reader;
116 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
310 static void ConfigureDiags(IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
[all …]
DCompilerInvocation.h63 IntrusiveRefCntPtr<DiagnosticOptions> DiagnosticOpts;
66 IntrusiveRefCntPtr<HeaderSearchOptions> HeaderSearchOpts;
69 IntrusiveRefCntPtr<PreprocessorOptions> PreprocessorOpts;
213 IntrusiveRefCntPtr<vfs::FileSystem>
DUtils.h173 IntrusiveRefCntPtr<ExternalSemaSource>
175 IntrusiveRefCntPtr<ExternalSemaSource> &Reader);
184 IntrusiveRefCntPtr<DiagnosticsEngine> Diags =
185 IntrusiveRefCntPtr<DiagnosticsEngine>());
/external/clang/unittests/Driver/
DToolChainTest.cpp29 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in TEST()
31 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in TEST()
34 IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( in TEST()
82 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in TEST()
84 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in TEST()
87 IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( in TEST()
/external/clang/tools/diagtool/
DShowEnabledWarnings.cpp56 static IntrusiveRefCntPtr<DiagnosticsEngine>
58 IntrusiveRefCntPtr<DiagnosticIDs> DiagIDs(new DiagnosticIDs()); in createDiagnostics()
63 IntrusiveRefCntPtr<DiagnosticsEngine> InterimDiags( in createDiagnostics()
76 IntrusiveRefCntPtr<DiagnosticsEngine> FinalDiags = in createDiagnostics()
105 IntrusiveRefCntPtr<DiagnosticsEngine> Diags = createDiagnostics(argc, argv); in run()
/external/clang/lib/ARCMigrate/
DARCMT.cpp181 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in createInvocationForMigration()
182 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in createInvocationForMigration()
222 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in emitPremigrationErrors()
223 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in emitPremigrationErrors()
262 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in checkForManualIssues()
263 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in checkForManualIssues()
371 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in applyTransforms()
372 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in applyTransforms()
408 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in getFileRemappings()
409 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in getFileRemappings()
[all …]
/external/clang/lib/Frontend/
DChainedIncludesSource.cpp35 IntrusiveRefCntPtr<ExternalSemaSource> FinalReader;
115 IntrusiveRefCntPtr<ExternalSemaSource> clang::createChainedIncludesSource( in createChainedIncludesSource()
116 CompilerInstance &CI, IntrusiveRefCntPtr<ExternalSemaSource> &Reader) { in createChainedIncludesSource()
121 IntrusiveRefCntPtr<ChainedIncludesSource> source(new ChainedIncludesSource()); in createChainedIncludesSource()
146 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in createChainedIncludesSource()
147 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in createChainedIncludesSource()
164 ArrayRef<llvm::IntrusiveRefCntPtr<ModuleFileExtension>> Extensions; in createChainedIncludesSource()
189 IntrusiveRefCntPtr<ASTReader> Reader; in createChainedIncludesSource()
/external/clang/tools/clang-fuzzer/
DClangFuzzer.cpp28 llvm::IntrusiveRefCntPtr<FileManager> Files( in LLVMFuzzerTestOneInput()
31 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in LLVMFuzzerTestOneInput()
33 IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts, in LLVMFuzzerTestOneInput()
/external/clang/lib/Index/
DSimpleFormatContext.h64 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts;
65 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
66 IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem;
/external/clang/unittests/Tooling/
DRewriterTestContext.h39 Diagnostics(IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs), in RewriterTestContext()
114 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts;
117 IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem;
118 IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem;
DToolingTest.cpp152 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem( in TEST()
154 llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( in TEST()
157 llvm::IntrusiveRefCntPtr<FileManager> Files( in TEST()
178 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem( in TEST()
180 llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( in TEST()
183 llvm::IntrusiveRefCntPtr<FileManager> Files( in TEST()
/external/clang/unittests/Lex/
DPPCallbacksTest.cpp122 IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem;
124 IntrusiveRefCntPtr<DiagnosticIDs> DiagID;
125 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts;
130 IntrusiveRefCntPtr<TargetInfo> Target;
165 IntrusiveRefCntPtr<HeaderSearchOptions> HSOpts = new HeaderSearchOptions(); in InclusionDirectiveFilenameRange()
170 IntrusiveRefCntPtr<PreprocessorOptions> PPOpts = new PreprocessorOptions(); in InclusionDirectiveFilenameRange()
/external/clang/lib/Tooling/
DTooling.cpp51 IntrusiveRefCntPtr<vfs::FileSystem> VFS) { in newDriver()
128 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem( in runToolOnCodeWithArgs()
130 llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( in runToolOnCodeWithArgs()
133 llvm::IntrusiveRefCntPtr<FileManager> Files( in runToolOnCodeWithArgs()
234 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in run()
238 IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts, in run()
485 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem( in buildASTFromCodeWithArgs()
487 llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( in buildASTFromCodeWithArgs()
490 llvm::IntrusiveRefCntPtr<FileManager> Files( in buildASTFromCodeWithArgs()
DRefactoring.cpp41 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in runAndSave()
44 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), in runAndSave()
/external/clang/include/clang/Basic/
DVirtualFileSystem.h228 IntrusiveRefCntPtr<FileSystem> getRealFileSystem();
241 typedef SmallVector<IntrusiveRefCntPtr<FileSystem>, 1> FileSystemList;
247 OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> Base);
249 void pushOverlay(IntrusiveRefCntPtr<FileSystem> FS);
313 IntrusiveRefCntPtr<FileSystem>
317 IntrusiveRefCntPtr<FileSystem> ExternalFS = getRealFileSystem());
DFileManager.h116 IntrusiveRefCntPtr<vfs::FileSystem> FS;
175 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
224 IntrusiveRefCntPtr<vfs::FileSystem> getVirtualFileSystem() const { in getVirtualFileSystem()
DLLVM.h42 template <typename T> class IntrusiveRefCntPtr; variable
74 using llvm::IntrusiveRefCntPtr;
/external/clang/tools/arcmt-test/
Darcmt-test.cpp109 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in checkForMigration()
112 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in checkForMigration()
113 IntrusiveRefCntPtr<DiagnosticsEngine> Diags( in checkForMigration()
154 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in performTransformations()
157 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in performTransformations()
158 IntrusiveRefCntPtr<DiagnosticsEngine> TopDiags( in performTransformations()
/external/clang/include/clang/Rewrite/Core/
DRewriteRope.h60 llvm::IntrusiveRefCntPtr<RopeRefCountString> StrData;
66 RopePiece(llvm::IntrusiveRefCntPtr<RopeRefCountString> Str, unsigned Start, in RopePiece()
170 llvm::IntrusiveRefCntPtr<RopeRefCountString> AllocBuffer;
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp252 AllocatedCXCodeCompleteResults(IntrusiveRefCntPtr<FileManager> FileMgr);
261 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts;
264 IntrusiveRefCntPtr<DiagnosticsEngine> Diag;
270 IntrusiveRefCntPtr<FileManager> FileMgr;
273 IntrusiveRefCntPtr<SourceManager> SourceMgr;
284 IntrusiveRefCntPtr<clang::GlobalCodeCompletionAllocator>
288 IntrusiveRefCntPtr<clang::GlobalCodeCompletionAllocator>
322 IntrusiveRefCntPtr<FileManager> FileMgr) in AllocatedCXCodeCompleteResults()
326 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs), &*DiagOpts)), in AllocatedCXCodeCompleteResults()
/external/clang/tools/driver/
Dcc1_main.cpp69 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); in cc1_main()
89 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); in cc1_main()

1234