HomeSort by relevance Sort by last modified time
    Searched full:rule (Results 276 - 300 of 4107) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/i18n/
rbt_set.h 37 * rule set is getting built. After that, freeze() reorders and
38 * indexes the rules into rules[]. Any given rule is stored once
67 * Construct a new empty rule set.
83 * Change the data object that this rule belongs to. Used
96 * Add a rule to this set. Rules are added in order, and order is
98 * a call to <code>freeze()</code> before the rule set is used.
102 * @param adoptedRule the rule to add
111 * <code>freeze()</code>; (3) use the rule set. If
140 * Create rule strings that represents this rule set
    [all...]
  /external/iptables/iptables/
ip6tables.8.in 31 \fIchain rule-specification\fP [\fIoptions...\fP]
37 rule-specification\fP [\fIoptions...\fP]
63 rule specifies what to do with a packet that matches. This is called
67 A firewall rule specifies criteria for a packet and a target. If the
68 packet does not match, the next rule in the chain is the examined; if
69 it does match, then the next rule is specified by the value of the
84 rule in the
86 or a rule in a built-in chain with target \fBRETURN\fP
155 \fB\-A\fP, \fB\-\-append\fP \fIchain rule-specification\fP
158 address, a rule will be added for each possible address combination
    [all...]
iptables.8.in 33 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-R\fP \fIchain rulenum rule-specification\fP
49 rule-specification = [\fImatches...\fP] [\fItarget\fP]
62 rule specifies what to do with a packet that matches. This is called
66 A firewall rule specifies criteria for a packet and a target. If the
67 packet does not match, the next rule in the chain is the examined; if
68 it does match, then the next rule is specified by the value of the
83 rule in the
85 or a rule in a built-in chain with target \fBRETURN\fP
154 \fB\-A\fP, \fB\-\-append\fP \fIchain rule-specification\fP
157 address, a rule will be added for each possible address combination
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 78 // form is (header ... ) ( grammar ID (scope ...) ... ( rule ... ) ( rule ... ) ... )
85 if ( p.getChild( i ).getType() != RULE )
89 //Console.Out.WriteLine( "rule " + ruleName + " prev=" + prev.getText() );
90 if (Rule.getRuleType(ruleName) == Grammar.LEXER) {
91 // remove lexer rule
100 Rule r = grammar.getRule( currentRuleName );
203 : (rule | ^(PREC_RULE .*))+
206 rule
211 Rule r = null
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
AST.stg 85 /** Add a variable to track rule's return AST */
99 :{it|RewriteRuleSubtreeStream stream_<it>=new RewriteRuleSubtreeStream(adaptor,"rule <it>");}; separator="\n">
104 * as a rule could have both rewrite and AST within the same alternative
119 /** ID and track it for use in a rewrite rule */
125 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
145 /** rule when output=AST and tracking for rewrite */
146 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
148 <if(backtracking)>if (<actions.(actionScope).synpredgate>) <endif>stream_<rule.name>.Add(<label>.Tree);
151 /** x+=rule when output=AST and tracking for rewrite */
152 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
AST.stg 85 /** Add a variable to track rule's return AST */
100 :{it|<\n>RewriteRuleSubtreeStream stream_<it>=new RewriteRuleSubtreeStream(adaptor,"rule <it>");}>
106 * as a rule could have both rewrite and AST within the same alternative
117 /** ID and track it for use in a rewrite rule */
123 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
143 /** rule when output=AST and tracking for rewrite */
144 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
146 <if(backtracking)>if (<actions.(actionScope).synpredgate>) <endif>stream_<rule.name>.Add(<label>.Tree);
149 /** x+=rule when output=AST and tracking for rewrite */
150 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
AST.stg 58 /** Add a variable to track rule's return AST */
72 :{it | RewriteRuleSubtreeStream stream_<it>=new RewriteRuleSubtreeStream(adaptor,"rule <it>");}; separator="\n">
77 * as a rule could have both rewrite and AST within the same alternative
92 /** ID and track it for use in a rewrite rule */
98 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
118 /** rule when output=AST and tracking for rewrite */
119 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
121 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<rule.name>.add(<label>.getTree());
124 /** x+=rule when output=AST and tracking for rewrite */
125 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
AST.stg 73 /** Add a variable to track rule's return AST */
88 :{it | stream_<it> = RewriteRuleSubtreeStream(self._adaptor, "rule <it>")}; separator="\n">
93 * as a rule could have both rewrite and AST within the same alternative
109 /** ID and track it for use in a rewrite rule */
115 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
135 /** rule when output=AST and tracking for rewrite */
136 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
138 <finishedBacktracking({stream_<rule.name>.add(<label>.tree)})>
141 /** x+=rule when output=AST and tracking for rewrite */
142 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/chromium_org/net/dns/
mock_host_resolver.cc 215 struct RuleBasedHostResolverProc::Rule {
230 Rule(ResolverType resolver_type,
263 Rule rule(Rule::kResolverTypeSystem,
270 rules_.push_back(rule);
285 Rule rule(Rule::kResolverTypeIPLiteral, host_pattern,
288 rules_.push_back(rule);
    [all...]
  /external/jarjar/res/com/tonicsystems/jarjar/
help.txt 46 The rules file is a text file, one rule per line. Leading and trailing
49 rule <pattern> <result>
53 The standard rule ("rule") is used to rename classes. All references
55 matched by more than one rule, only the first one will apply.
68 The "zap" rule causes any matched class to be removed from the resulting
71 The "keep" rule marks all matched classes as "roots". If any keep
  /system/extras/tests/fstest/
README 4 specified and minimal) rule for that file/directory to be printed on
9 one matching rule. If there is an explicit (fully specified) <spec>
11 explicit <spec> rule fails (i.e., other matching <spec> rules will be
13 <spec> rule fails to hold.
34 rule with the same name as the symlink exists, in which case the permissions
35 on the rule must match the permissions on the symlink itself, not the target.
68 file that does not match any rule is a failure.
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
validation_task.cc 34 #include "rule.h"
79 } else if (hierarchy.rule[0] == NULL) {
158 hierarchy.rule[depth - 1] == NULL ||
159 hierarchy.rule[depth - 1]->GetSubKeys().empty() ||
160 hierarchy.rule[depth] != NULL)) {
169 assert(hierarchy.rule[0] != NULL);
170 const Rule& country_rule = *hierarchy.rule[0];
186 // Validate general postal code format. A country-level rule specifies the
202 if (hierarchy.rule[depth] != NULL)
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
supplier_test.cc 35 #include "rule.h"
64 using i18n::addressinput::Rule;
146 const Rule* rule_[arraysize(LookupKey::kHierarchy)];
155 std::memcpy(rule_, hierarchy.rule, sizeof rule_);
297 // Make a copy of the currently returned pointers to the Rule objects (stored
300 // new Rule objects instead).
302 const Rule* rule[arraysize(LookupKey::kHierarchy)]; local
303 std::memcpy(rule, rule_, sizeof rule);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 44 String rule = "&9 < a < b < c < d"; local
45 RuleBasedCollator coll = new RuleBasedCollator(rule);
46 assertEquals(rule.hashCode(), coll.hashCode());
50 String rule = "&9 < a < b < c < d < e"; local
51 RuleBasedCollator coll = new RuleBasedCollator(rule);
52 assertEquals(rule.hashCode(), coll.hashCode());
66 String rule = "&9 < a < b < c < d < e"; local
67 RuleBasedCollator coll = new RuleBasedCollator(rule);
71 RuleBasedCollator other = new RuleBasedCollator(rule);
83 String rule = "&9 < c < b < a" local
101 String rule = "&9 < a = b < c"; local
    [all...]
  /prebuilts/tools/common/m2/repository/dom4j/dom4j/1.6.1/
dom4j-1.6.1-sources.jar 
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filter.py 36 ValueError: An error occurs if a filter rule does not begin
37 with "+" or "-" or if a filter rule does not match
42 for rule in filter_rules:
43 if not (rule.startswith('+') or rule.startswith('-')):
44 raise ValueError('Invalid filter rule "%s": every rule '
45 "must start with + or -." % rule)
48 if category.startswith(rule[1:]):
51 raise ValueError('Suspected incorrect filter rule "%s":
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
AST.stg 96 /** Add a variable to track rule's return AST */
112 <ruleDescriptor.allRuleRefsInAltsWithRewrites:{Locals['Stream_<it>'] := TRewriteRuleSubtreeStream.Create(Adaptor,'rule <it>');}; separator="\n">
122 * as a rule could have both rewrite and AST within the same alternative
137 /** ID and track it for use in a rewrite rule */
143 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
167 /** rule when output=AST and tracking for rewrite */
168 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
170 <if(backtracking)>if (State.Backtracking = 0) then <endif>(Locals['Stream_<rule.name>'] as IRewriteRuleElementStream).Add(<label>.Tree);<\n>
173 /** x+=rule when output=AST and tracking for rewrite */
174 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
AST.stg 55 /** Add a variable to track rule's return AST */
68 :{var stream_<it>=new org.antlr.runtime.tree.RewriteRuleSubtreeStream(this.adaptor,"rule <it>");}; separator="\n">
73 * as a rule could have both rewrite and AST within the same alternative
88 /** ID and track it for use in a rewrite rule */
94 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
118 /** rule when output=AST and tracking for rewrite */
119 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
121 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<rule.name>.add(<label>.getTree());
124 /** x+=rule when output=AST and tracking for rewrite */
125 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
AST.stg 164 /** Add a variable to track rule's return AST */
182 description:@"rule <it>"] retain];}; separator="\n">
214 * as a rule could have both rewrite and AST within the same alternative
229 /** ID and track it for use in a rewrite rule */
238 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
261 /** rule when output=AST and tracking for rewrite */
262 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
265 [stream_<rule.name> addElement:[<label> getTree]];
268 /** x+=rule when output=AST and tracking for rewrite */
269 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
AST.stg 64 /** Add a variable to track rule's return AST */
87 * one alt will be taken in a rule, but we are declaring all the streams here. So we define
101 #define CREATE_stream_<it> if (stream_<it> == NULL) {stream_<it> = antlr3RewriteRuleSubtreeStreamNewAE(ADAPTOR, RECOGNIZER, (pANTLR3_UINT8)"rule <it>"); \}}; separator="\n">
109 /** a rule label including default value */
117 * as a rule could have both rewrite and AST within the same alternative
140 /** ID but track it for use in a rewrite rule */
146 /** ids+=ID and track it for use in a rewrite rule; adds to ids *and*
164 /** rule when output=AST and tracking for rewrite */
165 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
167 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) { <endif>CREATE_stream_<rule.name>; stream_<rule.name>->add(stream_<rule.name>, <label>.tree, NULL);<if(backtracking)> }<endif
    [all...]
  /external/bison/src/
reader.c 109 | type as TYPE as required by the lhs of the rule whose %merge declaration |
167 | rule is represented by a sequence of symbols: the left hand side |
169 | null pointer instead of a symbol to terminate the rule. The next |
170 | symbol is the lhs of the following rule. |
172 | All actions are copied out, labelled by the rule number they apply |
192 /* A null SYM stands for an end of rule; it is not an actual
217 /* The rule currently being defined, and the previous rule.
218 CURRENT_RULE points to the first LHS of the current rule, while
219 PREVIOUS_RULE_END points to the *end* of the previous rule (NULL). *
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
rule_list.js 22 RULE_LIST: 'rule-list',
25 * The element containing the content setting pattern for a rule.
27 RULE_PATTERN: 'rule-pattern',
30 * The element containing the behavior (allow or block) for a rule.
32 RULE_BEHAVIOR: 'rule-behavior',
41 * @param {!RuleList} list The rule list containing this item.
42 * @param {!Object} rule The content setting rule.
46 function RuleListItem(list, rule) {
50 * The content setting rule
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
audit.h 56 #define AUDIT_ADD 1003 /* Add syscall rule -- deprecated */
57 #define AUDIT_DEL 1004 /* Delete syscall rule -- deprecated */
64 #define AUDIT_ADD_RULE 1011 /* Add syscall filtering rule */
65 #define AUDIT_DEL_RULE 1012 /* Delete syscall filtering rule */
142 #define AUDIT_INTEGRITY_RULE 1805 /* policy rule */
146 /* Rule flags */
147 #define AUDIT_FILTER_USER 0x00 /* Apply rule to user-generated messages */
148 #define AUDIT_FILTER_TASK 0x01 /* Apply rule at task creation (not syscall) */
149 #define AUDIT_FILTER_ENTRY 0x02 /* Apply rule at syscall entry */
150 #define AUDIT_FILTER_WATCH 0x03 /* Apply rule to file system watches *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
audit.h 56 #define AUDIT_ADD 1003 /* Add syscall rule -- deprecated */
57 #define AUDIT_DEL 1004 /* Delete syscall rule -- deprecated */
64 #define AUDIT_ADD_RULE 1011 /* Add syscall filtering rule */
65 #define AUDIT_DEL_RULE 1012 /* Delete syscall filtering rule */
142 #define AUDIT_INTEGRITY_RULE 1805 /* policy rule */
146 /* Rule flags */
147 #define AUDIT_FILTER_USER 0x00 /* Apply rule to user-generated messages */
148 #define AUDIT_FILTER_TASK 0x01 /* Apply rule at task creation (not syscall) */
149 #define AUDIT_FILTER_ENTRY 0x02 /* Apply rule at syscall entry */
150 #define AUDIT_FILTER_WATCH 0x03 /* Apply rule to file system watches *
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java 109 /** Map a rule index to its name; use a Vector on purpose as new
114 protected Vector<Rule> ruleIndexToRuleList = new Vector<Rule>();
157 public Rule getRule(String ruleName) {
251 * one that has to have a complete grammar rule interface. The delegates
255 public Set<Rule> getDelegatedRules(Grammar g) {
259 Set<Rule> rules = getAllImportedRules(g);
261 Rule r = (Rule) it.next();
262 Rule localRule = g.getLocallyDefinedRule(r.name)
    [all...]

Completed in 856 milliseconds

<<11121314151617181920>>