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

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditFormatters.js 38 WebInspector.AuditFormatters.Registry = {
116 formatter = WebInspector.AuditFormatters.Registry.text;
124 formatter = WebInspector.AuditFormatters.Registry.concat;
127 formatter = WebInspector.AuditFormatters.Registry[value.type];
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfCIDSystemInfoDictionary_autogen.cpp 11 SkString SkPdfCIDSystemInfoDictionary::Registry(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Registry", "");
20 return get("Registry", "") != NULL;
  /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 125 static MachinePassRegistry Registry;
129 Registry.Add(this);
131 ~MachineSchedRegistry() { Registry.Remove(this); }
139 return (MachineSchedRegistry *)Registry.getList();
142 Registry.setListener(L);
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfCIDSystemInfoDictionary_autogen.cpp 11 SkString SkPdfCIDSystemInfoDictionary::Registry(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Registry", "");
20 return get("Registry", "") != NULL;
  /frameworks/ex/framesequence/jni/
Registry.cpp 17 #include "Registry.h"
21 static Registry* gHead = 0;
24 Registry::Registry(const RegistryEntry& entry) {
35 const RegistryEntry* Registry::Find(Stream* stream) {
36 Registry* registry = gHead; local
40 while (registry) {
41 if (headerSize >= registry->mImpl.requiredHeaderBytes
42 && registry->mImpl.checkHeader(header, headerSize))
    [all...]
Registry.h 38 class Registry {
40 Registry(const RegistryEntry& entry);
46 Registry* mNext;
  /external/chromium_org/tools/gyp/test/lib/
TestWin.py 15 class Registry(object):
24 key: The registry key to read from.
58 key: The registry key.
59 value: The particular registry value to read (optional).
74 """Use reg.exe to obtain the value of a registry key.
77 key: The registry key.
78 value: The particular registry value to read.
80 contents of the registry key's value, or None on failure.
95 key: The registry key to check.
  /external/clang/tools/driver/
cc1_main.cpp 62 void initializePollyPasses(llvm::PassRegistry &Registry);
78 llvm::PassRegistry &Registry = *llvm::PassRegistry::getPassRegistry();
79 polly::initializePollyPasses(Registry);
  /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.
53 class Registry {
55 /// \brief Look up a matcher in the registry by name,
84 /// \brief Construct a matcher from the registry.
104 /// \brief Construct a matcher from the registry and bind it.
117 Registry() LLVM_DELETED_FUNCTION;
  /external/llvm/tools/bugpoint/
bugpoint.cpp 114 void initializePollyPasses(llvm::PassRegistry &Registry);
126 PassRegistry &Registry = *PassRegistry::getPassRegistry();
127 initializeCore(Registry);
128 initializeScalarOpts(Registry);
129 initializeObjCARCOpts(Registry);
130 initializeVectorization(Registry);
131 initializeIPO(Registry);
132 initializeAnalysis(Registry);
133 initializeIPA(Registry);
134 initializeTransformUtils(Registry);
    [all...]
  /external/chromium_org/chrome/browser/devtools/device/
port_forwarding_controller.h 68 typedef std::map<std::string, Connection*> Registry;
87 Registry registry_;
  /external/chromium_org/third_party/skia/experimental/SkiaExamples/
SkExample.h 32 // Use this public registry to tell the world about your sample.
33 typedef SkTRegistry<SkExample*(*)(SkExampleWindow*)> Registry;
73 const SkExample::Registry* fRegistry;
  /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/llvm/tools/opt/
opt.cpp 320 void initializePollyPasses(llvm::PassRegistry &Registry);
342 PassRegistry &Registry = *PassRegistry::getPassRegistry();
343 initializeCore(Registry);
344 initializeDebugIRPass(Registry);
345 initializeScalarOpts(Registry);
346 initializeObjCARCOpts(Registry);
347 initializeVectorization(Registry);
348 initializeIPO(Registry);
349 initializeAnalysis(Registry);
350 initializeIPA(Registry);
    [all...]
  /external/skia/experimental/SkiaExamples/
SkExample.h 32 // Use this public registry to tell the world about your sample.
33 typedef SkTRegistry<SkExample*(*)(SkExampleWindow*)> Registry;
73 const SkExample::Registry* fRegistry;
  /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 196 PassRegistry *Registry = PassRegistry::getPassRegistry();
197 initializeCore(*Registry);
198 initializeCodeGen(*Registry);
199 initializeLoopStrengthReducePass(*Registry);
200 initializeLowerIntrinsicsPass(*Registry);
201 initializeUnreachableBlockElimPass(*Registry);
  /external/chromium_org/net/url_request/
url_fetcher_core.cc 42 // URLFetcherCore::Registry ---------------------------------------------------
44 URLFetcherCore::Registry::Registry() {}
45 URLFetcherCore::Registry::~Registry() {}
47 void URLFetcherCore::Registry::AddURLFetcherCore(URLFetcherCore* core) {
52 void URLFetcherCore::Registry::RemoveURLFetcherCore(URLFetcherCore* core) {
57 void URLFetcherCore::Registry::CancelAll() {
65 base::LazyInstance<URLFetcherCore::Registry>
url_fetcher_core.h 144 class Registry {
146 Registry();
147 ~Registry();
161 DISALLOW_COPY_AND_ASSIGN(Registry);
179 // Deletes the request, removes it from the registry, and removes the
318 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.
23 /// A simple registry entry which provides only a name, description, and
41 /// Traits for registry entries. If using other than SimpleRegistryEntry, it
57 /// A global registry used in conjunction with static constructors to make
61 class Registry {
71 Registry() LLVM_DELETED_FUNCTION;
106 /// Iterators for registry entries.
125 /// Abstract base class for registry listeners, which are informed when new
126 /// entries are added to the registry. Simply subclass and instantiate
    [all...]
  /external/llvm/lib/CodeGen/
Passes.cpp 620 /// RegisterRegAlloc's global Registry tracks allocator registration.
621 MachinePassRegistry RegisterRegAlloc::Registry;
  /frameworks/native/opengl/tools/glgen2/registry/
reg.py 90 # BaseInfo - base class for information about a registry feature
99 """Represents the state of a registry feature, used during API generation"""
108 # TypeInfo - registry information about a type. No additional state
111 """Represents the state of a registry type"""
115 # GroupInfo - registry information about a group of related enums.
118 """Represents the state of a registry enumerant group"""
123 # EnumInfo - registry information about an enum
127 """Represents the state of a registry enum"""
134 # CmdInfo - registry information about a command
141 """Represents the state of a registry command""
    [all...]

Completed in 1350 milliseconds

1 2