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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
AuditFormatters.js 38 WebInspector.AuditFormatters.Registry = {
92 formatter = WebInspector.AuditFormatters.Registry.text;
100 formatter = WebInspector.AuditFormatters.Registry.concat;
103 formatter = WebInspector.AuditFormatters.Registry[value.type];
SourceTokenizer.js 91 WebInspector.SourceTokenizer.Registry = function() {
102 * @return {WebInspector.SourceTokenizer.Registry}
104 WebInspector.SourceTokenizer.Registry.getInstance = function()
106 if (!WebInspector.SourceTokenizer.Registry._instance)
107 WebInspector.SourceTokenizer.Registry._instance = new WebInspector.SourceTokenizer.Registry();
108 return WebInspector.SourceTokenizer.Registry._instance;
111 WebInspector.SourceTokenizer.Registry.prototype = {
  /external/clang/include/clang/ASTMatchers/Dynamic/
Registry.h 1 //===--- Registry.h - Matcher registry -----*- C++ -*-===//
11 /// \brief Registry of all known matchers.
13 /// The registry provides a generic interface to construct any matcher by name.
30 class Registry {
32 /// \brief Construct a matcher from the registry by name.
34 /// Consult the registry of known matchers and construct the appropriate
55 /// \brief Construct a matcher from the registry and bind it.
68 Registry() LLVM_DELETED_FUNCTION;
  /external/llvm/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 39 PassRegistry &Registry = *PassRegistry::getPassRegistry();
40 initializeMachineBranchProbabilityInfoPass(Registry);
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);
SchedulerRegistry.h 11 // pass registry (RegisterScheduler).
39 static MachinePassRegistry Registry;
43 { Registry.Add(this); }
44 ~RegisterScheduler() { Registry.Remove(this); }
53 return (RegisterScheduler *)Registry.getList();
56 return (FunctionPassCtor)Registry.getDefault();
59 Registry.setDefault((MachinePassCtor)C);
62 Registry.setListener(L);
MachineScheduler.h 72 static MachinePassRegistry Registry;
76 Registry.Add(this);
78 ~MachineSchedRegistry() { Registry.Remove(this); }
86 return (MachineSchedRegistry *)Registry.getList();
89 return (ScheduleDAGCtor)Registry.getDefault();
92 Registry.setDefault((MachinePassCtor)C);
95 Registry.setDefault(Name);
98 Registry.setListener(L);
  /external/llvm/tools/bugpoint/
bugpoint.cpp 120 PassRegistry &Registry = *PassRegistry::getPassRegistry();
121 initializeCore(Registry);
122 initializeScalarOpts(Registry);
123 initializeObjCARCOpts(Registry);
124 initializeVectorization(Registry);
125 initializeIPO(Registry);
126 initializeAnalysis(Registry);
127 initializeIPA(Registry);
128 initializeTransformUtils(Registry);
129 initializeInstCombine(Registry);
    [all...]
  /external/chromium_org/chrome/browser/devtools/
tethering_adb_filter.h 93 typedef std::map<std::string, Connection*> Registry;
97 Registry registry_;
  /external/llvm/lib/Target/Hexagon/
HexagonExpandPredSpillCode.cpp 59 PassRegistry &Registry = *PassRegistry::getPassRegistry();
60 initializeHexagonExpandPredSpillCodePass(Registry);
186 static void initializePassOnce(PassRegistry &Registry) {
191 Registry.registerPass(*PI, true);
194 void llvm::initializeHexagonExpandPredSpillCodePass(PassRegistry &Registry) {
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 65 template <typename T> struct Registry {
73 Registry<int>::node node(0);
  /external/llvm/tools/llc/
llc.cpp 182 PassRegistry *Registry = PassRegistry::getPassRegistry();
183 initializeCore(*Registry);
184 initializeCodeGen(*Registry);
185 initializeLoopStrengthReducePass(*Registry);
186 initializeLowerIntrinsicsPass(*Registry);
187 initializeUnreachableBlockElimPass(*Registry);
  /external/chromium/chrome/common/net/
url_fetcher.cc 72 class Registry {
74 Registry();
75 ~Registry();
89 DISALLOW_COPY_AND_ASSIGN(Registry);
102 // Deletes the request, removes it from the registry, and removes the
170 static base::LazyInstance<Registry> g_registry;
176 URLFetcher::Core::Registry::Registry() {}
177 URLFetcher::Core::Registry::~Registry() {}
    [all...]
  /external/chromium_org/net/url_request/
url_fetcher_core.cc 38 // URLFetcherCore::Registry ---------------------------------------------------
40 URLFetcherCore::Registry::Registry() {}
41 URLFetcherCore::Registry::~Registry() {}
43 void URLFetcherCore::Registry::AddURLFetcherCore(URLFetcherCore* core) {
48 void URLFetcherCore::Registry::RemoveURLFetcherCore(URLFetcherCore* core) {
53 void URLFetcherCore::Registry::CancelAll() {
61 base::LazyInstance<URLFetcherCore::Registry>
url_fetcher_core.h 151 class Registry {
153 Registry();
154 ~Registry();
168 DISALLOW_COPY_AND_ASSIGN(Registry);
186 // Deletes the request, removes it from the registry, and removes the
342 static base::LazyInstance<Registry> g_registry;
  /external/llvm/include/llvm/Support/
Registry.h 1 //=== Registry.h - Linker-supported plugin registries -----------*- C++ -*-===//
10 // Defines a registry template for discovering pluggable modules.
20 /// A simple registry entry which provides only a name, description, and
38 /// Traits for registry entries. If using other than SimpleRegistryEntry, it
54 /// A global registry used in conjunction with static constructors to make
58 class Registry {
68 Registry() LLVM_DELETED_FUNCTION;
103 /// Iterators for registry entries.
122 /// Abstract base class for registry listeners, which are informed when new
123 /// entries are added to the registry. Simply subclass and instantiate
    [all...]
  /external/llvm/lib/CodeGen/
Passes.cpp 596 /// RegisterRegAlloc's global Registry tracks allocator registration.
597 MachinePassRegistry RegisterRegAlloc::Registry;
MachineScheduler.cpp 70 // Machine Instruction Scheduling Pass and Registry
131 MachinePassRegistry MachineSchedRegistry::Registry;
    [all...]
  /external/llvm/tools/opt/
opt.cpp 566 PassRegistry &Registry = *PassRegistry::getPassRegistry();
567 initializeCore(Registry);
568 initializeDebugIRPass(Registry);
569 initializeScalarOpts(Registry);
570 initializeObjCARCOpts(Registry);
571 initializeVectorization(Registry);
572 initializeIPO(Registry);
573 initializeAnalysis(Registry);
574 initializeIPA(Registry);
575 initializeTransformUtils(Registry);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 206 MachinePassRegistry RegisterScheduler::Registry;
    [all...]
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 

Completed in 793 milliseconds