Searched refs:scope (Results 1 - 25 of 440) sorted by relevance

1234567891011>>

/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Ddebugging_internal.h29 void secdebug_internal(const char* scope, const char* format, ...);
31 #define secdebug(scope, format...) secdebug_internal(scope, format)
32 #define secdebugf(scope, __msg) SECURITY_DEBUG_LOG((char *)(scope), (__msg))
H A Ddebugging.h47 bool dumping(const char *scope);
91 # define IFDUMPING(scope,code) if (Debug::dumping(scope)) code; else /* no */
94 # define IFDUMPING(scope,code) /* no-op */
102 inline bool debugging(const char *scope) DEPRECATED_ATTRIBUTE;
103 inline void debug(const char *scope, const char *format, ...) DEPRECATED_ATTRIBUTE;
104 inline void vdebug(const char *scope, const char *format, va_list args) DEPRECATED_ATTRIBUTE;
106 inline bool debugging(const char *scope) { return false; } argument
107 inline void debug(const char *scope, const char *format, ...) { } argument
108 inline void vdebug(const char *scope, cons argument
[all...]
H A Ddebugging.cpp51 bool dumping(const char *scope) argument
56 return Target::get().dump(scope);
163 static void addScope(char *&bufp, const char *scope) argument
165 if (const char *sep = strchr(scope, ',')) {
166 bufp += sprintf(bufp, "%-*s", Name::maxLength, (const char *)Name(scope, sep));
167 } else { // single scope
168 bufp += sprintf(bufp, "%-*s", Name::maxLength, scope);
176 void Target::message(const char *scope, const char *format, va_list args) argument
178 if (logSelector(scope)) {
191 // leading scope
238 debugging(const char *scope) argument
257 dump(const char *scope) argument
269 operator =(const char *scope) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Ddebugging_internal.h29 void secdebug_internal(const char* scope, const char* format, ...);
31 #define secdebug(scope, format...) secdebug_internal(scope, format)
32 #define secdebugf(scope, __msg) SECURITY_DEBUG_LOG((char *)(scope), (__msg))
H A Ddebugging.h47 bool dumping(const char *scope);
91 # define IFDUMPING(scope,code) if (Debug::dumping(scope)) code; else /* no */
94 # define IFDUMPING(scope,code) /* no-op */
102 inline bool debugging(const char *scope) DEPRECATED_ATTRIBUTE;
103 inline void debug(const char *scope, const char *format, ...) DEPRECATED_ATTRIBUTE;
104 inline void vdebug(const char *scope, const char *format, va_list args) DEPRECATED_ATTRIBUTE;
106 inline bool debugging(const char *scope) { return false; } argument
107 inline void debug(const char *scope, const char *format, ...) { } argument
108 inline void vdebug(const char *scope, cons argument
[all...]
H A Ddebugging.cpp51 bool dumping(const char *scope) argument
56 return Target::get().dump(scope);
163 static void addScope(char *&bufp, const char *scope) argument
165 if (const char *sep = strchr(scope, ',')) {
166 bufp += sprintf(bufp, "%-*s", Name::maxLength, (const char *)Name(scope, sep));
167 } else { // single scope
168 bufp += sprintf(bufp, "%-*s", Name::maxLength, scope);
176 void Target::message(const char *scope, const char *format, va_list args) argument
178 if (logSelector(scope)) {
191 // leading scope
238 debugging(const char *scope) argument
257 dump(const char *scope) argument
269 operator =(const char *scope) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Dname_space.rb3 # The NameSpace class will lookup task names in the the scope
12 @scope = scope_list.dup
17 @task_manager.lookup(name, @scope)
22 @task_manager.tasks_in_scope(@scope)
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dmake_exports.awk65 scope++
66 scope_type[scope] = type
67 scope_stack[scope] = stackptr
68 delete scope_used[scope]
72 used = scope_used[scope]
75 stackptr = scope_stack[scope]
77 scope--
79 scope_used[scope] = 1
81 if (!scope)
89 scope_used[scope]
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A Dmake_exports.awk51 scope++
52 scope_type[scope] = type
53 scope_stack[scope] = stackptr
54 delete scope_used[scope]
58 used = scope_used[scope]
61 stackptr = scope_stack[scope]
63 scope--
65 scope_used[scope] = 1
67 if (!scope)
75 scope_used[scope]
[all...]
/macosx-10.9.5/apr-30/apr/apr/build/
H A Dmake_exports.awk51 scope++
52 scope_type[scope] = type
53 scope_stack[scope] = stackptr
54 delete scope_used[scope]
58 used = scope_used[scope]
61 stackptr = scope_stack[scope]
63 scope--
65 scope_used[scope] = 1
67 if (!scope)
75 scope_used[scope]
[all...]
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/
H A Dgetiopolicy_np.c29 getiopolicy_np(int iotype, int scope) argument
35 (scope != IOPOL_SCOPE_PROCESS && scope != IOPOL_SCOPE_THREAD)) {
41 iop_param.iop_scope = scope;
57 setiopolicy_np(int iotype, int scope, int policy) argument
62 iop_param.iop_scope = scope;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleScopeResolver.cpp77 inline RuleSet* StyleScopeResolver::ruleSetFor(const ContainerNode* scope) const
79 if (!scope->hasScopedHTMLStyleChild())
81 ScopedRuleSetMap::const_iterator it = m_authorStyles.find(scope);
85 RuleSet* StyleScopeResolver::ensureRuleSetFor(const ContainerNode* scope) argument
87 ScopedRuleSetMap::AddResult addResult = m_authorStyles.add(scope, nullptr);
100 for (const ContainerNode* scope = parent; scope; scope = scope->parentOrShadowHostNode()) {
101 RuleSet* ruleSet = ruleSetFor(scope);
113 push(const ContainerNode* scope, const ContainerNode* scopeParent) argument
138 pop(const ContainerNode* scope) argument
175 addHostRule(StyleRuleHost* hostRule, bool hasDocumentSecurityOrigin, const ContainerNode* scope) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dscope.test2 # Tests for code/scope commands
9 # RCS: $Id: scope.test,v 1.4 2004/02/12 18:09:50 davygrvy Exp $
24 # Syntax of the "scope" command
26 test scope-1.1 {scope command takes one argument} {
27 list [catch {itcl::scope} msg] $msg [catch {itcl::scope x y} msg] $msg
28 } {1 {wrong # args: should be "itcl::scope varname"} 1 {wrong # args: should be "itcl::scope varname"}}
30 test scope
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_ocspd/
H A DocspdDebug.h40 #define ocsp_secdebug(scope, format...) \
43 secdebug(scope, format); \
46 #define ocsp_secdebug(scope, format...) \
47 secdebug(scope, format)
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A Dtpdebugging.h40 #define tp_secdebug(scope, format...) \
43 secdebug(scope, format); \
46 #define tp_secdebug(scope, format...) \
47 secdebug(scope, format)
/macosx-10.9.5/Security-55471.14.18/libsecurity_ocspd/common/
H A DocspdDebug.h40 #define ocsp_secdebug(scope, format...) \
43 secdebug(scope, format); \
46 #define ocsp_secdebug(scope, format...) \
47 secdebug(scope, format)
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DEvalCodeCache.h46 EvalExecutable* tryGet(bool inStrictContext, const String& evalSource, JSScope* scope) argument
48 if (!inStrictContext && evalSource.length() < maxCacheableSourceLength && scope->begin()->isVariableObject())
53 EvalExecutable* getSlow(ExecState* exec, CodeCache* codeCache, ScriptExecutable* owner, bool inStrictContext, const String& evalSource, JSScope* scope, JSValue& exceptionValue) argument
56 exceptionValue = evalExecutable->compile(exec, scope);
60 if (!inStrictContext && evalSource.length() < maxCacheableSourceLength && scope->begin()->isVariableObject() && m_cacheMap.size() < maxCacheEntries)
66 EvalExecutable* get(ExecState* exec, CodeCache* codeCache, ScriptExecutable* owner, bool inStrictContext, const String& evalSource, JSScope* scope, JSValue& exceptionValue) argument
68 EvalExecutable* evalExecutable = tryGet(inStrictContext, evalSource, scope);
71 evalExecutable = getSlow(exec, codeCache, owner, inStrictContext, evalSource, scope, exceptionValue);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLElementCustom.cpp41 JSScope* JSHTMLElement::pushEventHandlerScope(ExecState* exec, JSScope* scope) const
46 scope = JSWithScope::create(exec, asObject(toJS(exec, globalObject(), element->ownerDocument())), scope);
50 scope = JSWithScope::create(exec, asObject(toJS(exec, globalObject(), form)), scope);
53 return JSWithScope::create(exec, asObject(toJS(exec, globalObject(), element)), scope);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocumentOrderedMap.cpp127 inline Element* DocumentOrderedMap::get(AtomicStringImpl* key, const TreeScope* scope) const
130 ASSERT(scope);
142 ASSERT_WITH_SECURITY_IMPLICATION(entry.element->treeScope() == scope);
147 for (Element* element = ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(element)) {
152 ASSERT_WITH_SECURITY_IMPLICATION(element->treeScope() == scope);
159 Element* DocumentOrderedMap::getElementById(AtomicStringImpl* key, const TreeScope* scope) const
161 return get<keyMatchesId>(key, scope);
164 Element* DocumentOrderedMap::getElementByName(AtomicStringImpl* key, const TreeScope* scope) const
166 return get<keyMatchesName>(key, scope);
169 Element* DocumentOrderedMap::getElementByMapName(AtomicStringImpl* key, const TreeScope* scope) cons
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Ddebugging.h37 #define secnotice(scope, format, ...) printf((format), ## __VA_ARGS__)
38 #define secinfo(scope, format, ...) printf((format), ## __VA_ARGS__)
40 #define secdebug(scope, format, ...) printf((format), ## __VA_ARGS__)
42 #define secdebug(scope, format, ...) /* nothing */
55 extern void __security_debug(CFStringRef scope,
59 extern void __security_log(const char *level, CFStringRef scope,
87 #define secnotice(scope, format, ...) __security_log(ASL_STRING_NOTICE, CFSTR(scope), \
91 #define secinfo(scope, format, ...) __security_log(ASL_STRING_INFO, CFSTR(scope), \
104 typedef void (^security_log_handler)(const char *level, CFStringRef scope, const char *function, variable
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Ddebugging.h37 #define secnotice(scope, format, ...) printf((format), ## __VA_ARGS__)
38 #define secinfo(scope, format, ...) printf((format), ## __VA_ARGS__)
40 #define secdebug(scope, format, ...) printf((format), ## __VA_ARGS__)
42 #define secdebug(scope, format, ...) /* nothing */
55 extern void __security_debug(CFStringRef scope,
59 extern void __security_log(const char *level, CFStringRef scope,
87 #define secnotice(scope, format, ...) __security_log(ASL_STRING_NOTICE, CFSTR(scope), \
91 #define secinfo(scope, format, ...) __security_log(ASL_STRING_INFO, CFSTR(scope), \
104 typedef void (^security_log_handler)(const char *level, CFStringRef scope, const char *function, variable
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/uri/
H A Dldap.rb20 # ldap://<host>/<dn>[?<attrs>[?<scope>[?<filter>[?<extensions>]]]]
33 :scope,
57 # scope, filter, and extensions.
63 # [host, port, dn, attributes, scope, filter, extensions].
81 [:extensions, :filter, :scope, :attributes].collect do |x|
125 # private method to cleanup +attributes+, +scope+, +filter+ and +extensions+,
129 @scope = nil
134 attrs, scope, filter, extensions = @query.split('?')
137 @scope = scope i
196 def scope method in class:URI.LDAP
[all...]
/macosx-10.9.5/libxslt-13/libxslt/doc/
H A Dsearch.php.inc3 $scope = $HTTP_GET_VARS[ "scope" ];
10 if ($scope == NULL)
11 $scope = "any";
12 $scope = ltrim ($scope);
13 if ($scope == "")
14 $scope = "any";
22 <select name="scope">
24 <option value="XML" <?php if ($scope
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLStyleElement.cpp130 ContainerNode* scope = scoped ? parentNode() : containingShadowRoot();
131 if (!scope)
133 if (!scope->isElementNode() && !scope->isShadowRoot()) {
139 scope->registerScopedHTMLStyleChild();
140 if (scope->isShadowRoot())
141 scope->shadowHost()->setNeedsStyleRecalc();
143 scope->setNeedsStyleRecalc();
150 void HTMLStyleElement::unregisterWithScopingNode(ContainerNode* scope) argument
156 ASSERT(scope);
189 ContainerNode* scope; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/hash/
H A Dhashview.c33 * push/pop/query hash table scope
35 * bot==0 pop top scope
39 * scope table pointer returned
53 bot = top->scope;
56 if (top->scope)
69 top->scope = bot;
73 else if (bot = top->scope)
84 top->scope = 0;

Completed in 405 milliseconds

1234567891011>>