Home
last modified time | relevance | path

Searched refs:rule (Results 1 – 25 of 57) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dspark.py170 def preprocess(self, rule, func): return rule, func argument
185 rule = (lhs, tuple(rhs))
188 rule, fn = self.preprocess(rule, func)
191 self.rules[lhs].append(rule)
193 self.rules[lhs] = [ rule ]
194 self.rule2func[rule] = fn
195 self.rule2name[rule] = func.__name__[2:]
206 rule = '%s ::= %s %s' % (self._START, self._BOF, start)
207 self.addRule(rule, lambda args: args[1], 0)
216 for rule in rulelist:
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DCHANGES_SUMMARY.txt32 BLOCK_PREAMBLE at the start of each rule and block.
55 Consider the following grammar with -ck 2 and the predicate in rule
71 Normally, the predicate would be hoisted into rule r1 in order to
72 determine whether to call rule "ab". However it should *not* be
74 in rule b. With "-mrhoistk on" the predicate will be suppressed.
86 depth=k=2 ("=>" guard) rule a line 8 t1.g
120 In this case, the sequence (D E) in rule "a" which lies behind
122 in rule b.
131 depth=k=2 rule b line 11 t2.g
152 depth=k=2 ("=>" guard) rule a line 8 t2.g
[all …]
DCHANGES_FROM_133_before_mr13.txt95 e. Remember rule (a)
144 If there is more than one rule which is not referenced by any
145 other rule then all such rules are listed. This is useful for
153 will cause an ambiguity report for rule "a" which will be
154 difficult to understand if the user forgets about rule "unused"
217 warning: alts 2 and 3 of the rule itself ambiguous upon
246 created for a rule (at the end of the rule). However this
248 a rule which are causing the creation of tnodes.
297 In testing for a rule's exception group the label a pointer
360 rule : <<pred(LATEXT(1))>>? A
[all …]
DCHANGES_FROM_133.txt39 If a rule is declared:
117 BLOCK_PREAMBLE at the start of each rule and block. It does
133 without the trace enabled, the current rule name may be a
340 immediately before a token, a rule reference, or action. However
341 a token or rule reference can be enclosed in a (...) in order to
367 For this rule the code resembles:
694 the start of the rule.
987 rule : ( alpha )? beta ;
995 of lookahead for alts 1 and 2 of rule t it finds an ambiguity.
1001 the things which can follow rule t in the context of (alpha)?.
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_SUMMARY.txt32 BLOCK_PREAMBLE at the start of each rule and block.
55 Consider the following grammar with -ck 2 and the predicate in rule
71 Normally, the predicate would be hoisted into rule r1 in order to
72 determine whether to call rule "ab". However it should *not* be
74 in rule b. With "-mrhoistk on" the predicate will be suppressed.
86 depth=k=2 ("=>" guard) rule a line 8 t1.g
120 In this case, the sequence (D E) in rule "a" which lies behind
122 in rule b.
131 depth=k=2 rule b line 11 t2.g
152 depth=k=2 ("=>" guard) rule a line 8 t2.g
[all …]
DCHANGES_FROM_133_BEFORE_MR13.txt95 e. Remember rule (a)
144 If there is more than one rule which is not referenced by any
145 other rule then all such rules are listed. This is useful for
153 will cause an ambiguity report for rule "a" which will be
154 difficult to understand if the user forgets about rule "unused"
217 warning: alts 2 and 3 of the rule itself ambiguous upon
246 created for a rule (at the end of the rule). However this
248 a rule which are causing the creation of tnodes.
297 In testing for a rule's exception group the label a pointer
360 rule : <<pred(LATEXT(1))>>? A
[all …]
DCHANGES_FROM_133.txt109 For a rule such as:
114 If there were extra actuals for the reference to rule r2 from rule r1
151 "!" operator on the rule. In MR27 the use of an AST expression
187 rule > [int i, IIR_Bool (IIR_Decl::*constraint)()] : ...
204 to an infinite loop in antlr when it encountered a rule with
242 for {...} block rather than in rule b. This made it difficult
396 in an alternative. For instance, in the following rule;
448 rule : <<my_predicate>>? [my_fail_action] A
494 A rule with a single return argument:
505 A rule with more than one return argument:
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dantlr.g168 * $rule --> "zzaRet"
182 * $rule --> "$rule"
393 /* MR10 */ /* it is a forward reference (to a rule) */
396 /* MR10 */ { err(eMsg1("There are no token ptrs for rule references: '$%s'",&zzbegexpr[1])); }
400 /* MR10 */ err(" Use upward inheritance (\"rule >[Attrib a] : ... <<$a=.…
624 /* rule grammar */
631 require(HdrAction!=NULL, "rule grammar: cannot allocate header action");
640 require(FirstAction!=NULL, "rule grammar: cannot allocate #first action");
707 rule <<g=$3; SynDiag = (Junction *) $3.left;>>
708 ( rule
[all …]
Dmisc.c685 Fkey( char *rule, int computation, int k ) in Fkey() argument
687 Fkey( rule, computation, k ) in Fkey()
688 char *rule; in Fkey()
698 if ( (i=strlen(rule)) > MaxRuleName ) /* MR10 */
700 strcpy(key,rule);
719 FoPush( char *rule, int k ) in FoPush() argument
721 FoPush( rule, k ) in FoPush()
722 char *rule; in FoPush()
727 require(rule!=NULL, "FoPush: tried to push NULL rule");
731 r = (RuleEntry *) hash_get(Rname, rule);
[all …]
Dtokens.h39 void rule(void);
41 extern void rule();
Dbits.c204 Efirst( char *rule, ECnode *eclass ) in Efirst() argument
206 Efirst( rule, eclass ) in Efirst()
207 char *rule; in Efirst()
213 RuleEntry *q = (RuleEntry *) hash_get(Rname, rule);
218 rule, TokenString(eclass->tok)));
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Dtokens.h68 void rule(void);
70 extern void rule();
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
Derr.h1036 void zzTraceIn(char * rule) in zzTraceIn() argument
1038 void zzTraceIn(rule) in zzTraceIn()
1039 char *rule; in zzTraceIn()
1047 zzTraceCurrentRuleName=rule;
1061 rule,
1074 void zzTraceOut(char * rule) in zzTraceOut() argument
1076 void zzTraceOut(rule) in zzTraceOut()
1077 char *rule; in zzTraceOut()
1097 rule,
DAParser.cpp703 void ANTLRParser::tracein(const ANTLRChar * rule) { in tracein() argument
708 traceCurrentRuleName=rule; in tracein()
720 rule, in tracein()
729 void ANTLRParser::traceout(const ANTLRChar * rule) { in traceout() argument
745 rule, in traceout()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
Derr.h1038 void zzTraceIn(char * rule) in zzTraceIn() argument
1040 void zzTraceIn(rule) in zzTraceIn()
1041 char *rule; in zzTraceIn()
1049 zzTraceCurrentRuleName=rule;
1063 rule,
1076 void zzTraceOut(char * rule) in zzTraceOut() argument
1078 void zzTraceOut(rule) in zzTraceOut()
1079 char *rule; in zzTraceOut()
1099 rule,
DAParser.cpp734 void ANTLRParser::tracein(const ANTLRChar * rule) { in tracein() argument
739 traceCurrentRuleName=rule; in tracein()
751 rule, in tracein()
760 void ANTLRParser::traceout(const ANTLRChar * rule) { in traceout() argument
776 rule, in traceout()
/device/huawei/angler/sepolicy/
Dnfc_hal_pn54x.te29 # TODO: added to match above sysfs rule. Remove me?
/device/lge/bullhead/sepolicy/
Dnfc_hal_pn54x.te29 # TODO: added to match above sysfs rule. Remove me?
/device/linaro/bootloader/edk2/StdLib/LibC/Time/
DTimeVals.h100 struct rule { struct
DZoneProc.c267 register struct rule * const rulep in getrule()
476 const struct rule * const rulep, in transtime()
621 struct rule start; in tzparse()
622 struct rule end; in tzparse()
DTheory.txt143 is to update obsolete time zone rule tables.
182 ----- Names of time zone rule files -----
184 The time zone rule file naming conventions attempt to strike a balance
229 Include at least one location per time zone rule set per country.
245 The POSIX file name restrictions encourage this rule.
267 time zone rule files.
291 Previous editions of this rule required upper-case letters,
293 preferred "ChST", so the rule has been relaxed.
295 This rule guarantees that all abbreviations could have
301 changes this rule to say that an abbreviation can
/device/linaro/bootloader/edk2/BaseTools/Source/C/
DMakefile72 !INCLUDE Makefiles\ms.rule
/device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/
Dms.app35 !INCLUDE ..\Makefiles\ms.rule
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/h/
DSTreeParser.h69 rule(p,t,&try_result); \
/device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckPcdLib/
DVarCheckPcdLib.inf4 # In platform *.fdf, the example build rule for the driver this library linked to.

123