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

1 2 3 4 5 6 7

  /packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/
PublicApiAccessTest.java 35 Downloads.Impl.COLUMN_COOKIE_DATA,
36 Downloads.Impl.COLUMN_REFERER,
37 Downloads.Impl.COLUMN_USER_AGENT,
38 Downloads.Impl.COLUMN_NO_INTEGRITY,
39 Downloads.Impl.COLUMN_NOTIFICATION_CLASS,
40 Downloads.Impl.COLUMN_NOTIFICATION_EXTRAS,
41 Downloads.Impl.COLUMN_OTHER_UID,
42 Downloads.Impl.COLUMN_APP_DATA,
43 Downloads.Impl.COLUMN_CONTROL,
44 Downloads.Impl.COLUMN_STATUS
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/
interface_impl.h 72 template <typename Impl>
73 Impl* BindToPipe(
74 Impl* instance,
82 template <typename Impl>
83 Impl* WeakBindToPipe(
84 Impl* instance,
102 template <typename Impl, typename Interface>
103 Impl* BindToProxy(
104 Impl* instance,
112 template <typename Impl, typename Interface
    [all...]
  /external/chromium_org/mojo/public/cpp/application/
interface_factory_impl.h 12 // Use this class to allocate and bind instances of Impl to interface requests.
13 // The lifetime of the constructed Impl is bound to the pipe.
14 template <typename Impl,
15 typename Interface = typename Impl::ImplementedInterface>
22 BindToRequest(new Impl(), &request);
26 // Use this class to allocate and bind instances of Impl constructed with a
28 // Impl is bound to the pipe.
29 template <typename Impl,
31 typename Interface = typename Impl::ImplementedInterface>
40 BindToRequest(new Impl(context_), &request)
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/lib/
shared_ptr.h 38 class Impl {
40 ~Impl() {
45 Impl() : ptr(NULL) {
48 Impl(P* ptr) : ptr(ptr) {
54 MOJO_DISALLOW_COPY_AND_ASSIGN(Impl);
57 SharedData<Impl> impl_;
  /external/chromium_org/third_party/WebKit/public/web/
WebScopedMicrotaskSuppression.h 70 class Impl;
71 WebPrivateOwnPtr<Impl> m_impl;
  /external/chromium_org/third_party/WebKit/Source/web/
WebScopedMicrotaskSuppression.cpp 41 class WebScopedMicrotaskSuppression::Impl : public V8RecursionScope::MicrotaskSuppression {
43 Impl(v8::Isolate* isolate)
53 m_impl.reset(new Impl(v8::Isolate::GetCurrent()));
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8PersistentValueVector.h 42 typedef Vector<v8::PersistentContainerValue> Impl;
43 static void Append(Impl* impl, v8::PersistentContainerValue value)
45 impl->append(value);
47 static bool IsEmpty(const Impl* impl)
49 return impl->isEmpty();
51 static size_t Size(const Impl* impl)
53 return impl->size()
    [all...]
V8PersistentValueMap.h 52 typedef HashMap<KeyType, v8::PersistentContainerValue> Impl;
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);
    [all...]
DOMWrapperMap.h 95 typedef HashMap<KeyType*, v8::PersistentContainerValue> Impl;
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);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRefDict.cpp 13 struct SkRefDict::Impl {
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;
SkRefDict.h 50 struct Impl;
51 Impl* fImpl;
  /external/skia/src/core/
SkRefDict.cpp 13 struct SkRefDict::Impl {
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;
SkRefDict.h 50 struct Impl;
51 Impl* fImpl;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 107 "my_downloads/#/" + Downloads.Impl.RequestHeaders.URI_SEGMENT,
110 "all_downloads/#/" + Downloads.Impl.RequestHeaders.URI_SEGMENT,
116 "download/#/" + Downloads.Impl.RequestHeaders.URI_SEGMENT,
119 Downloads.Impl.PUBLICLY_ACCESSIBLE_DOWNLOADS_URI_SEGMENT + "/#",
125 Downloads.Impl.CONTENT_URI,
126 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI,
130 Downloads.Impl._ID,
131 Downloads.Impl.COLUMN_APP_DATA,
132 Downloads.Impl._DATA,
133 Downloads.Impl.COLUMN_MIME_TYPE
    [all...]
DownloadInfo.java 32 import android.provider.Downloads.Impl;
74 info.mId = getLong(Downloads.Impl._ID);
75 info.mUri = getString(Downloads.Impl.COLUMN_URI);
76 info.mNoIntegrity = getInt(Downloads.Impl.COLUMN_NO_INTEGRITY) == 1;
77 info.mHint = getString(Downloads.Impl.COLUMN_FILE_NAME_HINT);
78 info.mFileName = getString(Downloads.Impl._DATA);
79 info.mMimeType = Intent.normalizeMimeType(getString(Downloads.Impl.COLUMN_MIME_TYPE));
80 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION);
81 info.mVisibility = getInt(Downloads.Impl.COLUMN_VISIBILITY);
82 info.mStatus = getInt(Downloads.Impl.COLUMN_STATUS)
    [all...]
  /external/chromium_org/content/browser/media/capture/
web_contents_audio_input_stream.cc 26 class WebContentsAudioInputStream::Impl
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(
137 // WAIS::Impl can be constructed on any thread, but will DCHECK that all
142 WebContentsAudioInputStream::Impl::~Impl()
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 66 public final static String COLUMN_ID = Downloads.Impl._ID;
72 public final static String COLUMN_TITLE = Downloads.Impl.COLUMN_TITLE;
78 public final static String COLUMN_DESCRIPTION = Downloads.Impl.COLUMN_DESCRIPTION;
83 public final static String COLUMN_URI = Downloads.Impl.COLUMN_URI;
115 public final static String COLUMN_STATUS = Downloads.Impl.COLUMN_STATUS;
152 public static final String COLUMN_MEDIAPROVIDER_URI = Downloads.Impl.COLUMN_MEDIAPROVIDER_URI;
157 public final static String COLUMN_ALLOW_WRITE = Downloads.Impl.COLUMN_ALLOW_WRITE;
315 Downloads.Impl._ID,
316 Downloads.Impl._DATA + " AS " + COLUMN_LOCAL_FILENAME,
317 Downloads.Impl.COLUMN_MEDIAPROVIDER_URI
    [all...]
  /external/chromium_org/ui/wm/core/
shadow_controller.cc 85 // ShadowController::Impl ------------------------------------------------------
89 // only a single Impl (as it observes all window creation by way of an
91 class ShadowController::Impl :
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);
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
string_compare.h 43 class Impl;
44 scoped_ptr<Impl> impl_;
  /external/clang/test/SemaTemplate/
qualified-id.cpp 23 class Impl {
27 template <class T> class Magic : public Impl {
29 return Impl::foo();
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 21 /// getMap - This impl pointer in ~LibCallInfo is actually a StringMap. This
28 delete getMap(Impl);
45 StringMap<const LibCallFunctionInfo*> *Map = getMap(Impl);
50 Impl = Map = new StringMap<const LibCallFunctionInfo*>();
  /external/clang/include/clang/AST/
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/clang/include/clang/Basic/
VirtualFileSystem.h 118 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy
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.reset(); // Normalize the end iterator to Impl == nullptr
    [all...]
  /external/chromium_org/mojo/dbus/
dbus_external_service.h 79 external_service_.reset(BindToPipe(new Impl(this), client_handle.Pass()));
87 class Impl : public InterfaceImpl<ExternalService> {
89 explicit Impl(DBusExternalService* service) : service_(service) {
103 scoped_ptr<Impl> external_service_;
  /external/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 30 /// Impl - A pointer to the actual implementation of the library call
32 LibCallSimplifierImpl *Impl;

Completed in 999 milliseconds

1 2 3 4 5 6 7