Home
last modified time | relevance | path

Searched refs:Core (Results 1 – 25 of 248) sorted by relevance

12345678910

/external/eigen/Eigen/
DCore15 #include "src/Core/util/DisableStupidWarnings.h"
20 #include "src/Core/util/Macros.h"
26 #include "src/Core/util/MKL_support.h"
87 …// so, to avoid compile errors when windows.h is included after Eigen/Core, ensure intrinsics are …
229 /** \defgroup Core_Module Core module
235 * #include <Eigen/Core>
243 #include "src/Core/util/Constants.h"
244 #include "src/Core/util/ForwardDeclarations.h"
245 #include "src/Core/util/Meta.h"
246 #include "src/Core/util/XprHelper.h"
[all …]
DArray4 // include Core first to handle Eigen2 support macros
5 #include "Core"
8 … Eigen/Array header does no longer exist in Eigen3. All that functionality has moved to Eigen/Core.
DHouseholder4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
20 #include "src/Core/util/ReenableStupidWarnings.h"
DLeastSquares11 #include "Core"
13 #include "src/Core/util/DisableStupidWarnings.h"
28 #include "src/Core/util/ReenableStupidWarnings.h"
DQtAlignedMalloc5 #include "Core"
9 #include "src/Core/util/DisableStupidWarnings.h"
29 #include "src/Core/util/ReenableStupidWarnings.h"
DJacobi4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
22 #include "src/Core/util/ReenableStupidWarnings.h"
DCholesky4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
29 #include "src/Core/util/ReenableStupidWarnings.h"
DSparseCore4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
26 * This module depends on: Core.
63 #include "src/Core/util/ReenableStupidWarnings.h"
DQR4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
38 #include "src/Core/util/ReenableStupidWarnings.h"
DLU4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
38 #include "src/Core/util/ReenableStupidWarnings.h"
/external/chromium/chrome/browser/sync/notifier/
Dnon_blocking_invalidation_notifier.cc17 class NonBlockingInvalidationNotifier::Core class in sync_notifier::NonBlockingInvalidationNotifier
18 : public base::RefCountedThreadSafe<NonBlockingInvalidationNotifier::Core>,
22 Core();
45 base::RefCountedThreadSafe<NonBlockingInvalidationNotifier::Core>;
47 ~Core();
52 DISALLOW_COPY_AND_ASSIGN(Core);
55 NonBlockingInvalidationNotifier::Core::Core() in Core() function in sync_notifier::NonBlockingInvalidationNotifier::Core
59 NonBlockingInvalidationNotifier::Core::~Core() { in ~Core()
62 void NonBlockingInvalidationNotifier::Core::Initialize( in Initialize()
77 void NonBlockingInvalidationNotifier::Core::Teardown() { in Teardown()
[all …]
/external/chromium/chrome/browser/sync/glue/
Dsync_backend_host.cc61 : core_(new Core(ALLOW_THIS_IN_INITIALIZER_LIST(this))), in SyncBackendHost()
144 InitCore(Core::DoInitializeOptions( in Initialize()
201 void SyncBackendHost::InitCore(const Core::DoInitializeOptions& options) { in InitCore()
203 NewRunnableMethod(core_.get(), &SyncBackendHost::Core::DoInitialize, in InitCore()
210 &SyncBackendHost::Core::DoUpdateCredentials, in UpdateCredentials()
216 NewRunnableMethod(core_.get(), &SyncBackendHost::Core::DoStartSyncing)); in StartSyncingWithServer()
237 NewRunnableMethod(core_.get(), &SyncBackendHost::Core::DoSetPassphrase, in SetPassphrase()
249 &SyncBackendHost::Core::DoShutdown, in Shutdown()
406 &SyncBackendHost::Core::FinishConfigureDataTypes)); in ConfigureDataTypes()
414 core_.get(),&SyncBackendHost::Core::DoStartConfiguration, callback)); in StartConfiguration()
[all …]
Dsync_backend_host.h260 class Core : public base::RefCountedThreadSafe<SyncBackendHost::Core>,
265 explicit Core(SyncBackendHost* backend);
425 friend class base::RefCountedThreadSafe<SyncBackendHost::Core>;
428 virtual ~Core();
501 base::RepeatingTimer<Core> save_changes_timer_;
522 DISALLOW_COPY_AND_ASSIGN(Core);
539 virtual void InitCore(const Core::DoInitializeOptions& options);
557 scoped_refptr<Core> core_;
/external/chromium/chrome/common/net/
Durl_fetcher.cc33 class URLFetcher::Core class in URLFetcher
34 : public base::RefCountedThreadSafe<URLFetcher::Core>,
41 Core(URLFetcher* fetcher,
70 friend class base::RefCountedThreadSafe<URLFetcher::Core>;
77 void AddURLFetcherCore(Core* core);
78 void RemoveURLFetcherCore(Core* core);
87 std::set<Core*> fetchers_;
92 virtual ~Core();
173 DISALLOW_COPY_AND_ASSIGN(Core);
176 URLFetcher::Core::Registry::Registry() {} in Registry()
[all …]
/external/chromium/net/proxy/
Dsync_host_resolver_bridge.cc19 class SyncHostResolverBridge::Core class in net::SyncHostResolverBridge
20 : public base::RefCountedThreadSafe<SyncHostResolverBridge::Core> {
22 Core(HostResolver* resolver, MessageLoop* host_resolver_loop);
37 friend class base::RefCountedThreadSafe<SyncHostResolverBridge::Core>;
55 net::CompletionCallbackImpl<Core> callback_;
71 DISALLOW_COPY_AND_ASSIGN(Core);
74 SyncHostResolverBridge::Core::Core(HostResolver* host_resolver, in Core() function in net::SyncHostResolverBridge::Core
79 callback_(this, &Core::OnResolveCompletion)), in Core()
85 int SyncHostResolverBridge::Core::ResolveSynchronously( in ResolveSynchronously()
91 NewRunnableMethod(this, &Core::StartResolve, in ResolveSynchronously()
[all …]
Dpolling_proxy_config_service.cc19 class PollingProxyConfigService::Core class in net::PollingProxyConfigService
20 : public base::RefCountedThreadSafe<PollingProxyConfigService::Core> {
22 Core(base::TimeDelta poll_interval, in Core() function in net::PollingProxyConfigService::Core
93 NewRunnableMethod(this, &Core::PollOnWorkerThread, get_config_func_), in CheckForChangesNow()
106 NewRunnableMethod(this, &Core::GetConfigCompleted, config)); in PollOnWorkerThread()
179 : core_(new Core(poll_interval, get_config_func)) { in PollingProxyConfigService()
/external/chromium/chrome/browser/chromeos/login/
Downership_status_checker.cc12 : core_(new Core(callback)) { in OwnershipStatusChecker()
20 OwnershipStatusChecker::Core::Core(Callback* callback) in Core() function in chromeos::OwnershipStatusChecker::Core
24 void OwnershipStatusChecker::Core::Check() { in Check()
33 &OwnershipStatusChecker::Core::ReportResult, in Check()
40 &OwnershipStatusChecker::Core::CheckOnFileThread)); in Check()
44 void OwnershipStatusChecker::Core::Cancel() { in Cancel()
49 void OwnershipStatusChecker::Core::CheckOnFileThread() { in CheckOnFileThread()
56 &OwnershipStatusChecker::Core::ReportResult, in CheckOnFileThread()
60 void OwnershipStatusChecker::Core::ReportResult( in ReportResult()
Downership_status_checker.h34 class Core : public base::RefCountedThreadSafe<Core> {
36 explicit Core(Callback* callback);
51 DISALLOW_COPY_AND_ASSIGN(Core);
54 scoped_refptr<Core> core_;
/external/chromium/chrome/browser/net/
Dview_http_cache_job_factory.cc25 core_(new Core), in ViewHttpCacheJob()
44 class Core : public base::RefCounted<Core> { class in __anon1cc443720111::ViewHttpCacheJob
46 Core() in Core() function in __anon1cc443720111::ViewHttpCacheJob::Core
49 callback_(this, &Core::OnIOComplete)), in Core()
65 friend class base::RefCounted<Core>;
67 ~Core() {} in ~Core()
75 net::CompletionCallbackImpl<Core> callback_;
78 DISALLOW_COPY_AND_ASSIGN(Core);
86 scoped_refptr<Core> core_;
123 int ViewHttpCacheJob::Core::Start(const net::URLRequest& request, in Start()
[all …]
/external/chromium/net/http/
Dpartial_data.cc43 class PartialData::Core { class in net::PartialData
46 static Core* CreateCore(PartialData* owner) { in CreateCore()
47 return new Core(owner); in CreateCore()
61 explicit Core(PartialData* owner);
62 ~Core();
69 net::CompletionCallbackImpl<Core> callback_;
70 DISALLOW_COPY_AND_ASSIGN(Core);
73 PartialData::Core::Core(PartialData* owner) in Core() function in net::PartialData::Core
75 ALLOW_THIS_IN_INITIALIZER_LIST(callback_(this, &Core::OnIOComplete)) { in Core()
80 PartialData::Core::~Core() { in ~Core()
[all …]
/external/chromium/chrome/common/net/gaia/
Dgaia_oauth_client.cc24 class GaiaOAuthClient::Core class in gaia::GaiaOAuthClient
25 : public base::RefCountedThreadSafe<GaiaOAuthClient::Core>,
28 Core(const std::string& gaia_url, in Core() function in gaia::GaiaOAuthClient::Core
35 virtual ~Core() { } in ~Core()
73 void GaiaOAuthClient::Core::GetTokensFromAuthCode( in GetTokensFromAuthCode()
87 void GaiaOAuthClient::Core::RefreshToken( in RefreshToken()
101 void GaiaOAuthClient::Core::MakeGaiaRequest( in MakeGaiaRequest()
116 void GaiaOAuthClient::Core::OnURLFetchComplete( in OnURLFetchComplete()
139 void GaiaOAuthClient::Core::HandleResponse( in HandleResponse()
190 core_ = new Core(gaia_url, context_getter); in GaiaOAuthClient()
/external/chromium/net/socket/
Dtcp_client_socket_win.cc65 class TCPClientSocketWin::Core : public base::RefCounted<Core> { class in net::TCPClientSocketWin
67 explicit Core(TCPClientSocketWin* socket);
100 friend class base::RefCounted<Core>;
104 explicit ReadDelegate(Core* core) : core_(core) {} in ReadDelegate()
111 Core* const core_;
116 explicit WriteDelegate(Core* core) : core_(core) {} in WriteDelegate()
123 Core* const core_;
126 ~Core();
148 DISALLOW_COPY_AND_ASSIGN(Core);
151 TCPClientSocketWin::Core::Core( in Core() function in net::TCPClientSocketWin::Core
[all …]
/external/eigen/unsupported/Eigen/
DKroneckerProduct4 #include "../../Eigen/Core"
6 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
24 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
DSkyline5 #include "Eigen/Core"
7 #include "Eigen/src/Core/util/DisableStupidWarnings.h"
29 #include "Eigen/src/Core/util/ReenableStupidWarnings.h"
/external/valgrind/main/
Dglibc-2.4.supp27 ## Suppressions for Fedora Core 5 on ppc32/amd64 (glibc-2.3.90)
30 Fedora-Core-5-hack1
37 Fedora-Core-5-hack2
46 Fedora-Core-5-hack2a
55 Fedora-Core-5-hack3
64 Fedora-Core-5-__strcpy_chk-64bit-hack-TODO-fix-this-properly
72 Fedora-Core-5-hack3-ld24
80 Fedora-Core-5-yet-another-ppc32-hack

12345678910