Searched refs:Core (Results 1 - 25 of 243) sorted by relevance

12345678910

/external/chromium_org/base/ios/
H A Dscoped_critical_action.h33 // Core logic; ScopedCriticalAction should not be reference counted so
37 class Core : public base::RefCountedThreadSafe<Core> { class in class:base::ios::ScopedCriticalAction
39 Core();
45 friend base::RefCountedThreadSafe<Core>;
46 ~Core();
56 DISALLOW_COPY_AND_ASSIGN(Core);
60 scoped_refptr<Core> core_;
/external/chromium_org/mojo/system/
H A Dentrypoints.h11 class Core;
15 // Sets the instance of Core to be used by system functions.
16 void SetCore(Core* core);
17 // Gets the instance of Core to be used by system functions.
18 Core* GetCore();
/external/clang/lib/Rewrite/
H A DMakefile12 PARALLEL_DIRS := Core
/external/chromium_org/net/proxy/
H A Dnetwork_delegate_error_observer.cc15 // NetworkDelegateErrorObserver::Core -----------------------------------------
17 class NetworkDelegateErrorObserver::Core class in class:net::NetworkDelegateErrorObserver
18 : public base::RefCountedThreadSafe<NetworkDelegateErrorObserver::Core> {
20 Core(NetworkDelegate* network_delegate, base::MessageLoopProxy* origin_loop);
27 friend class base::RefCountedThreadSafe<NetworkDelegateErrorObserver::Core>;
29 virtual ~Core();
34 DISALLOW_COPY_AND_ASSIGN(Core);
37 NetworkDelegateErrorObserver::Core::Core(NetworkDelegate* network_delegate, function in class:net::NetworkDelegateErrorObserver::Core
44 NetworkDelegateErrorObserver::Core
[all...]
/external/chromium_org/ppapi/cpp/
H A Dcore.cc13 void Core::CallOnMainThread(int32_t delay_in_milliseconds,
21 bool Core::IsMainThread() {
H A Dcore.h19 class Core { class in namespace:pp
108 Core(const PPB_Core* inter) : interface_(inter) {} function in class:pp::Core
111 Core(const Core& other);
112 Core& operator=(const Core& other);
/external/clang/lib/StaticAnalyzer/
H A DMakefile16 PARALLEL_DIRS := Core
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dshared_desktop_frame.h38 class Core;
40 SharedDesktopFrame(scoped_refptr<Core> core);
42 scoped_refptr<Core> core_;
H A Dshared_desktop_frame.cc18 class SharedDesktopFrame::Core { class in class:webrtc::SharedDesktopFrame
20 Core(DesktopFrame* frame) : frame_(frame) {} function in class:webrtc::SharedDesktopFrame::Core
39 virtual ~Core() {}
44 DISALLOW_COPY_AND_ASSIGN(Core);
52 scoped_refptr<Core> core(new Core(desktop_frame));
72 SharedDesktopFrame::SharedDesktopFrame(scoped_refptr<Core> core)
/external/chromium_org/win8/metro_driver/
H A Dmetro_driver.h11 : public mswr::RuntimeClass<winapp::Core::IFrameworkViewSource> {
13 ChromeAppViewFactory(winapp::Core::ICoreApplication* icore_app);
14 IFACEMETHOD(CreateView)(winapp::Core::IFrameworkView** view);
/external/chromium_org/ppapi/shared_impl/
H A Dthread_aware_callback.cc15 class ThreadAwareCallbackBase::Core : public base::RefCountedThreadSafe<Core> { class in class:ppapi::internal::ThreadAwareCallbackBase
17 Core() : aborted_(false) {} function in class:ppapi::internal::ThreadAwareCallbackBase::Core
27 friend class base::RefCountedThreadSafe<Core>;
28 ~Core() {}
35 core_(new Core()) {
51 RunWhileLocked(base::Bind(&Core::RunIfNotAborted, core_, closure)),
/external/chromium_org/remoting/host/
H A Dhost_window_proxy.cc17 class HostWindowProxy::Core class in class:remoting::HostWindowProxy
18 : public base::RefCountedThreadSafe<Core>,
21 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
32 friend class base::RefCountedThreadSafe<Core>;
33 virtual ~Core();
66 DISALLOW_COPY_AND_ASSIGN(Core);
75 // Detach |host_window| from the calling thread so that |Core| could run it on
78 core_ = new Core(caller_task_runner, ui_task_runner, host_window.Pass());
94 HostWindowProxy::Core::Core( function in class:remoting::HostWindowProxy::Core
[all...]
/external/chromium_org/remoting/host/win/
H A Drdp_client.cc39 class RdpClient::Core class in class:remoting::RdpClient
40 : public base::RefCountedThreadSafe<Core>,
43 Core(
63 friend class base::RefCountedThreadSafe<Core>;
64 virtual ~Core();
85 scoped_refptr<Core> self_;
87 DISALLOW_COPY_AND_ASSIGN(Core);
98 core_ = new Core(caller_task_runner, ui_task_runner, event_handler);
114 RdpClient::Core::Core( function in class:remoting::RdpClient::Core
[all...]
/external/chromium_org/google_apis/gcm/base/
H A Dmcs_message.cc12 MCSMessage::Core::Core() {} function in class:gcm::MCSMessage::Core
14 MCSMessage::Core::Core(uint8 tag, function in class:gcm::MCSMessage::Core
21 MCSMessage::Core::Core( function in class:gcm::MCSMessage::Core
27 MCSMessage::Core::~Core() {}
29 const google::protobuf::MessageLite& MCSMessage::Core::Get() const {
38 core_(new Core(tag
[all...]
H A Dmcs_message.h57 class Core : public base::RefCountedThreadSafe<MCSMessage::Core> { class in class:gcm::MCSMessage
59 Core();
60 Core(uint8 tag, const google::protobuf::MessageLite& protobuf);
61 Core(uint8 tag, scoped_ptr<const google::protobuf::MessageLite> protobuf);
66 friend class base::RefCountedThreadSafe<MCSMessage::Core>;
67 ~Core();
72 DISALLOW_COPY_AND_ASSIGN(Core);
80 scoped_refptr<const Core> core_;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dllvm_wrapper.h4 #include <llvm-c/Core.h>
/external/mesa3d/src/gallium/drivers/r600/
H A Dllvm_wrapper.h4 #include <llvm-c/Core.h>
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
H A DHandle.java26 * @see Core#wait(Handle, Core.HandleSignals, long)
28 public int wait(Core.HandleSignals signals, long deadline);
42 * Returns the {@link Core} implementation for this handle. Can be null if this handle is
45 public Core getCore();
/external/chromium_org/remoting/client/plugin/
H A Dpepper_plugin_thread_delegate.h11 class Core;
25 pp::Core* core_;
/external/chromium_org/sync/internal_api/public/attachments/
H A Dattachment_service_proxy.h66 // Core does the work of proxying calls to AttachmentService methods from one
73 // Core is ref-counted because we want to allow AttachmentServiceProxy to be
74 // copy-constructable while allowing for different implementations of Core
79 class SYNC_EXPORT Core : public AttachmentService, class in class:syncer::AttachmentServiceProxy
80 public base::RefCountedThreadSafe<Core> {
83 Core(const base::WeakPtr<syncer::AttachmentService>& wrapped);
96 friend class base::RefCountedThreadSafe<Core>;
97 virtual ~Core();
102 DISALLOW_COPY_AND_ASSIGN(Core);
105 // Used in tests to create an AttachmentServiceProxy with a custom Core
[all...]
/external/deqp/framework/platform/win32/
H A DtcuWGL.hpp4 * drawElements Quality Program Tester Core
152 * \brief Core WGL API
154 * \note Created API objects depend on Core object being live. User is
155 * resposible of keeping Core live as long as there are API objects
158 class Core class in namespace:tcu::wgl
161 Core (HINSTANCE instance);
162 ~Core (void);
171 Core (const Core& other);
172 Core
[all...]
/external/chromium_org/chrome/test/chromedriver/net/
H A Dsync_websocket_impl.cc18 : core_(new Core(context_getter)) {}
43 SyncWebSocketImpl::Core::Core(net::URLRequestContextGetter* context_getter) function in class:SyncWebSocketImpl::Core
48 bool SyncWebSocketImpl::Core::IsConnected() {
53 bool SyncWebSocketImpl::Core::Connect(const GURL& url) {
58 base::Bind(&SyncWebSocketImpl::Core::ConnectOnIO,
64 bool SyncWebSocketImpl::Core::Send(const std::string& message) {
69 base::Bind(&SyncWebSocketImpl::Core::SendOnIO,
75 SyncWebSocket::StatusCode SyncWebSocketImpl::Core::ReceiveNextMessage(
94 bool SyncWebSocketImpl::Core
[all...]
/external/chromium_org/remoting/client/
H A Daudio_decode_scheduler.cc16 class AudioDecodeScheduler::Core : public base::RefCountedThreadSafe<Core> { class in class:remoting::AudioDecodeScheduler
18 Core(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
30 friend class base::RefCountedThreadSafe<Core>;
32 virtual ~Core();
46 DISALLOW_COPY_AND_ASSIGN(Core);
49 AudioDecodeScheduler::Core::Core( function in class:remoting::AudioDecodeScheduler::Core
58 AudioDecodeScheduler::Core::~Core() {
[all...]
/external/chromium_org/net/base/
H A Ddirectory_lister.h77 class Core : public base::RefCountedThreadSafe<Core> { class in class:net::DirectoryLister
79 Core(const base::FilePath& dir,
89 friend class base::RefCountedThreadSafe<Core>;
92 ~Core();
109 DISALLOW_COPY_AND_ASSIGN(Core);
115 const scoped_refptr<Core> core_;
/external/chromium_org/jingle/notifier/listener/
H A Dnon_blocking_push_client.cc17 class NonBlockingPushClient::Core class in class:notifier::NonBlockingPushClient
18 : public base::RefCountedThreadSafe<NonBlockingPushClient::Core>,
22 explicit Core(
51 friend class base::RefCountedThreadSafe<NonBlockingPushClient::Core>;
54 virtual ~Core();
62 DISALLOW_COPY_AND_ASSIGN(Core);
65 NonBlockingPushClient::Core::Core( function in class:notifier::NonBlockingPushClient::Core
72 NonBlockingPushClient::Core::~Core() {
[all...]

Completed in 516 milliseconds

12345678910