/external/llvm/lib/Analysis/ |
Analysis.cpp | 18 void llvm::initializeAnalysis(PassRegistry &Registry) { 19 initializeAliasAnalysisAnalysisGroup(Registry); 20 initializeAliasAnalysisCounterPass(Registry); 21 initializeAAEvalPass(Registry); 22 initializeAliasDebuggerPass(Registry); 23 initializeAliasSetPrinterPass(Registry); 24 initializeNoAAPass(Registry); 25 initializeBasicAliasAnalysisPass(Registry); 26 initializeBlockFrequencyPass(Registry); 27 initializeBranchProbabilityInfoPass(Registry); [all...] |
/external/llvm/lib/CodeGen/ |
CodeGen.cpp | 21 void llvm::initializeCodeGen(PassRegistry &Registry) { 22 initializeCalculateSpillWeightsPass(Registry); 23 initializeDeadMachineInstructionElimPass(Registry); 24 initializeGCModuleInfoPass(Registry); 25 initializeIfConverterPass(Registry); 26 initializeLiveDebugVariablesPass(Registry); 27 initializeLiveIntervalsPass(Registry); 28 initializeLiveStacksPass(Registry); 29 initializeLiveVariablesPass(Registry); 30 initializeMachineCSEPass(Registry); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
Scalar.cpp | 29 void llvm::initializeScalarOpts(PassRegistry &Registry) { 30 initializeADCEPass(Registry); 31 initializeBlockPlacementPass(Registry); 32 initializeCodeGenPreparePass(Registry); 33 initializeConstantPropagationPass(Registry); 34 initializeCorrelatedValuePropagationPass(Registry); 35 initializeDCEPass(Registry); 36 initializeDeadInstEliminationPass(Registry); 37 initializeDSEPass(Registry); 38 initializeGVNPass(Registry); [all...] |
/external/llvm/lib/Transforms/IPO/ |
IPO.cpp | 23 void llvm::initializeIPO(PassRegistry &Registry) { 24 initializeArgPromotionPass(Registry); 25 initializeConstantMergePass(Registry); 26 initializeDAEPass(Registry); 27 initializeDAHPass(Registry); 28 initializeFunctionAttrsPass(Registry); 29 initializeGlobalDCEPass(Registry); 30 initializeGlobalOptPass(Registry); 31 initializeIPCPPass(Registry); 32 initializeAlwaysInlinerPass(Registry); [all...] |
/external/llvm/lib/Transforms/Utils/ |
Utils.cpp | 22 void llvm::initializeTransformUtils(PassRegistry &Registry) { 23 initializeBreakCriticalEdgesPass(Registry); 24 initializeInstNamerPass(Registry); 25 initializeLCSSAPass(Registry); 26 initializeLoopSimplifyPass(Registry); 27 initializeLowerInvokePass(Registry); 28 initializeLowerSwitchPass(Registry); 29 initializePromotePassPass(Registry); 30 initializeUnifyFunctionExitNodesPass(Registry); 31 initializeInstSimplifierPass(Registry); [all...] |
/external/llvm/include/llvm/Support/ |
Registry.h | 1 //=== Registry.h - Linker-supported plugin registries -----------*- C++ -*-===// 10 // Defines a registry template for discovering pluggable modules. 18 /// A simple registry entry which provides only a name, description, and 36 /// Traits for registry entries. If using other than SimpleRegistryEntry, it 52 /// A global registry used in conjunction with static constructors to make 56 class Registry { 66 Registry(); // Do not implement. 101 /// Iterators for registry entries. 120 /// Abstract base class for registry listeners, which are informed when new 121 /// entries are added to the registry. Simply subclass and instantiate [all...] |
RegistryParser.h | 10 // Defines a command-line parser for a registry. 18 #include "llvm/Support/Registry.h" 22 /// A command-line parser for a registry. Use like such: 24 /// static cl::opt<Registry<Collector>::entry, false, 36 public Registry<T, U>::listener { 39 typedef typename Registry<T, U>::listener listener;
|
/external/dbus/bus/ |
services.h | 37 BusRegistry* bus_registry_ref (BusRegistry *registry); 38 void bus_registry_unref (BusRegistry *registry); 39 BusService* bus_registry_lookup (BusRegistry *registry, 41 BusService* bus_registry_ensure (BusRegistry *registry, 47 void bus_registry_foreach (BusRegistry *registry, 50 dbus_bool_t bus_registry_list_services (BusRegistry *registry, 53 dbus_bool_t bus_registry_acquire_service (BusRegistry *registry, 60 dbus_bool_t bus_registry_release_service (BusRegistry *registry, 66 dbus_bool_t bus_registry_set_service_context_table (BusRegistry *registry,
|
services.c | 44 BusRegistry *registry; member in struct:BusService 76 BusRegistry *registry; local 78 registry = dbus_new0 (BusRegistry, 1); 79 if (registry == NULL) 82 registry->refcount = 1; 83 registry->context = context; 85 registry->service_hash = _dbus_hash_table_new (DBUS_HASH_STRING, 87 if (registry->service_hash == NULL) 90 registry->service_pool = _dbus_mem_pool_new (sizeof (BusService), 93 if (registry->service_pool == NULL [all...] |
/external/clang/include/clang/Frontend/ |
FrontendPluginRegistry.h | 14 #include "llvm/Support/Registry.h" 18 /// The frontend plugin registry. 19 typedef llvm::Registry<PluginASTAction> FrontendPluginRegistry;
|
/external/webkit/Source/WebCore/inspector/front-end/ |
SourceTokenizer.js | 68 WebInspector.SourceTokenizer.Registry = function() { 77 WebInspector.SourceTokenizer.Registry.getInstance = function() 79 if (!WebInspector.SourceTokenizer.Registry._instance) 80 WebInspector.SourceTokenizer.Registry._instance = new WebInspector.SourceTokenizer.Registry(); 81 return WebInspector.SourceTokenizer.Registry._instance; 84 WebInspector.SourceTokenizer.Registry.prototype = {
|
/external/llvm/lib/Analysis/IPA/ |
IPA.cpp | 20 void llvm::initializeIPA(PassRegistry &Registry) { 21 initializeBasicCallGraphPass(Registry); 22 initializeCallGraphAnalysisGroup(Registry); 23 initializeFindUsedTypesPass(Registry); 24 initializeGlobalsModRefPass(Registry);
|
/external/llvm/lib/Transforms/Instrumentation/ |
Instrumentation.cpp | 22 void llvm::initializeInstrumentation(PassRegistry &Registry) { 23 initializeEdgeProfilerPass(Registry); 24 initializeOptimalEdgeProfilerPass(Registry); 25 initializePathProfilerPass(Registry); 26 initializeGCOVProfilerPass(Registry);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
EmailClientConnectionManager.java | 55 HttpParams params, SchemeRegistry registry, TrackingKeyManager keyManager) { 56 super(params, registry); 63 // Create a registry for our three schemes; http and https will use built-in factories 64 SchemeRegistry registry = new SchemeRegistry(); local 65 registry.register(new Scheme("http", 67 registry.register(new Scheme("https", 71 registry.register(new Scheme("httpts", 74 return new EmailClientConnectionManager(params, registry, keyManager); 87 SchemeRegistry registry = getSchemeRegistry(); local 89 Scheme existing = registry.get(schemeName) 110 SchemeRegistry registry = getSchemeRegistry(); local [all...] |
/external/chromium/chrome/browser/policy/ |
configuration_policy_provider_win.h | 15 // stored as values in a special section of the Windows Registry. 16 // On a managed machine in a domain, this portion of the registry is
|
/external/llvm/include/llvm/CodeGen/ |
RegAllocRegistry.h | 11 // pass registry (RegisterRegAlloc). 33 static MachinePassRegistry Registry; 38 Registry.Add(this); 40 ~RegisterRegAlloc() { Registry.Remove(this); } 49 return (RegisterRegAlloc *)Registry.getList(); 52 return (FunctionPassCtor)Registry.getDefault(); 55 Registry.setDefault((MachinePassCtor)C); 58 Registry.setListener(L);
|
GCMetadataPrinter.h | 25 #include "llvm/Support/Registry.h" 31 /// GCMetadataPrinterRegistry - The GC assembly printer registry uses all the 32 /// defaults from Registry. 33 typedef Registry<GCMetadataPrinter> GCMetadataPrinterRegistry;
|
/external/chromium/net/base/ |
platform_mime_util_win.cc | 10 #include "base/win/registry.h" 16 // check windows registry for file extension's mime type (registry key
|
/external/chromium/net/proxy/ |
proxy_config_service_win.h | 29 // (1) Watch the internet explorer settings registry keys for changes. When 30 // one of the registry keys pertaining to proxy settings has changed, we 41 // registry dependencies). 56 // Registers change observers on the registry keys relating to proxy settings. 64 // This is called whenever one of the registry keys we are watching change.
|
proxy_config_service_win.cc | 16 #include "base/win/registry.h" 43 // Try to create a watch event for the registry key (which watches the 76 // The registry functions below will end up going to disk. Do this on another 83 // Lazily-initialize our registry watcher. 94 // The registry functions below will end up going to disk. Do this on another 99 // in the registry. In some cases it appears in a binary value, in other 104 // This function is probably not exhaustive in the registry locations it 138 // Figure out which registry key signalled this change. 147 // Keep watching the registry key.
|
/external/icu4c/common/ |
wintz.c | 32 /* The layout of the Tzi value in the registry */ 43 * Various registry keys and key fragments. 82 * the registry. 100 really want to know is how the registry is laid out. 177 installs. It works by directly interrogating the registry and 180 registry contains time zone data under one of two keys (depending on 202 blocks of various registry keys. When we find a match, we know what 203 time zone Windows is set to. Since the registry key is not 212 registry for the current zone to the display name stored in the 213 registry for various Windows zones. By comparing the registry dat [all...] |
/external/apache-harmony/support/src/test/resources/tests/resources/manifest/ |
hyts_MANIFEST.MF | 6 com.ibm.ive.eccomm.client.services.registry, 7 com.ibm.ive.eccomm.service.registry; specification-version=1.0.0, 18 com.ibm.ive.eccomm.service.registry.RegistryService 22 com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultHttpClient.java | 164 SchemeRegistry registry = new SchemeRegistry(); local 165 registry.register( 167 registry.register( 196 connManager = factory.newInstance(params, registry); 198 connManager = new SingleClientConnManager(getParams(), registry); 237 AuthSchemeRegistry registry = new AuthSchemeRegistry(); local 238 registry.register( 241 registry.register( 244 return registry; 250 CookieSpecRegistry registry = new CookieSpecRegistry() local [all...] |
/libcore/support/src/test/java/tests/resources/manifest/ |
hyts_MANIFEST.MF | 6 com.ibm.ive.eccomm.client.services.registry, 7 com.ibm.ive.eccomm.service.registry; specification-version=1.0.0, 18 com.ibm.ive.eccomm.service.registry.RegistryService 22 com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0
|
/external/llvm/include/llvm/ |
PassSupport.h | 136 function(Registry); \ 149 static void* initialize##passName##PassOnce(PassRegistry &Registry) { \ 152 Registry.registerPass(*PI, true); \ 155 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \ 160 static void* initialize##passName##PassOnce(PassRegistry &Registry) { 163 initialize##depName##Pass(Registry); 165 initialize##depName##AnalysisGroup(Registry); 170 Registry.registerPass(*PI, true); \ 173 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \ 252 static void* initialize##agName##AnalysisGroupOnce(PassRegistry &Registry) { \ [all...] |