Searched refs:rule (Results 176 - 200 of 433) sorted by relevance

1234567891011>>

/macosx-10.10/xnu-2782.1.97/pexpert/pexpert/
H A DMakefile3 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
/macosx-10.10/xnu-2782.1.97/security/
H A DMakefile3 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dserver.c8 #include "rule.h"
732 rule_t rule = NULL; local
737 rule = rule_create_with_string(xpc_dictionary_get_string(message, AUTH_XPC_RIGHT_NAME), dbconn);
738 require(rule != NULL, done);
739 require(rule_get_id(rule) != 0, done);
741 cfdict = rule_copy_to_cfobject(rule, dbconn);
756 CFReleaseSafe(rule);
761 static bool _prompt_for_modifications(process_t proc, rule_t rule) argument
764 // SecRequirementRef ruleReq = rule_get_requirment(rule);
798 rule_t rule local
951 rule_t rule = NULL; local
1064 rule_t rule = NULL; local
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSRuleList.h75 // The rule owns the live list.
79 LiveCSSRuleList(Rule* rule) : m_rule(rule) { } argument
H A DInspectorCSSOMWrappers.cpp108 CSSStyleRule* InspectorCSSOMWrappers::getWrapperForRuleInSheets(StyleRule* rule, DocumentStyleSheetCollection& styleSheetCollection) argument
122 return m_styleRuleToCSSOMWrapperMap.get(rule);
H A DElementRuleCollector.cpp89 inline void ElementRuleCollector::addMatchedRule(const RuleData* rule) argument
93 m_matchedRules->append(rule);
204 m_matchedRuleList.append(matchedRules[i]->rule());
212 m_result.addMatchedProperties(matchedRules[i]->rule()->properties(), matchedRules[i]->rule(), matchedRules[i]->linkMatchType(), matchedRules[i]->propertyWhitelistType(MatchingUARulesScope::isMatchingUARules()));
275 // We know a sufficiently simple single part selector matches simply because we found it from the rule hash when filtering the RuleSet.
278 ASSERT_WITH_MESSAGE(m_pseudoStyleRequest.pseudoId == NOPSEUDO, "If we match based on the rule hash while collecting for a particular pseudo element ID, we would add incorrect rules for that pseudo element ID. We should never end in ruleMatches() with a pseudo element if the ruleData cannot match any pseudo element.");
341 StyleRule* rule = ruleData.rule(); local
343 // If the rule ha
[all...]
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorStyleSheet.cpp127 // containing only style rules, even though CSSParser now provides the full rule source data tree.
212 static PassRefPtr<CSSRuleList> asCSSRuleList(CSSRule* rule) argument
214 if (!rule)
217 if (rule->type() == CSSRule::MEDIA_RULE)
218 return static_cast<CSSMediaRule*>(rule)->cssRules();
220 if (rule->type() == CSSRule::WEBKIT_KEYFRAMES_RULE)
221 return static_cast<WebKitCSSKeyframesRule*>(rule)->cssRules();
224 if (rule->type() == CSSRule::SUPPORTS_RULE)
225 return static_cast<CSSSupportsRule*>(rule)->cssRules();
231 static void fillMediaListChain(CSSRule* rule, Arra argument
819 CSSStyleRule* rule = ruleForId(id); local
886 CSSRule* rule = m_pageStyleSheet->item(lastRuleIndex); local
1011 buildObjectForSelectorList(CSSStyleRule* rule) argument
1038 buildObjectForRule(CSSStyleRule* rule) argument
1158 CSSStyleRule* rule = ruleForId(id); local
1417 CSSRule* rule = ruleList->item(i); local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dalign.el89 ;; '((my-rule
145 Each alignment rule can optionally override both this variable. See
158 Since each alignment rule can possibly have its own set of alignment
263 occurs is considered a section for that alignment rule.
264 Note that each rule will may have any entirely different
275 `largest' When contiguous rule sets overlap, the largest section
277 rule touched by that section.
304 function should return non-nil if it wants each rule to
329 :tag "Alignment rule"
339 (const :tag "(Repeat this rule throughou
[all...]
/macosx-10.10/libxml2-26/libxml2/
H A Dschematron.c97 * A Schematrons rule
102 xmlSchematronRulePtr next; /* the next rule in the list */
103 xmlSchematronRulePtr patnext;/* the next rule in the pattern list */
105 xmlChar *context; /* the context evaluation rule */
295 * @rule: the parent rule
307 xmlSchematronRulePtr rule,
313 if ((ctxt == NULL) || (rule == NULL) || (node == NULL) ||
341 if (rule->tests == NULL) {
342 rule
305 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
847 xmlSchematronParseRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPatternPtr pattern, xmlNodePtr rule) argument
1668 xmlSchematronRulePtr rule; local
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dschematron.c97 * A Schematrons rule
102 xmlSchematronRulePtr next; /* the next rule in the list */
103 xmlSchematronRulePtr patnext;/* the next rule in the pattern list */
105 xmlChar *context; /* the context evaluation rule */
295 * @rule: the parent rule
307 xmlSchematronRulePtr rule,
313 if ((ctxt == NULL) || (rule == NULL) || (node == NULL) ||
341 if (rule->tests == NULL) {
342 rule
305 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
847 xmlSchematronParseRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPatternPtr pattern, xmlNodePtr rule) argument
1668 xmlSchematronRulePtr rule; local
[all...]
/macosx-10.10/WebCore-7600.1.25/page/
H A DPageSerializer.cpp259 CSSRule* rule = styleSheet->item(i); local
260 String itemText = rule->cssText();
268 if (rule->type() == CSSRule::IMPORT_RULE) {
269 CSSImportRule* importRule = static_cast<CSSImportRule*>(rule);
274 } else if (rule->type() == CSSRule::FONT_FACE_RULE) {
275 // FIXME: Add support for font face rule. It is not clear to me at this point if the actual otf/eot file can
277 } else if (rule->type() == CSSRule::STYLE_RULE)
278 retrieveResourcesForRule(static_cast<CSSStyleRule*>(rule)->styleRule(), document);
314 void PageSerializer::retrieveResourcesForRule(StyleRule* rule, Document* document) argument
316 retrieveResourcesForProperties(&rule
[all...]
/macosx-10.10/network_cmds-457/alias/
H A Dalias_db.c2941 struct ip_fw rule; /* On-the-fly built rule */ local
2950 memset(&rule, 0, sizeof rule);
2952 /** Build rule **/
2967 /* No rule point empty - we can't punch more holes. */
2979 rule.fw_number = fwhole;
2980 IP_FW_SETNSRCP(&rule, 1); /* Number of source ports. */
2981 IP_FW_SETNDSTP(&rule, 1); /* Number of destination ports. */
2982 rule
3024 struct ip_fw rule; local
3041 struct ip_fw rule; /* On-the-fly built rule */ local
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dstrmatch.cpp244 UnicodeString& StringMatcher::toReplacerPattern(UnicodeString& rule, argument
247 rule.truncate(0);
248 rule.append((UChar)0x0024 /*$*/);
249 ICU_Utility::appendNumber(rule, segmentNumber, 10, 1);
250 return rule;
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DDOMCSS.idl113 HRESULT parentRule([out, retval] IDOMCSSRule** rule);
219 HRESULT ownerRule([out, retval] IDOMCSSRule** rule);
227 - (unsigned)insertRule:(NSString *)rule :(unsigned)index;
229 HRESULT insertRule([in] BSTR rule, [in] UINT index, [out, retval] UINT* result);
/macosx-10.10/network_cmds-457/ipfw.tproj/
H A Dipfw2.c96 show_sets, /* display rule sets */
889 * show_ipfw() prints the body of an ipfw rule.
890 * Because the standard rule has at least proto src_ip dst_ip, we use
896 * + if the rule does not contain IP addresses/ports, do not print them;
897 * + if the rule does not contain an IP proto, print "all" instead of "ip";
937 show_ipfw(struct ip_fw *rule, int pcwidth, int bcwidth) argument
949 bcopy(&rule->next_rule, &set_disable, sizeof(set_disable));
951 if (set_disable & (1 << rule->set)) { /* disabled */
957 printf("%05u ", rule->rulenum);
960 printf("%*llu %*llu ", pcwidth, align_uint64(&rule
1636 struct ip_fw rule; local
1653 struct ip_fw rule; local
1678 struct ip_fw rule; local
2176 struct ip_fw rule; local
2802 struct ip_fw *rule; local
3588 struct ip_fw rule; local
3634 struct ip_fw rule; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dantlrplugin.cpp64 const Result *parse(Source source, Result *(Parser::RequirementParser::*rule)(), std::string &errors)
70 const Result *result = (parser.*rule)();
H A Ddirscanner.h80 void addRule(Rule *rule) { mRules.push_back(rule); } argument
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dantlrplugin.cpp64 const Result *parse(Source source, Result *(Parser::RequirementParser::*rule)(), std::string &errors)
70 const Result *result = (parser.*rule)();
H A Ddirscanner.h80 void addRule(Rule *rule) { mRules.push_back(rule); } argument
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DPathWinCE.cpp56 bool Path::contains(const FloatPoint& point, WindRule rule) const
58 return m_path->contains(point, rule);
/macosx-10.10/ruby-106/ruby/
H A Doptinsn.inc18 /* optimize rule */
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dgen_peg_cpkg.tcl48 foreach {sym mode rule l} $e break
49 cpkg::Rule $chan $sym $mode $rule [expr {$max - $l}]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Dquotavfs.tcl38 -<quantity> <rule> -[quota|ruletotal] <quota number>
51 <rule>
52 The rule is the criterion a file must meet to have the quota applied to it. It may take the form of a
54 patterns, the quota is applied. The rule may be Tcl code, to which the quantity value will be
62 the quota group's rule. It will not allow more than the number of files specified in <quota number> to
71 Like -total, but a rule is defined, and only files satisfying the rule have their values added to the quota sum.
88 Use a rule to allow only 1 MB of files greater than 10kB in size:
268 # Default rule for quotas with pattern specified:
289 set items [lsort -unique [string map {",type " " " ",rule " " " ",quot
[all...]
/macosx-10.10/xnu-2782.1.97/libsa/conf/
H A DMakefile.template10 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
/macosx-10.10/xnu-2782.1.97/pexpert/conf/
H A DMakefile.template10 export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule

Completed in 200 milliseconds

1234567891011>>