/external/clang/test/CodeGen/ |
2003-06-26-CFECrash.c | 8 typedef struct Globals {
|
/external/chromium_org/win8/metro_driver/ |
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...] |
chrome_app_view.h | 148 struct Globals { 170 extern Globals globals;
|
chrome_app_view_ash.cc | 70 struct Globals { 74 } globals; variable in typeref:struct:Globals 146 globals.app_exit->Exit(); 472 globals.previous_state = 908 // ApplicationExecutionState_Running and globals.previous_state is too. 909 args->get_PreviousExecutionState(&globals.previous_state); 910 DVLOG(1) << "Previous Execution State: " << globals.previous_state; [all...] |
/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/chromium_org/chrome/browser/ |
io_thread.cc | 206 // See IOThread::Globals for details. 208 ConstructProxyScriptFetcherContext(IOThread::Globals* globals, 212 context->set_host_resolver(globals->host_resolver.get()); 213 context->set_cert_verifier(globals->cert_verifier.get()); 215 globals->transport_security_state.get()); 217 globals->cert_transparency_verifier.get()); 219 globals->http_auth_handler_factory.get()); 220 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get()); 222 globals->proxy_script_fetcher_http_transaction_factory.get()) 470 IOThread::Globals* IOThread::globals() { function in class:IOThread [all...] |
io_thread.h | 79 struct Globals { 102 explicit SystemRequestContextLeakChecker(Globals* globals); 106 Globals* const globals_; 109 Globals(); 110 ~Globals(); 191 Globals* globals(); 193 // Allows overriding Globals in tests where IOThread::Init() and 196 void SetGlobalsForTesting(Globals* globals) [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...] |
/frameworks/base/core/java/android/app/ |
WallpaperManager.java | 215 static class Globals extends IWallpaperManagerCallback.Stub { 224 Globals(Looper looper) { 342 private static Globals sGlobals; 347 sGlobals = new Globals(looper); [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfDebug.cpp | [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/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | 11 // taken. If obviously true, it marks read/write globals as constant, deletes 45 STATISTIC(NumMarked , "Number of globals marked constant"); 46 STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr"); 47 STATISTIC(NumSRA , "Number of aggregate globals broken into scalars"); 49 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them"); 50 STATISTIC(NumDeleted , "Number of globals deleted"); 53 STATISTIC(NumLocalized , "Number of globals localized"); 123 /// for scalar globals. 129 /// tracked for scalar globals. 389 // memory pointed to by globals at exit. This is popular because it als [all...] |