HomeSort by relevance Sort by last modified time
    Searched defs:Impl (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyldChecker.h 97 std::unique_ptr<RuntimeDyldCheckerImpl> Impl;
  /external/llvm/include/llvm/CodeGen/MIRParser/
MIRParser.h 35 std::unique_ptr<MIRParserImpl> Impl;
38 MIRParser(std::unique_ptr<MIRParserImpl> Impl);
  /external/opencv3/modules/cudacodec/src/
thread.cpp 70 class cv::cudacodec::detail::Thread::Impl
73 Impl(Thread::Func func, void* userData)
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/
ParentMap.h 22 void* Impl;
ASTUnresolvedSet.h 89 mutable ASTUnresolvedSet Impl;
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/llvm/include/llvm/Support/
CrashRecoveryContext.h 43 void *Impl;
47 CrashRecoveryContext() : Impl(nullptr), head(nullptr) {}
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
FuturesCombineBenchmark.java 37 enum Impl {
76 @Param Impl impl;
85 Impl impl = this.impl;
89 sum += impl.combine(callable, INLINE_EXECUTOR, futures).get();
100 Impl impl = this.impl;
    [all...]
ExecutionListBenchmark.java 59 enum Impl {
157 @Param Impl impl;
188 list = impl.newExecutionList();
198 list = impl.newExecutionList();
213 list = impl.newExecutionList();
241 list = impl.newExecutionList();
263 list = impl.newExecutionList();
MoreExecutorsDirectExecutorBenchmark.java 40 enum Impl {
54 @Param Impl impl; field in class:MoreExecutorsDirectExecutorBenchmark
69 executor = impl.executor();
StripedBenchmark.java 50 @Param Impl impl; field in class:StripedBenchmark
52 enum Impl {
77 this.striped = impl.get(numStripes);
90 return impl.get(numStripes);
98 Striped<Lock> striped = impl.get(numStripes);
108 Impl implLocal = impl;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/java8/
InterfaceDefaultMethodsTarget.java 31 public class Impl implements InterfaceDefaultMethodsTarget {
33 public Impl() {
  /external/skia/src/core/
SkRefDict.cpp 13 struct SkRefDict::Impl {
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/
qualified-id.cpp 23 class Impl {
27 template <class T> class Magic : public Impl {
29 return Impl::foo();
  /external/skia/src/pdf/
SkDeflate.cpp 60 // Hide all zlib impl details.
61 struct SkDeflateWStream::Impl {
71 : fImpl(new SkDeflateWStream::Impl) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
RoundedRectHelper.java 26 private final Impl mImpl;
54 static interface Impl {
61 private static final class StubImpl implements Impl {
74 private static final class Api21Impl implements Impl {
  /external/clang/include/clang/Frontend/
Utils.h 111 void *Impl; // Opaque implementation
112 DependencyFileGenerator(void *Impl);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/google/gwt/corp/compatibility/
Compatibility.java 30 public interface Impl {
46 public static Impl impl; field in class:Compatibility
49 return impl.floatToIntBits(f);
53 return impl.intBitsToFloat(i);
57 return impl.createString(b, 0, b.length);
61 return impl.createString(b, s, l);
65 return impl.createString(b, encoding);
69 return impl.getOriginatingServerAddress();
73 impl.printStackTrace(e)
    [all...]
  /external/opencv3/modules/viz/src/
widget.cpp 51 class cv::viz::Widget::Impl
55 Impl() : prop(0) {}
58 cv::viz::Widget::Widget() : impl_( new Impl() ) { }
60 cv::viz::Widget::Widget(const Widget& other) : impl_( new Impl() )
69 impl_ = new Impl();
  /packages/apps/Launcher3/src/com/android/launcher3/
DeferredHandler.java 38 private Impl mHandler = new Impl();
40 @Thunk class Impl extends Handler implements MessageQueue.IdleHandler {
  /external/opencv3/modules/core/src/
opengl.cpp 290 class cv::ogl::Buffer::Impl
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> p(new Impl)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
SettingsStorageService.java 49 final Intent intent = new Intent(context, Impl.class);
56 final Intent intent = new Intent(context, Impl.class);
63 final Intent intent = new Intent(context, Impl.class);
69 public static class Impl extends IntentService {
71 public Impl() {
72 super(Impl.class.getName());
  /external/clang/lib/ARCMigrate/
Internals.h 51 void *Impl; // TransformActionsImpl.
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 603 std::unique_ptr<TargetLibraryInfoImpl> &Impl =
605 if (!Impl)
606 Impl.reset(new TargetLibraryInfoImpl(T));
608 return *Impl;
  /external/llvm/lib/Fuzzer/
FuzzerMutate.cpp 25 struct MutationDispatcher::Impl {
32 Impl() {
220 MDImpl = new Impl;
  /frameworks/support/compat/java/android/support/v4/app/
RemoteInput.java 196 return IMPL.getResultsFromIntent(intent);
212 IMPL.addResultsToIntent(remoteInputs, intent, results);
215 private static final Impl IMPL;
217 interface Impl {
223 static class ImplBase implements Impl {
236 static class ImplJellybean implements Impl {
248 static class ImplApi20 implements Impl {
262 IMPL = new ImplApi20();
264 IMPL = new ImplJellybean()
    [all...]

Completed in 1277 milliseconds

1 2 3 4