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

1 2

  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /external/chromium/chrome/browser/
io_thread.h 51 struct Globals {
52 Globals();
53 ~Globals();
88 Globals* globals();
179 Globals* globals_;
io_thread.cc 200 ConstructProxyScriptFetcherContext(IOThread::Globals* globals,
205 context->set_host_resolver(globals->host_resolver.get());
206 context->set_cert_verifier(globals->cert_verifier.get());
207 context->set_dnsrr_resolver(globals->dnsrr_resolver.get());
209 globals->http_auth_handler_factory.get());
210 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get());
212 globals->proxy_script_fetcher_http_transaction_factory.get());
214 globals->proxy_script_fetcher_ftp_transaction_factory.get());
217 context->set_network_delegate(globals->system_network_delegate.get())
328 IOThread::Globals* IOThread::globals() { function in class:IOThread
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 1 //===-- GlobalMerge.cpp - Internal globals merging -----------------------===//
9 // This pass merges globals with internal linkage into one. This way all the
10 // globals which were merged into a biggest one can be addressed using offsets
13 // when many globals are involved.
78 STATISTIC(NumMerged , "Number of globals merged");
83 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
115 return "Merge internal globals";
143 bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
154 std::stable_sort(Globals.begin(), Globals.end(), GlobalCmp(TD))
    [all...]
  /external/chromium_org/chrome/browser/
io_thread.h 77 struct Globals {
100 explicit SystemRequestContextLeakChecker(Globals* globals);
104 Globals* const globals_;
107 Globals();
108 ~Globals();
188 Globals* globals();
190 // Allows overriding Globals in tests where IOThread::Init() and
193 void SetGlobalsForTesting(Globals* globals)
    [all...]
io_thread.cc 189 // See IOThread::Globals for details.
191 ConstructProxyScriptFetcherContext(IOThread::Globals* globals,
195 context->set_host_resolver(globals->host_resolver.get());
196 context->set_cert_verifier(globals->cert_verifier.get());
198 globals->transport_security_state.get());
200 globals->http_auth_handler_factory.get());
201 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get());
203 globals->proxy_script_fetcher_http_transaction_factory.get());
205 globals->proxy_script_fetcher_url_request_job_factory.get())
449 IOThread::Globals* IOThread::globals() { function in class:IOThread
    [all...]
  /external/chromium_org/win8/metro_driver/
chrome_app_view.h 148 struct Globals {
170 extern Globals globals;
metro_driver_win7.cc 9 struct Globals {
16 } globals; variable in typeref:struct:Globals
92 return globals.host_main(globals.host_context);
111 globals.core_window = window;
112 globals.host_main = thread_proc;
113 globals.host_context = context;
127 ODS("GetRootWindow", ULONG_PTR(globals.core_window));
128 return globals.core_window;
133 globals.host_window = window
    [all...]
  /external/llvm/lib/IR/
Android.mk 18 Globals.cpp \
  /external/chromium_org/chrome/test/base/
testing_io_thread_state.cc 86 io_thread_state_->SetGlobalsForTesting(new IOThread::Globals());
87 io_thread_state_->globals()->network_time_notifier.reset(
97 delete io_thread_state_->globals();
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml_test.py 70 '<PropertyGroup Label="Globals">'
86 ['PropertyGroup', {'Label': 'Globals'},
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.cc 169 IOThread::Globals* const io_thread_globals = io_thread->globals();
244 IOThread::Globals* const io_thread_globals = io_thread->globals();
359 IOThread::Globals* io_thread_globals) const {
off_the_record_profile_io_data.h 138 IOThread::Globals* io_thread_globals) const OVERRIDE;
profile_impl_io_data.h 179 IOThread::Globals* io_thread_globals) const OVERRIDE;
profile_impl_io_data.cc 332 IOThread::Globals* const io_thread_globals = io_thread->globals();
472 IOThread::Globals* const io_thread_globals = io_thread->globals();
693 IOThread::Globals* io_thread_globals) const {
profile_io_data.h 433 IOThread::Globals* io_thread_globals) const = 0;
  /external/chromium_org/chrome/browser/net/
dns_probe_browsertest.cc 167 IOThread::Globals* globals = io_thread_->globals(); local
168 original_dns_probe_service_ = globals->dns_probe_service.release();
169 globals->dns_probe_service.reset(delaying_dns_probe_service_);
188 IOThread::Globals* globals = io_thread_->globals(); local
190 globals->dns_probe_service.release());
191 globals->dns_probe_service.reset(original_dns_probe_service_)
    [all...]
  /external/chromium/chrome/browser/profiles/
off_the_record_profile_io_data.cc 125 IOThread::Globals* const io_thread_globals = io_thread->globals();
profile_io_data.cc 278 IOThread::Globals* const io_thread_globals = io_thread->globals();
profile_impl_io_data.cc 171 IOThread::Globals* const io_thread_globals = io_thread->globals();
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
SDL_syscdrom.c 28 #pragma mark -- Globals --
159 /* Initialize globals */
  /frameworks/base/core/java/android/app/
WallpaperManager.java 217 static class Globals extends IWallpaperManagerCallback.Stub {
226 Globals(Looper looper) {
346 private static Globals sGlobals;
351 sGlobals = new Globals(looper);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 70 DenseSet<const GlobalVariable *> &Globals) {
72 Globals.insert(GV);
76 DiscoverDependentGlobals(U->getOperand(i), Globals);
906 // As ptxas does not support forward references of globals, we need to first
907 // sort the list of module-level globals in def-use order. We visit each
909 // globals. We use a little extra memory maintaining both a set and a list to
911 SmallVector<const GlobalVariable *, 8> Globals;
918 VisitGlobalVariableForEmission(I, Globals, GVVisited, GVVisiting);
925 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
926 printModuleLevelGV(Globals[i], OS2)
    [all...]
  /external/libvpx/libvpx/build/make/
gen_msvs_proj.sh 572 tag Globals
  /external/mdnsresponder/mDNSPosix/
Responder.c 45 #pragma mark ***** Globals
48 static mDNS mDNSStorage; // mDNS core uses this to store its globals
49 static mDNS_PlatformSupport PlatformStorage; // Stores this platform's globals
73 // if a signal arrives after we test the globals its sets but before we call

Completed in 3643 milliseconds

1 2