Searched defs:Impl (Results 1 - 25 of 63) sorted by relevance

123

/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h97 std::unique_ptr<RuntimeDyldCheckerImpl> Impl; member in class:llvm::RuntimeDyldChecker
/external/llvm/include/llvm/CodeGen/MIRParser/
H A DMIRParser.h35 std::unique_ptr<MIRParserImpl> Impl; member in class:llvm::MIRParser
38 MIRParser(std::unique_ptr<MIRParserImpl> Impl);
/external/opencv3/modules/cudacodec/src/
H A Dthread.cpp70 class cv::cudacodec::detail::Thread::Impl class in class:cv::cudacodec::detail::Thread
73 Impl(Thread::Func func, void* userData) function in class:cv::cudacodec::detail::Thread::Impl
87 ~Impl()
123 class cv::cudacodec::detail::Thread::Impl
126 Impl(Thread::Func func, void* userData)
134 ~Impl()
152 impl_(new Impl(func, userData))
/external/clang/include/clang/AST/
H A DParentMap.h22 void* Impl; member in class:clang::ParentMap
H A DASTUnresolvedSet.h89 mutable ASTUnresolvedSet Impl; member in class:clang::LazyASTUnresolvedSet
95 if (Impl.Decls.isLazy())
97 return Impl;
100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); }
102 assert(Impl.empty() || Impl.Decls.isLazy());
103 Impl.Decls.setLazy(true);
104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS);
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/java8/
H A DInterfaceDefaultMethodsTarget.java31 public class Impl implements InterfaceDefaultMethodsTarget { class in interface:InterfaceDefaultMethodsTarget
33 public Impl() { method in class:InterfaceDefaultMethodsTarget.Impl
/external/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h43 void *Impl; member in class:llvm::CrashRecoveryContext
47 CrashRecoveryContext() : Impl(nullptr), head(nullptr) {}
/external/skia/src/core/
H A DSkRefDict.cpp13 struct SkRefDict::Impl { struct in class:SkRefDict
14 Impl* fNext;
30 Impl* rec = fImpl;
45 Impl* rec = fImpl;
46 Impl* prev = nullptr;
72 rec = new Impl;
81 Impl* rec = fImpl;
83 Impl* next = rec->fNext;
/external/clang/test/SemaTemplate/
H A Dqualified-id.cpp23 class Impl { class in namespace:test2
27 template <class T> class Magic : public Impl {
29 return Impl::foo();
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DFuturesCombineBenchmark.java37 enum Impl { enum in class:FuturesCombineBenchmark
76 @Param Impl impl;
85 Impl impl = this.impl;
100 Impl impl = this.impl;
110 Impl impl = this.impl;
125 Impl impl = this.impl;
H A DMoreExecutorsDirectExecutorBenchmark.java40 enum Impl { enum in class:MoreExecutorsDirectExecutorBenchmark
54 @Param Impl impl;
H A DStripedBenchmark.java50 @Param Impl impl;
52 enum Impl { enum in class:StripedBenchmark
108 Impl implLocal = impl;
H A DExecutionListBenchmark.java59 enum Impl { enum in class:ExecutionListBenchmark
157 @Param Impl impl;
/external/clang/include/clang/Frontend/
H A DUtils.h111 void *Impl; // Opaque implementation member in class:clang::DependencyFileGenerator
112 DependencyFileGenerator(void *Impl);
/external/conscrypt/src/main/java/org/conscrypt/
H A DFileClientSessionCache.java55 static class Impl implements SSLClientSessionCache { class in class:FileClientSessionCache
77 Impl(File directory) throws IOException { method in class:FileClientSessionCache.Impl
315 static final Map<File, FileClientSessionCache.Impl> caches
316 = new HashMap<File, FileClientSessionCache.Impl>();
330 FileClientSessionCache.Impl cache = caches.get(directory);
332 cache = new FileClientSessionCache.Impl(directory);
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DMapBenchmark.java41 private Impl impl;
43 public enum Impl { enum in class:MapBenchmark
/external/guava/guava-tests/benchmark/com/google/common/math/
H A DApacheBenchmark.java40 private enum Impl { enum in class:ApacheBenchmark
130 Impl impl;
144 } while (!Impl.GUAVA.noAddOverflow(intsToAdd[i][0], intsToAdd[i][1]));
149 } while (!Impl.GUAVA.noAddOverflow(longsToAdd[i][0], longsToAdd[i][1]));
154 } while (!Impl.GUAVA.noMulOverflow(intsToMul[i][0], intsToMul[i][1]));
159 } while (!Impl.GUAVA.noMulOverflow(longsToMul[i][0], longsToMul[i][1]));
/external/opencv3/modules/viz/src/
H A Dwidget.cpp51 class cv::viz::Widget::Impl class in class:cv::viz::Widget
55 Impl() : prop(0) {} function in class:cv::viz::Widget::Impl
58 cv::viz::Widget::Widget() : impl_( new Impl() ) { }
60 cv::viz::Widget::Widget(const Widget& other) : impl_( new Impl() )
69 impl_ = new Impl();
/external/skia/src/pdf/
H A DSkDeflate.cpp61 struct SkDeflateWStream::Impl { struct in class:SkDeflateWStream
71 : fImpl(new SkDeflateWStream::Impl) {
/external/opencv3/modules/core/src/
H A Dcuda_stream.cpp258 /// Stream::Impl
262 class cv::cuda::Stream::Impl class in class:cv::cuda::Stream
265 Impl(void* ptr = 0) function in class:cv::cuda::Stream::Impl
279 class cv::cuda::Stream::Impl
285 Impl();
286 Impl(cudaStream_t stream);
288 ~Impl();
291 cv::cuda::Stream::Impl::Impl() : stream(0)
298 cv::cuda::Stream::Impl
681 class cv::cuda::Event::Impl class in class:cv::cuda::Event
684 Impl(unsigned int) function in class:cv::cuda::Event::Impl
692 class cv::cuda::Event::Impl class in class:cv::cuda::Event
701 cv::cuda::Event::Impl::Impl(unsigned int flags) : event(0) function in class:cv::cuda::Event::Impl
[all...]
H A Dopengl.cpp290 class cv::ogl::Buffer::Impl class in class:cv::ogl::Buffer
296 class cv::ogl::Buffer::Impl
299 static const Ptr<Impl>& empty();
301 Impl(GLuint bufId, bool autoRelease);
302 Impl(GLsizeiptr size, const GLvoid* data, GLenum target, bool autoRelease);
303 ~Impl();
328 Impl();
338 const Ptr<cv::ogl::Buffer::Impl>& cv::ogl::Buffer::Impl::empty()
340 static Ptr<Impl>
834 class cv::ogl::Texture2D::Impl class in class:cv::ogl::Texture2D
840 class cv::ogl::Texture2D::Impl class in class:cv::ogl::Texture2D
871 cv::ogl::Texture2D::Impl::Impl() : texId_(0), autoRelease_(false) function in class:cv::ogl::Texture2D::Impl
875 cv::ogl::Texture2D::Impl::Impl(GLuint atexId, bool autoRelease) : texId_(atexId), autoRelease_(autoRelease) function in class:cv::ogl::Texture2D::Impl
880 cv::ogl::Texture2D::Impl::Impl(GLint internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels, bool autoRelease) : texId_(0), autoRelease_(autoRelease) function in class:cv::ogl::Texture2D::Impl
[all...]
/external/opencv3/modules/ml/src/
H A Dknearest.cpp56 class Impl class in namespace:cv::ml
59 Impl() function in class:cv::ml::Impl
66 virtual ~Impl() {}
137 class BruteForceImpl : public Impl
361 class KDTreeImpl : public Impl
509 Ptr<Impl> impl;
/external/clang/include/clang/Basic/
H A DVirtualFileSystem.h116 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy member in class:clang::vfs::directory_iterator
119 directory_iterator(std::shared_ptr<detail::DirIterImpl> I) : Impl(I) {
120 assert(Impl.get() != nullptr && "requires non-null implementation");
121 if (!Impl->CurrentEntry.isStatusKnown())
122 Impl.reset(); // Normalize the end iterator to Impl == nullptr.
130 assert(Impl && "attempting to increment past end");
131 EC = Impl->increment();
132 if (EC || !Impl->CurrentEntry.isStatusKnown())
133 Impl
[all...]
/external/clang/lib/ARCMigrate/
H A DInternals.h51 void *Impl; // TransformActionsImpl. member in class:clang::arcmt::TransformActions
/external/guice/core/test/com/google/inject/
H A DMethodInterceptionTest.java260 bind(Interface.class).to(Impl.class);
282 public static class Impl extends Superclass<RetType> implements Interface { class in class:MethodInterceptionTest

Completed in 674 milliseconds

123