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

123

/external/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h30 /// Impl - A pointer to the actual implementation of the library call
32 LibCallSimplifierImpl *Impl; member in class:llvm::LibCallSimplifier
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebScopedMicrotaskSuppression.cpp41 class WebScopedMicrotaskSuppression::Impl : public V8RecursionScope::MicrotaskSuppression { class in class:blink::WebScopedMicrotaskSuppression
43 Impl(v8::Isolate* isolate) function in class:blink::WebScopedMicrotaskSuppression::Impl
53 m_impl.reset(new Impl(v8::Isolate::GetCurrent()));
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dshared_ptr.h38 class Impl { class in class:mojo::internal::SharedPtr
40 ~Impl() {
45 Impl() : ptr(NULL) { function in class:mojo::internal::SharedPtr::Impl
48 Impl(P* ptr) : ptr(ptr) { function in class:mojo::internal::SharedPtr::Impl
54 MOJO_DISALLOW_COPY_AND_ASSIGN(Impl);
57 SharedData<Impl> impl_;
/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/chromium_org/third_party/libaddressinput/src/cpp/src/util/
H A Dstring_compare.cc58 class StringCompare::Impl { class in class:i18n::addressinput::StringCompare
62 Impl() : min_possible_match_(&re2::ComputeMinPossibleMatch, MAX_CACHE_SIZE) { function in class:i18n::addressinput::StringCompare::Impl
67 ~Impl() {}
84 DISALLOW_COPY_AND_ASSIGN(Impl);
87 StringCompare::StringCompare() : impl_(new Impl) {}
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueVector.h42 typedef Vector<v8::PersistentContainerValue> Impl; typedef in class:blink::WTFVectorPersistentValueVectorTraits
43 static void Append(Impl* impl, v8::PersistentContainerValue value)
47 static bool IsEmpty(const Impl* impl)
51 static size_t Size(const Impl* impl)
55 static v8::PersistentContainerValue Get(const Impl* impl, size_t i)
59 static void ReserveCapacity(Impl* impl, size_t capacity)
63 static void Clear(Impl* impl)
H A DV8PersistentValueMap.h52 typedef HashMap<KeyType, v8::PersistentContainerValue> Impl; typedef in class:blink::V8PersistentValueMapTraits
53 typedef typename Impl::iterator Iterator;
54 static size_t Size(const Impl* impl) { return impl->size(); }
55 static bool Empty(Impl* impl) { return impl->isEmpty(); }
56 static void Swap(Impl& impl, Impl& other) { impl.swap(other); }
57 static Iterator Begin(Impl* impl) { return impl->begin(); }
58 static Iterator End(Impl* impl) { return impl->end(); }
65 Impl* impl, KeyType key, v8::PersistentContainerValue value)
71 static v8::PersistentContainerValue Get(const Impl* imp
[all...]
H A DDOMWrapperMap.h95 typedef HashMap<KeyType*, v8::PersistentContainerValue> Impl; typedef in class:blink::DOMWrapperMap::PersistentValueMapTraits
96 typedef typename Impl::iterator Iterator;
97 static size_t Size(const Impl* impl) { return impl->size(); }
98 static bool Empty(Impl* impl) { return impl->isEmpty(); }
99 static void Swap(Impl& impl, Impl& other) { impl.swap(other); }
100 static Iterator Begin(Impl* impl) { return impl->begin(); }
101 static Iterator End(Impl* impl) { return impl->end(); }
108 Impl* impl, KeyType* key, v8::PersistentContainerValue value)
114 static v8::PersistentContainerValue Get(const Impl* imp
[all...]
/external/chromium_org/third_party/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 = NULL;
72 rec = new Impl;
81 Impl* rec = fImpl;
83 Impl* next = rec->fNext;
/external/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h48 void *Impl; member in class:llvm::CrashRecoveryContext
52 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 = NULL;
72 rec = new Impl;
81 Impl* rec = fImpl;
83 Impl* next = rec->fNext;
/external/chromium_org/mojo/dbus/
H A Ddbus_external_service.h79 external_service_.reset(BindToPipe(new Impl(this), client_handle.Pass()));
87 class Impl : public InterfaceImpl<ExternalService> { class in class:mojo::DBusExternalService
89 explicit Impl(DBusExternalService* service) : service_(service) { function in class:mojo::DBusExternalService::Impl
103 scoped_ptr<Impl> external_service_;
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dstring_compare.cc51 // Dummy required for scoped_ptr<Impl>.
52 class StringCompare::Impl {}; class in class:i18n::addressinput::StringCompare
/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/llvm/include/llvm/Analysis/
H A DLibCallSemantics.h129 mutable void *Impl; member in class:llvm::LibCallInfo
133 LibCallInfo() : Impl(nullptr), Locations(nullptr), NumLocations(0) {}
/external/openfst/src/include/fst/
H A Dinvert.h81 typedef ArcMapFstImpl< A, A, InvertMapper<A> > Impl; typedef in class:fst::InvertFst
82 using ImplToFst<Impl>::GetImpl;
H A Dproject.h101 typedef ArcMapFstImpl< A, A, ProjectMapper<A> > Impl; typedef in class:fst::ProjectFst
102 using ImplToFst<Impl>::GetImpl;
/external/chromium_org/content/browser/media/capture/
H A Dweb_contents_audio_input_stream.cc26 class WebContentsAudioInputStream::Impl class in class:content::WebContentsAudioInputStream
27 : public base::RefCountedThreadSafe<WebContentsAudioInputStream::Impl>,
31 Impl(int render_process_id, int main_render_frame_id,
56 friend class base::RefCountedThreadSafe<WebContentsAudioInputStream::Impl>;
67 virtual ~Impl();
117 DISALLOW_COPY_AND_ASSIGN(Impl);
120 WebContentsAudioInputStream::Impl::Impl( function in class:content::WebContentsAudioInputStream::Impl
137 // WAIS::Impl can be constructed on any thread, but will DCHECK that all
142 WebContentsAudioInputStream::Impl
[all...]
/external/chromium_org/ui/wm/core/
H A Dshadow_controller.cc85 // ShadowController::Impl ------------------------------------------------------
89 // only a single Impl (as it observes all window creation by way of an
91 class ShadowController::Impl : class in class:wm::ShadowController
94 public base::RefCounted<Impl> {
97 static Impl* GetInstance();
112 friend class base::RefCounted<Impl>;
118 Impl();
119 virtual ~Impl();
148 static Impl* instance_;
150 DISALLOW_COPY_AND_ASSIGN(Impl);
249 ShadowController::Impl::Impl() function in class:wm::ShadowController::Impl
[all...]
/external/clang/include/clang/Frontend/
H A DUtils.h110 void *Impl; // Opaque implementation member in class:clang::DependencyFileGenerator
111 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/chromium_org/content/renderer/media/
H A Drtc_video_encoder.cc77 // RTCVideoEncoder::Impl stays around long enough to properly shut down the VEA.
78 class RTCVideoEncoder::Impl class in class:content::RTCVideoEncoder
80 public base::RefCountedThreadSafe<RTCVideoEncoder::Impl> {
82 Impl(const base::WeakPtr<RTCVideoEncoder>& weak_encoder,
105 // the buffer is returned to Impl by its index using this function.
111 // Destroy this Impl's encoder. The destructor is not explicitly called, as
112 // Impl is a base::RefCountedThreadSafe.
125 friend class base::RefCountedThreadSafe<Impl>;
134 virtual ~Impl();
195 DISALLOW_COPY_AND_ASSIGN(Impl);
198 RTCVideoEncoder::Impl::Impl( function in class:content::RTCVideoEncoder::Impl
[all...]
/external/clang/include/clang/Basic/
H A DVirtualFileSystem.h118 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy member in class:clang::vfs::directory_iterator
121 directory_iterator(std::shared_ptr<detail::DirIterImpl> I) : Impl(I) {
122 assert(Impl.get() != nullptr && "requires non-null implementation");
123 if (!Impl->CurrentEntry.isStatusKnown())
124 Impl.reset(); // Normalize the end iterator to Impl == nullptr.
132 assert(Impl && "attempting to increment past end");
133 EC = Impl->increment();
134 if (EC || !Impl->CurrentEntry.isStatusKnown())
135 Impl
[all...]
/external/clang/lib/ARCMigrate/
H A DInternals.h51 void *Impl; // TransformActionsImpl. member in class:clang::arcmt::TransformActions

Completed in 749 milliseconds

123