Searched defs:rule (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A DTimeVals.h51 /* Rule type values for the r_type member of a rule structure */
100 struct rule { struct
101 int r_type; /* type of rule--see below */
102 int r_day; /* day number of rule */
103 int r_week; /* week number of rule */
104 int r_mon; /* month number of rule */
105 LONG32 r_time; /* transition time of rule */
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg_p.c234 rule();
241 rule();
273 rule(void) function
275 rule()
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dbits.c201 /* compute the FIRST of a rule for the error class stuff */
204 Efirst( char *rule, ECnode *eclass ) argument
206 Efirst( rule, eclass )
207 char *rule;
213 RuleEntry *q = (RuleEntry *) hash_get(Rname, rule);
217 warnNoFL(eMsg2("undefined rule '%s' referenced in errclass '%s'; ignored",
218 rule, TokenString(eclass->tok)));
222 r->end->halt = TRUE; /* don't let reach fall off end of rule here */
260 if ( islower( *((char *)e->elem) ) ) /* is it a rule ref? (alias FIRST request) */
H A Dmisc.c681 /* MR10 'o' and 'i' from rule name */
685 Fkey( char *rule, int computation, int k ) argument
687 Fkey( rule, computation, k )
688 char *rule;
698 if ( (i=strlen(rule)) > MaxRuleName ) /* MR10 */
699 fatal( eMsgd("rule name > max of %d\n", MaxRuleName) ); /* MR10 */
700 strcpy(key,rule);
716 /* Push a rule onto the kth FOLLOW stack */
719 FoPush( char *rule, int k ) argument
721 FoPush( rule,
805 RegisterCycle( char *rule, int k ) argument
[all...]
H A Dantlr.c87 require(HdrAction!=NULL, "rule grammar: cannot allocate header action");
101 require(FirstAction!=NULL, "rule grammar: cannot allocate #first action");
247 rule();
256 rule();
458 /* MR22 */ require(BaseClassName!=NULL, "rule grammar: cannot allocate base class name");
488 rule(void) function
490 rule()
506 /* We want a new element label hash table for each rule */
513 err(eMsg1("duplicate rule definition: '%s'",LATEXT(1)));
569 require(pdecl!=NULL, "rule rul
[all...]
/vbox/src/VBox/Main/src-client/
H A DBusAssignmentManager.cpp128 /* to make sure rule never used before rules assigning devices on it */
370 AssertMsg(matchingRules.size() > 0, ("No rule for %s(%s)\n", pszName, pszAlias));
376 const DeviceAssignmentRule* rule = matchingRules[iRule]; local
378 Address.miBus = rule->iBus;
379 Address.miDevice = rule->iDevice;
380 Address.miFn = rule->iFn;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DAParser.cpp194 "trace enable restored in rule %s depth %d\n",
200 "trace disable restored in rule %s depth %d\n",
698 /* MR23 */ printMessage(stderr,"guess done - returning to rule %s {\"%s\"} at depth %d",
734 void ANTLRParser::tracein(const ANTLRChar * rule) { argument
739 traceCurrentRuleName=rule;
750 /* MR23 */ printMessage(stderr,"enter rule %s {\"%s\"} depth %d",
751 rule,
760 void ANTLRParser::traceout(const ANTLRChar * rule) { argument
775 /* MR23 */ printMessage(stderr,"exit rule %s {\"%s\"} depth %d",
776 rule,
[all...]
H A Derr.h248 fprintf(stderr,"guess done - returning to rule %s {\"%s\"} at depth %d",
375 fprintf(stderr,"trace enable restored in rule %s depth %d\n",
379 fprintf(stderr,"trace disable restored in rule %s depth %d\n",
1038 void zzTraceIn(char * rule) argument
1040 void zzTraceIn(rule)
1041 char *rule;
1049 zzTraceCurrentRuleName=rule;
1062 fprintf(stderr,"enter rule %s {\"%s\"} depth %d",
1063 rule,
1076 void zzTraceOut(char * rule) argument
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dslirp.c395 Log(("NAT: LibAlias default rule wasn't initialized\n"));
396 AssertMsgFailed(("NAT: LibAlias default rule wasn't initialized\n"));
492 struct port_forward_rule *rule; local
517 LIST_FOREACH(rule, &pData->port_forward_rule_head, list)
519 rule->activated = 0;
1528 struct port_forward_rule *rule, *tmp;
1532 LIST_FOREACH_SAFE(rule, &pData->port_forward_rule_head, list, tmp)
1541 if (rule->activated)
1551 if ( rule->guest_addr.s_addr != guest_addr
1552 && rule
[all...]
/vbox/src/libs/libxml2-2.6.31/
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 */
290 * @rule: the parent rule
302 xmlSchematronRulePtr rule,
308 if ((ctxt == NULL) || (rule == NULL) || (node == NULL) ||
336 if (rule->tests == NULL) {
337 rule
300 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
842 xmlSchematronParseRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPatternPtr pattern, xmlNodePtr rule) argument
1620 xmlSchematronRulePtr rule; local
[all...]
H A Drelaxng.c269 xmlRelaxNGDefinePtr rule; /* the rule to satisfy */ member in struct:_xmlRelaxNGInterleaveGroup
4180 * Detects violations of rule 7.3
4322 groups[nbgroups]->rule = cur;
5561 * Applies the 4.17. combine attribute rule for all the define
5611 * Applies the 4.17. combine attribute rule for all the define
5730 * Applies the 4.17. combine rule for all the start
6172 * The 7.3 Attribute derivation rule for groups is plugged there
6319 * The 7.3 Attribute derivation rule for groups is plugged there
7201 * implements rule 4.1
[all...]
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_db.c2752 struct ip_fw *rule = (struct ip_fw *)buf; local
2753 ipfw_insn *cmd = (ipfw_insn *) rule->cmd;
2756 rule->rulenum = rulenum;
2764 rule->act_ofs = (u_int32_t *) cmd - (u_int32_t *) rule->cmd;
2767 rule->cmd_len = (u_int32_t *) cmd - (u_int32_t *) rule->cmd;
2824 struct ip_fw rule; /* On-the-fly built rule */ local
2836 memset(&rule,
2906 struct ip_fw rule; local
2923 struct ip_fw rule; /* On-the-fly built rule */ local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/
H A Dnxhal_nic_interface.h236 nx_rx_rule_t rule; member in struct:nx_hostmsg_rx_rule_s
242 nx_rx_rule_t rule; member in struct:nx_cardmsg_rx_rule_s
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A DPrintstr.h509 CARD8 rule; /* replacement rule */ member in struct:_PrintSetAttributes
/vbox/src/VBox/Main/xml/
H A DSettings.cpp40 * the default value will have been set by the constructor. The rule is to be tolerant
863 * This is common version for reading NAT port forward rule in per-_machine's_adapter_ and
874 NATRule rule; local
876 (*pf)->getAttributeValue("name", rule.strName);
877 (*pf)->getAttributeValue("proto", (uint32_t&)rule.proto);
878 (*pf)->getAttributeValue("hostip", rule.strHostIP);
880 rule.u16HostPort = port;
881 (*pf)->getAttributeValue("guestip", rule.strGuestIP);
883 rule.u16GuestPort = port;
884 llRules.push_back(rule);
[all...]

Completed in 126 milliseconds