/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_worditerator.h | 27 // creates rule sets that filter out the characters not supported by the 36 // ISO language code, this function creates the custom rule-sets used by 38 // GetRuleSet() returns the rule-sets created in this function. 41 // Returns a custom rule-set string used by the ICU break iterator. This class 42 // has two rule-sets, one splits a contraction and the other does not, so we 53 // Creates the rule-sets that return words possibly used by the given 54 // language. Unfortunately, these rule-sets are not perfect and have some 67 // The custom rule-set strings used by ICU break iterator. Since it is not so 68 // easy to create custom rule-sets from an ISO language code, this class 69 // saves these rule-set strings created when we set the language [all...] |
/external/chromium_org/net/cert/ |
mock_cert_verifier.h | 44 // Adds a rule that will cause any call to Verify() for |cert| to return rv, 60 struct Rule; 61 typedef std::list<Rule> RuleList;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCharsetRule.h | 42 virtual void reattach(StyleRuleBase* rule) OVERRIDE { ASSERT_UNUSED(rule, !rule); }
|
/external/iptables/extensions/ |
libxt_LOG.man | 2 for a rule, the Linux kernel will print some information on all 8 This is a "non-terminating target", i.e. rule traversal continues at 9 the next rule. So if you want to LOG the packets you refuse, use two
|
libxt_NFLOG.man | 2 set for a rule, the Linux kernel will pass the packet to the loaded 9 non-terminating target, i.e. rule traversal continues at the next rule.
|
/external/junit/src/org/junit/ |
Rule.java | 15 * annotated {@link Rule}s on a class, they will be applied in an order 24 * @Rule 45 public @interface Rule {
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
mult_rules | 4 target of several rules if at most one rule has commands; 9 for foo.o and bar.o. It then gives another multiple target rule 50 $answer = "$make_name: *** No rule to make target `extra.h', needed by `foo.o'. Stop.\n";
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
ITestCase.java | 32 * tested rule and the index number of the test case in that group. 51 * Get the name of the rule that is tested by this test case. 52 * @return name of the tested rule. 57 * Get the index of the test case in the test group for a rule. Starting
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeFilter.cs | 45 rule application strategy and a ``down then up'' tree traversal 46 strategy. Let's look at rule application first. 50 to the next node. In other words, we only look for a single rule 52 repeatedly apply rules). The following method applies a rule in a @cl 57 It uses reflection to lookup the appropriate rule within the generated 59 rule will not match the tree. To avoid issuing syntax errors and 61 failure, the invoked rule immediately returns. If you don't plan on 63 the details. This method boils down to ``call a rule to match a tree, 135 // to override, just define tree grammar rule topdown and turn on
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
SerializedGrammar.java | 47 class Rule { 50 public Rule(String name, Block block) { 115 Rule r = readRule(in); 121 protected Rule readRule(DataInputStream in) throws IOException { 123 if ( R!='R' ) throw new IOException("missing R on start of rule"); 125 System.out.println("rule: "+name); 129 if ( period!='.' ) throw new IOException("missing . on end of rule"); 130 return new Rule(name, b); 160 //System.out.println("read rule "+gr.getRuleName(ruleIndex));
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
RewriteEarlyExitException.js | 1 /** No elements within a (...)+ in a rewrite rule */
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeRewriter.h | 43 - (id)rule; 51 ANTLRfptr *rule; variable 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTreeRewriter.h | 43 - (id)rule; 51 ANTLRfptr *rule; variable 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTreeRewriter.h | 43 - (id)rule; 51 ANTLRfptr *rule; variable 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreeRewriter.m | 54 - (id)rule 129 - (id) applyOnce:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule 138 ANTLRTreeRuleReturnScope *r = [(ANTLRfptr *)whichRule rule]; 157 - (id) applyRepeatedly:(ANTLRCommonTree *)t Rule:(ANTLRfptr *)whichRule 161 ANTLRTreeRewriter *u = [self applyOnce:t Rule:whichRule]; 175 return [self applyOnce:t Rule:topdown_fptr]; 180 return [self applyRepeatedly:t Rule:bottomup_ftpr]; 230 // to override, just define tree grammar rule topdown and turn on 249 @synthesize rule;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/ |
TreeRewriteParser.m | 40 #pragma mark Dynamic Rule Scopes 42 #pragma mark Rule Return Scopes start 123 //#pragma mark Rule return scopes start 126 #pragma mark Rule return scopes start 131 #pragma mark Dynamic Rule Scopes 206 * $ANTLR start rule 207 * TreeRewrite.g:8:1: rule : INT subrule -> ^( subrule INT ) ; 209 - (TreeRewriteParser_rule_return *) rule 233 description:@"rule subrule"] retain]; 253 // rule labels: retva [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/ |
ASTTreeParser.stg | 37 <if(root.el.rule)> 174 ruleRef(rule,label,elementIndex,args,scope) ::= << 186 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 191 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 201 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= << 206 ruleRefTrack(rule,label,elementIndex,args,scope) ::= << 211 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= << 216 ruleRefRuleRootTrack(rule,label,elementIndex,args,scope) ::= << 221 ruleRefRuleRootTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
ST.stg | 20 /** x+=rule when output=template */ 21 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 79 * Set the value of the rule's template *after* having set 80 * the attributes because the rule's template might be used as
|
/external/bison/src/ |
scan-code.l | 52 static void handle_action_dollar (symbol_list *rule, char *cp, 54 static void handle_action_at (symbol_list *rule, char *cp, location at_loc); 73 /* Whether in a rule or symbol action. Specifies the translation 202 handle_action_dollar (self->rule, yytext, *loc); 209 handle_action_at (self->rule, yytext, *loc); 472 _(", cannot be accessed from mid-rule action at $%d"); 493 points to LHS ($$) of the current rule or midrule. */ 500 parse_ref (char *cp, symbol_list *rule, int rule_length, 558 for (symbol_index = 0, l = rule; !symbol_list_null (l); 582 /* Check visibility from mid-rule actions. * [all...] |
/external/chromium_org/chrome/ |
angle.isolate | 16 # but ANGLE doesn't contain the rule which extracts this.
|
/external/chromium_org/chrome/browser/net/ |
dns_probe_test_util.h | 14 // Creates a mock DNS client with a single rule for the known-good query
|
/external/chromium_org/net/proxy/ |
proxy_script_decider_unittest.cc | 38 struct Rule { 39 Rule(const GURL& url, int fetch_error, bool is_valid_script) 58 Rule AddSuccessRule(const char* url) { 59 Rule rule(GURL(url), OK /*fetch_error*/, true); 60 rules_.push_back(rule); 61 return rule; 65 rules_.push_back(Rule(GURL(url), kFailedDownloading /*fetch_error*/, 70 rules_.push_back(Rule(GURL(url), OK /*fetch_error*/, false)); 73 const Rule& GetRuleByUrl(const GURL& url) const 111 const Rules::Rule& rule = rules_->GetRuleByUrl(url); variable 188 Rules::Rule rule = rules.AddSuccessRule("http:\/\/custom\/proxy.pac"); local 295 Rules::Rule rule = rules.AddSuccessRule("http:\/\/wpad\/wpad.dat"); local 422 Rules::Rule rule = rules_.AddSuccessRule(kCustomUrl); local 442 Rules::Rule rule = rules.AddSuccessRule("http:\/\/custom\/proxy.pac"); local 467 Rules::Rule rule = rules.AddSuccessRule("http:\/\/custom\/proxy.pac"); local [all...] |
/external/chromium_org/sandbox/win/src/ |
policy_low_level.h | 91 // Adds a rule to be generated when Done() is called. 92 // service: The id of the service that this rule is associated with, 95 bool AddRule(int service, PolicyRule* rule); 103 const PolicyRule* rule; member in struct:sandbox::LowLevelPolicy::RuleNode 125 // rule and its associated action. 134 // Adds a string comparison to the rule. 136 // parameter: the expected index of the argument for this rule. For example 143 // Adds a number match comparison to the rule. 145 // parameter: the expected index of the argument for this rule.
|
/external/chromium_org/third_party/icu/source/common/ |
rbbinode.h | 17 // a rule file. 64 int fFirstPos; // Position in the rule source string of the 68 int fLastPos; // Last position in the rule source string 80 // marking the end of a look-ahead rule.
|
rbbiscan.h | 40 // the rule expressions and a list of all Unicode Sets 96 RBBIRuleBuilder *fRB; // The rule builder that we are part of. 99 // in the rule input string. 113 RBBIRuleTableEl **fStateTable; // State Transition Table for RBBI Rule 121 // during the parse of a rule 125 UBool fReverseRule; // True if the rule currently being scanned 126 // is a reverse direction rule (if it 129 UBool fLookAheadRule; // True if the rule includes a '/' 146 int32_t fRuleNum; // Counts each rule as it is scanned.
|