Searched refs:registry (Results 1 - 25 of 73) sorted by relevance

123

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DIdTargetObserver.cpp33 IdTargetObserver::IdTargetObserver(IdTargetObserverRegistry& registry, const AtomicString& id) argument
34 : m_registry(&registry)
H A DMutationObserverRegistration.cpp101 void MutationObserverRegistration::unregisterAndDelete(MutationObserverRegistration* registry) argument
103 RefPtr<Node> registrationNode(registry->m_registrationNode);
104 registrationNode->unregisterMutationObserver(registry);
105 // The above line will cause registry to be deleted, so don't do any more in this function.
/macosx-10.9.5/BerkeleyDB-21/db/env/
H A Denv_register.c22 __os_fdlock(env, (env)->dbenv->registry, (off_t)(pos), 1, nowait)
24 __os_fdlock(env, (env)->dbenv->registry, (off_t)(pos), 0, 0)
36 * The registry feature is configured by specifying the DB_REGISTER flag to the
37 * DbEnv.open method. If DB_REGISTER is specified, DB opens the registry file
38 * in the database environment home directory. The registry file is formatted
73 * Whenever a process opens a new DbEnv handle, it walks the registry file and
78 * It's possible to get corruption in the registry file. If a write system
80 * the registry file, or a partial entry at the end of the file. This is OK.
81 * A corrupted entry will be flagged as a non-empty line during the registry
94 * already exists in Berkeley DB, too, the registry cod
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dregistry.m2 * registry.m -- Storing and finding exception data.
20 PyObject* registry,
30 sublist = PyDict_GetItem(registry, selector);
33 PyDict_SetItem(registry, selector, sublist);
46 PyObjC_FindInRegistry(PyObject* registry, Class cls, SEL selector)
55 if (registry == NULL) {
58 sublist = PyDict_GetItemString(registry, (char*)sel_getName(selector));
73 "Exception registry element isn't a tuple");
H A Dsuper-call.m4 * This file defines a registry that is used to find the right function to
18 struct registry
24 /* Dict mapping from signature-string to a 'struct registry' */
27 /* List of 3-tuples: (Class, "selector", 'struct registry' */
58 struct registry* v;
119 struct registry* v;
168 static struct registry*
239 struct registry* special;
253 static struct registry*
257 struct registry*
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Dinit.c59 Trf_Registry* registry;
78 registry = TrfGetRegistry (interp);
80 if (!registry) {
96 registry->patchVariant = PATCH_832;
102 registry->patchVariant = PATCH_832;
105 registry->patchVariant = PATCH_82;
108 registry->patchVariant = PATCH_ORIG;
341 Trf_Registry* registry;
343 registry = TrfPeekForRegistry (interp);
345 return registry !
58 Trf_Registry* registry; local
338 Trf_Registry* registry; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediasource/
H A DMediaSourceRegistry.h48 static MediaSourceRegistry& registry();
H A DMediaSourceRegistry.cpp42 MediaSourceRegistry& MediaSourceRegistry::registry() function in class:WebCore::MediaSourceRegistry
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dregistry.m2 * registry.m -- Storing and finding exception data.
20 PyObject* registry,
30 sublist = PyDict_GetItem(registry, selector);
33 PyDict_SetItem(registry, selector, sublist);
46 PyObjC_FindInRegistry(PyObject* registry, Class cls, SEL selector)
55 if (registry == NULL) {
60 sublist = PyDict_GetItem(registry, k);
77 "Exception registry element isn't a tuple");
98 PyErr_SetString(PyExc_TypeError, "Exception registry class name is not a string");
H A Dsuper-call.m4 * This file defines a registry that is used to find the right function to
18 struct registry
24 /* Dict mapping from signature-string to a 'struct registry' */
27 /* List of 3-tuples: (Class, "selector", 'struct registry' */
71 struct registry* v;
132 struct registry* v;
188 static struct registry*
265 struct registry* special;
279 static struct registry*
283 struct registry*
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DMediaStreamRegistry.cpp36 MediaStreamRegistry& MediaStreamRegistry::registry() function in class:WebCore::MediaStreamRegistry
H A DMediaStreamRegistry.h43 static MediaStreamRegistry& registry();
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DDOMURL.cpp71 MediaSourceRegistry::registry().registerMediaSourceURL(publicURL, source);
91 MediaStreamRegistry::registry().registerMediaStreamURL(publicURL, stream);
134 MediaSourceRegistry::registry().unregisterMediaSourceURL(url);
144 MediaStreamRegistry::registry().unregisterMediaStreamURL(url);
H A DPublicURLManager.h62 MediaStreamRegistry::registry().unregisterMediaStreamURL(KURL(ParsedURLString, *iter));
67 MediaSourceRegistry::registry().unregisterMediaSourceURL(KURL(ParsedURLString, *iter));
/macosx-10.9.5/sudo-72/src/
H A Daix.c143 char *registry; local
148 if (getuserattr(user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
149 if (setauthdb(registry, NULL) != 0)
150 error(1, "unable to switch to registry \"%s\" for %s",
151 registry, user);
164 error(1, "unable to restore registry");
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtranslit.cpp90 * The mutex controlling access to registry object.
95 * System transliterator registry; non-null when initialized.
97 static icu::TransliteratorRegistry* registry = 0; variable
99 // Macro to check/initialize the registry. ONLY USE WITHIN
100 // MUTEX. Avoids function call when registry is initialized.
101 #define HAVE_REGISTRY(status) (registry!=0 || initializeRegistry(status))
981 t = registry->get(id, alias, ec);
995 // registry mutex. The alias may, in turn, generate another alias, so
1013 t = registry->reget(id, parser, alias, ec);
1226 registry
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/RubyRocks/English.lproj/Game.nib/
H A D_Game_EOArchive_English.java20 public _Game_EOArchive_English(Object owner, NSDisposableRegistry registry) { argument
21 super(owner, registry);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DUISourceCode.js309 var registry = WebInspector.Revision._revisionHistoryRegistry(); variable
310 var historyItems = registry[this.url];
329 var registry = WebInspector.Revision._revisionHistoryRegistry(); variable
330 var historyItems = registry[this.url];
333 delete registry[this.url];
334 window.localStorage["revision-history"] = JSON.stringify(registry);
836 var registry = WebInspector.Revision._revisionHistoryRegistry();
838 for (var url in registry) {
839 var historyItems = registry[url];
944 var registry variable
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dport-aix.c327 * If we have setauthdb, retrieve the password registry for the user's
336 char *registry; local
343 if (getuserattr((char *)user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
344 if (setauthdb(registry, old_registry) == 0)
345 debug3("AIX/setauthdb set registry '%s'", registry);
347 debug3("AIX/setauthdb set registry '%s' failed: %s",
348 registry, strerror(errno));
357 * Restore the user's registry settings from old_registry.
367 debug3("%s: restoring old registry '
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/apps/actiweb/
H A DAgentClient.xotcl138 my invoke $host ${placeName}::registry register $rdfText
140 set r [my invoke $host ${placeName}::registry query registryTest]
142 set r [my invoke $host ${placeName}::registry queryProperty http://nestroy.wi-inf.uni-essen.de/schema/agent\#place ::p]
/macosx-10.9.5/ruby-104/ruby/lib/uri/
H A Dgeneric.rb45 :userinfo, :host, :port, :registry,
59 # Default to not use the registry for a URI::Generic
64 # Returns whether a registry of naming
117 # with check. Components are: scheme, userinfo, host, port, registry, path,
154 # +registry+::
174 userinfo, host, port, registry,
188 @registry = nil
200 self.registry = registry
210 self.set_registry(registry)
[all...]
H A Dcommon.rb127 registry, path, query, fragment = $~[1..-1]
145 if !opaque && (!path && (!host && !registry))
154 userinfo, host, port, registry,
183 registry, # X
211 registry, path, opaque, query, fragment = self.split(uri)
215 registry, path, opaque, query,
219 registry, path, opaque, query,
467 (#{reg_name}) (?# 6: registry)
485 (#{reg_name}) (?# 4: registry)
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw32bdf.h103 unsigned char *registry; member in struct:__anon8769
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dregistry.vim4 " URL: http://www.mggen.com/vim/syntax/registry.zip
31 " Some values often found in the registry
112 let b:current_syntax = "registry"
/macosx-10.9.5/WebKit2-7537.78.2/NetworkProcess/FileAPI/
H A DNetworkBlobRegistry.cpp42 DEFINE_STATIC_LOCAL(NetworkBlobRegistry, registry, ());
43 return registry;

Completed in 242 milliseconds

123