/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
ndrdic.c | 43 NJ_INT16 njd_r_get_hinsi(NJ_DIC_HANDLE rule, NJ_UINT8 type) { 46 if (rule == NULL) { 52 return V2_F_HINSI(rule); 54 return BUN_B_HINSI(rule); 56 return TAN_F_HINSI(rule); 58 return TAN_B_HINSI(rule); 60 return SUUJI_B_HINSI(rule); 62 return MEISI_F_HINSI(rule); 64 return MEISI_B_HINSI(rule); 66 return JINMEI_F_HINSI(rule); [all...] |
/external/chromium_org/chrome/browser/content_settings/ |
content_settings_rule.cc | 10 Rule::Rule() {} 12 Rule::Rule( 22 Rule::~Rule() {} 32 Rule EmptyRuleIterator::Next() { 34 return Rule(); 58 Rule ConcatenationIterator::Next() { 63 const Rule& to_return = (*current_iterator)->Next() [all...] |
content_settings_rule.h | 20 struct Rule { 21 Rule(); 22 // Rule takes ownership of |value|. 23 Rule(const ContentSettingsPattern& primary_pattern, 26 ~Rule(); 37 virtual Rule Next() = 0; 44 virtual Rule Next() OVERRIDE; 55 virtual Rule Next() OVERRIDE;
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
address_ui.cc | 30 #include "rule.h" 109 // If the rule does not contain information about languages, then returns the 115 // the rule and returns it. 120 std::string GetComponentsLanguageCode(const Rule& rule, 124 if (!rule.GetLanguage().empty()) { 125 default_language_code = rule.GetLanguage(); 126 } else if (!rule.GetLanguages().empty()) { 127 default_language_code = rule.GetLanguages()[0]; 128 } else if (!rule.GetInputLanguages().empty()) 186 Rule rule; local [all...] |
/external/srec/config/en.us/grammars/ |
dynamic-test.grxml | 5 <rule id="ROOT" scope="public"> 9 </rule> 11 <rule id="Displayer"> 22 </rule> 24 <rule id="Names" scope="public"> 26 </rule>
|
slot_test2.grxml | 9 <rule id="ROOT" scope="public"> 15 </rule> 17 <rule id="Phone"> 29 </rule> 32 <rule id="Names" scope="public"> 34 </rule>
|
slot_test1.grxml | 8 <rule id="ROOT" scope="public"> 29 </rule> 31 <rule id="slot1" scope="public"> 34 </rule> 36 <rule id="slot2" scope="public"> 39 </rule> 41 <rule id="slot3" scope="public"> 44 </rule> 46 <rule id="slot4" scope="public"> 49 </rule> [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
TestSuite.java | 36 protected List<Rule> rules ; 44 rules = new ArrayList<Rule>(); 52 public void addRule(Rule currentRule) { 53 if(currentRule == null) throw new IllegalArgumentException("Null rule"); 57 // test rule name 58 public boolean hasRule(Rule rule) { 59 for(Rule r: rules) { 60 if(r.getName().equals(rule.getName())) { 71 public void setRules(List<Rule> newRules) [all...] |
/external/chromium_org/content/browser/speech/ |
DEPS | 2 "+google_apis", # Exception to general rule, see content/DEPS for details.
|
/external/chromium_org/sandbox/win/src/ |
process_mitigations_win32k_policy.cc | 13 PolicyRule rule(FAKE_SUCCESS); 14 if (!policy->AddRule(IPC_GDI_GDIDLLINITIALIZE_TAG, &rule)) 16 if (!policy->AddRule(IPC_GDI_GETSTOCKOBJECT_TAG, &rule)) 18 if (!policy->AddRule(IPC_USER_REGISTERCLASSW_TAG, &rule))
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
MSVSToolFile.py | 28 """Adds a rule to the tool file. 31 name: Name of the rule. 32 description: Description of the rule. 33 cmd: Command line of the rule. 34 additional_dependencies: other files which may trigger the rule. 35 outputs: outputs of the rule. 36 extensions: extensions handled by the rule. 38 rule = ['CustomBuildRule', 47 self.rules_section.append(rule)
|
/external/iptables/extensions/ |
libxt_TRACE.man | 1 This target marks packets so that the kernel will log every rule which match 7 "TRACE: tablename:chainname:type:rulenum " where type can be "rule" for 8 plain rule, "return" for implicit rule at the end of a user defined chain
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
error_check.py | 27 class Rule(object): 39 # Rule to raise all known errors. 54 'This includes ' + (', '.join(Rule.CLOSURE_RULES)) + '.') 58 ' - ' + Rule.ALL + ': enables all following errors.\n' 59 ' - ' + Rule.BLANK_LINES_AT_TOP_LEVEL + ': validates' 61 ' - ' + Rule.INDENTATION + ': checks correct ' 63 ' - ' + Rule.WELL_FORMED_AUTHOR + ': validates the ' 65 ' - ' + Rule.NO_BRACES_AROUND_INHERIT_DOC + ': ' 67 ' - ' + Rule.BRACES_AROUND_TYPE + ': enforces braces ' 69 ' - ' + Rule.OPTIONAL_TYPE_MARKER + ': checks correct [all...] |
/external/chromium_org/third_party/closure_linter/closure_linter/ |
error_check.py | 27 class Rule(object): 39 # Rule to raise all known errors. 54 'This includes ' + (', '.join(Rule.CLOSURE_RULES)) + '.') 58 ' - ' + Rule.ALL + ': enables all following errors.\n' 59 ' - ' + Rule.BLANK_LINES_AT_TOP_LEVEL + ': validates' 61 ' - ' + Rule.INDENTATION + ': checks correct ' 63 ' - ' + Rule.WELL_FORMED_AUTHOR + ': validates the ' 65 ' - ' + Rule.NO_BRACES_AROUND_INHERIT_DOC + ': ' 67 ' - ' + Rule.BRACES_AROUND_TYPE + ': enforces braces ' 69 ' - ' + Rule.OPTIONAL_TYPE_MARKER + ': checks correct [all...] |
/frameworks/base/media/java/android/media/audiopolicy/ |
AudioMixingRule.java | 28 * Here's an example of creating a mixing rule for all media playback: 45 * A rule requiring the usage information of the {@link AudioAttributes} to match 49 * A rule requiring the usage information of the {@link AudioAttributes} to differ 57 AttributeMatchCriterion(AudioAttributes attributes, int rule) { 59 mRule = rule; 81 * Add a rule for the selection of which streams are mixed together. 83 * rule hasn't been set yet. 84 * @param rule one of {@link AudioMixingRule#RULE_EXCLUDE_ATTRIBUTE_USAGE}, 89 public Builder addRule(AudioAttributes attrToMatch, int rule) 94 if ((rule != RULE_MATCH_ATTRIBUTE_USAGE) && (rule != RULE_EXCLUDE_ATTRIBUTE_USAGE)) [all...] |
/external/chromium_org/net/base/ |
host_mapping_rules.cc | 36 const ExclusionRule& rule = *it; local 37 if (MatchPattern(host_port->host(), rule.hostname_pattern)) 44 const MapRule& rule = *it; local 46 // The rule's hostname_pattern will be something like: 53 if (!MatchPattern(host_port->host(), rule.hostname_pattern)) { 55 if (!MatchPattern(host_port_string, rule.hostname_pattern)) 56 continue; // This rule doesn't apply. 59 host_port->set_host(rule.replacement_hostname); 60 if (rule.replacement_port != -1) 61 host_port->set_port(rule.replacement_port) 76 ExclusionRule rule; local 84 MapRule rule; local [all...] |
/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
region_data_builder.cc | 30 #include "rule.h" 51 const Rule* rule = supplier->GetRule(lookup_key); local 52 if (rule == NULL) { 55 const std::string& local_name = rule->GetName().empty() 56 ? *key_it : rule->GetName(); 58 prefer_latin_name && !rule->GetLatinName().empty() 59 ? rule->GetLatinName() : local_name; 61 if (!rule->GetSubKeys().empty()) { 63 rule->GetSubKeys(), prefer_latin_name) 81 const Rule* const rule = supplier->GetRule(lookup_key); local 127 Rule rule; local [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
construction.rb | 375 rule = opts[ :rule ] 379 message = opts[ :message ] || rule.to_s #"should parse %p with rule %s and make tree %s" % [input, rule, expected_tree] 385 result = parser.send( rule, *args ) 394 ast_test :input => "1 + 2", :rule => :r1, :ast => "(+ 1 2)" 396 ast_test :input => "assert 2+3", :rule => :r2, :ast => "(assert (+ 2 3))" 398 ast_test :input => "assert 2+3 : 5", :rule => :r2, :ast => "(assert (+ 2 3) 5)" 400 ast_test :input => "if 1 fooze", :rule => :r3, :ast => "(if 1 fooze) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
RuleClosureTransition.java | 30 import org.antlr.tool.Rule; 32 /** A transition used to reference another rule. It tracks two targets 34 * state that refers to the other rule. Conversion of an NFA that 35 * falls off the end of a rule will be able to figure out who invoked 36 * that rule because of these special transitions. 39 /** Ptr to the rule definition object for this rule ref */ 40 public Rule rule; field in class:RuleClosureTransition 42 /** What node to begin computations following ref to rule */ [all...] |
/external/chromium_org/third_party/libaddressinput/src/cpp/test/ |
preload_supplier_test.cc | 25 #include "rule.h" 40 using i18n::addressinput::Rule; 73 const Rule* rule = supplier_.GetRule(us_key); local 74 ASSERT_TRUE(rule != NULL); 75 EXPECT_EQ("data/US", rule->GetId()); 85 const Rule* rule = supplier_.GetRule(ca_key); local 86 ASSERT_TRUE(rule != NULL); 87 EXPECT_EQ("data/US/CA", rule->GetId()) 96 const Rule* rule = supplier_.GetRule(zw_key); local 108 const Rule* rule = supplier_.GetRule(unknown_key); local 120 const Rule* rule = supplier_.GetRule(precise_key); local [all...] |
/external/iproute2/man/man8/ |
ip-rule.8 | 1 .TH IP\-RULE 8 "20 Dec 2011" "iproute2" "Linux" 3 ip-rule \- routing policy database management 11 .B rule 17 .B ip rule 53 .I ip rule 70 according to the longest match rule, is replaced with a 'routing policy 74 Each policy routing rule consists of a 79 of each rule is applied to {source address, destination address, incoming 84 continues on the next rule. 104 Rule 0 is special. It cannot be deleted or overridden [all...] |
/external/chromium_org/sandbox/mac/ |
policy.h | 22 // default behavior for servers not given an explicit rule. 28 // specified in the Rule. 33 // A Rule expresses the action to take when a service port is requested via 37 struct SANDBOX_EXPORT Rule { 38 Rule(); 39 explicit Rule(PolicyDecision result); 40 explicit Rule(mach_port_t override_port); 44 // The Rule does not take ownership of this port, but additional send rights 52 typedef std::map<std::string, Rule> NamedRules; 59 Rule default_rule [all...] |
/external/chromium_org/chrome/renderer/safe_browsing/ |
scorer_unittest.cc | 34 ClientSideModel::Rule* rule; local 35 rule = model_.add_rule(); 36 rule->set_weight(0.5); 38 rule = model_.add_rule(); 39 rule->add_feature(0); // feature1 40 rule->set_weight(2.0); 42 rule = model_.add_rule(); 43 rule->add_feature(0); // feature1 44 rule->add_feature(1); // feature [all...] |
/external/junit/src/org/junit/rules/ |
RuleChain.java | 14 * The RuleChain rule allows ordering of TestRules. You create a 20 * @Rule 22 * .outerRule(new LoggingRule("outer rule") 23 * .around(new LoggingRule("middle rule") 24 * .around(new LoggingRule("inner rule"); 36 * starting outer rule 37 * starting middle rule 38 * starting inner rule 39 * finished inner rule 40 * finished middle rule [all...] |
/external/chromium_org/tools/deep_memory_profiler/lib/ |
policy.py | 33 class Rule(object): 34 """Represents one matching rule in a policy file.""" 129 """Finds a rule whose name is |component_name|. """ 130 for rule in self._rules: 131 if rule.name == component_name: 132 return rule 157 for rule in self._rules: 158 if (rule.allocator_type == 'malloc' and 159 (not rule.stackfunction_pattern or 160 rule.stackfunction_pattern.match(stackfunction)) an [all...] |