HomeSort by relevance Sort by last modified time
    Searched defs:Globals (Results 1 - 13 of 13) sorted by null

  /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 66 struct Globals {
70 } globals; variable in typeref:struct:Globals
76 globals.app_exit->Exit();
305 globals.previous_state =
612 // ApplicationExecutionState_Running and globals.previous_state is too.
613 args->get_PreviousExecutionState(&globals.previous_state);
614 DVLOG(1) << "Previous Execution State: " << globals.previous_state;
950 globals.app_exit = app_exit.Detach();
    [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 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...]
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...]
  /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 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/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...]

Completed in 280 milliseconds