/external/chromium_org/third_party/icu/source/i18n/ |
zrule.h | 12 * \brief C API: Time zone rule classes 58 zrule_close(ZRule* rule); 73 * @param rule, the Zrule to use 79 zrule_getName(ZRule* rule, UChar* name, int32_t nameLength); 83 * @param rule, the Zrule to use 88 zrule_getRawOffset(ZRule* rule); 92 * @param rule, the Zrule to use 93 * @return The amount of daylight saving offset used by this rule 98 zrule_getDSTSavings(ZRule* rule); 101 * Returns if this rule represents the same rule and offsets as another [all...] |
funcrepl.cpp | 94 UnicodeString& FunctionReplacer::toReplacerPattern(UnicodeString& rule, 97 rule.truncate(0); 98 rule.append(AMPERSAND); 99 rule.append(translit->getID()); 100 rule.append(OPEN); 101 rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable)); 102 rule.append(CLOSE); 103 return rule;
|
/external/icu/icu4c/source/i18n/ |
zrule.h | 12 * \brief C API: Time zone rule classes 54 zrule_close(ZRule* rule); 68 * @param rule, the Zrule to use 73 zrule_getName(ZRule* rule, UChar* name, int32_t nameLength); 77 * @param rule, the Zrule to use 81 zrule_getRawOffset(ZRule* rule); 85 * @param rule, the Zrule to use 86 * @return The amount of daylight saving offset used by this rule 90 zrule_getDSTSavings(ZRule* rule); 93 * Returns if this rule represents the same rule and offsets as another [all...] |
funcrepl.cpp | 97 UnicodeString& FunctionReplacer::toReplacerPattern(UnicodeString& rule, 100 rule.truncate(0); 101 rule.append(AMPERSAND); 102 rule.append(translit->getID()); 103 rule.append(OPEN, 2); 104 rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable)); 105 rule.append(CLOSE, 2); 106 return rule;
|
/external/bison/src/ |
gram.h | 36 The rules receive rule numbers 1 to NRULES in the order they are 38 initial rule, `$accept: START-SYMBOL $end', which is numbered 1, 39 all the user rules are 2, 3 etc. Each time a rule number is 40 presented to the user, we subtract 1, so *displayed* rule numbers 43 Internally, we cannot use the number 0 for a rule because for 44 instance RITEM stores both symbol (the RHS) and rule numbers: the 45 symbols are shorts >= 0, and rule number are stored negative. 46 Therefore 0 cannot be used, since it would be both the rule number 49 Actions are accessed via the rule number. 56 RULES[R].lhs -- the symbol of the left hand side of rule R 200 } rule; typedef in typeref:struct:__anon4995 [all...] |
/external/chromium_org/chrome/browser/content_settings/ |
content_settings_rule_unittest.cc | 17 explicit ListIterator(const std::list<Rule>& rules) 26 virtual Rule Next() OVERRIDE { 30 Rule rule = rules_.front(); variable 32 return rule; 36 std::list<Rule> rules_; 42 std::list<Rule> rules1; 43 rules1.push_back(Rule(ContentSettingsPattern::FromString("a"), 46 rules1.push_back(Rule(ContentSettingsPattern::FromString("b"), 49 std::list<Rule> rules2 62 Rule rule; local [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/ |
speech_rule_store.js | 6 * @fileoverview Base interface for all speech rule stores. 8 * A speech rule store exposes the minimal set of methods a speech rule 10 * (definition). A rule provider also acts as the permanent and authoritative 23 * Adds a new speech rule. 24 * @param {cvox.SpeechRule} rule The speech rule to be added. 30 * Deletes a speech rule if it exists. 31 * @param {cvox.SpeechRule} rule The speech rule to be deleted [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/ |
rule_list.css | 7 .rule-pattern { 13 .rule-behavior { 18 select.rule-behavior { 22 .rule-list {
|
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/ |
supplier.h | 25 class Rule; 44 // A RuleHierarchy object encapsulates the hierarchical list of Rule objects 47 RuleHierarchy() : rule() {} 48 const Rule* rule[4]; // Cf. LookupKey::kHierarchy. member in struct:i18n::addressinput::Supplier::RuleHierarchy
|
/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/libnl/src/ |
nl-rule-list.c | 2 * src/nl-rule-dump.c Dump rule attributes 13 #include <netlink/cli/rule.h> 19 "Usage: nl-rule-list [OPTION]... [ROUTE]\n" 27 "Rule Options\n" 36 struct rtnl_rule *rule; local 47 rule = nl_cli_rule_alloc(); 70 case ARG_FAMILY: nl_cli_rule_parse_family(rule, optarg); break; 74 nl_cache_dump_filter(rule_cache, ¶ms, OBJ_CAST(rule));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
RulesEngine.java | 58 * The rule engine manages the layout rules and interacts with them. 73 * here on behalf of the currently executing rule. 129 * Invokes {@link IViewRule#getDisplayName()} on the rule matching the specified element. 132 * @return Null if the rule failed, there's no rule or the rule does not want to override 133 * the display name. Otherwise, a string as returned by the rule. 136 // try to find a rule for this element's FQCN 137 IViewRule rule = loadRule(element); local 139 if (rule != null) 163 IViewRule rule = loadRule(selectedNode.getNode()); local 191 IViewRule rule = loadRule(selectedNode.getNode()); local 222 IViewRule rule = loadRule(parentNode.getNode()); local 248 IViewRule rule = loadRule(parentNode.getNode()); local 267 IViewRule rule = loadRule(parentNode.getNode()); local 290 IViewRule rule = loadRule(targetNode.getNode()); local 316 IViewRule rule = loadRule(targetNode.getNode()); local 339 IViewRule rule = loadRule(targetNode.getNode()); local 362 IViewRule rule = loadRule(targetNode.getNode()); local 424 IViewRule rule = loadRule(targetNode.getNode()); local 446 IViewRule rule = loadRule(parent.getNode()); local 463 IViewRule rule = loadRule(parent.getNode()); local 477 IViewRule rule = loadRule(parent.getNode()); local 653 IViewRule rule = entry.getValue(); local 697 IViewRule rule = mRulesCache.get(targetDesc); local 765 IViewRule rule = mRulesCache.get(realFqcn); local [all...] |
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/ |
results.py | 9 to the one of the corresponding rule tree. 11 - The client loads a "rule tree" defined by the end-user (e.g., in a file) which 23 matches a rule. 57 assert(isinstance(rule_tree, rules.Rule)) 66 |trace_record| (in the worst case it will be the catchall *-other rule). 74 of the Rule object. 85 if not bucket.rule.Match(trace_record): 96 def _MakeBucketNodeFromRule(rule, num_keys): 97 assert(isinstance(rule, rules.Rule)) [all...] |
/ndk/sources/host-tools/make-3.81/ |
rule.c | 1 /* Pattern and suffix rule internals for GNU Make. 25 #include "rule.h" 27 static void freerule PARAMS ((struct rule *rule, struct rule *lastrule)); 32 struct rule *pattern_rules; 34 /* Pointer to last rule in the chain, so we can add onto the end. */ 36 struct rule *last_pattern_rule; 42 /* Maximum number of target patterns of any pattern rule. */ 46 /* Maximum number of dependencies of any pattern rule. * 72 register struct rule *rule, *lastrule; local [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/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/ |
options.js | 5 function Rule(data) { 7 this.node = document.getElementById('rule-template').cloneNode(true); 8 this.node.id = 'rule' + (Rule.next_id++); 9 this.node.rule = this; 32 var rule = this; 34 var sib = rule.node.previousSibling; 35 rule.node.parentNode.removeChild(rule.node); 36 sib.parentNode.insertBefore(rule.node, sib) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
JavaTarget.java | 32 import org.antlr.tool.Rule; 50 for (Rule rule : grammar.getRules()) { 51 rule.throwsSpec.add("RecognitionException"); 53 Set<Rule> delegatedRules = grammar.getDelegatedRules(); 55 for (Rule rule : delegatedRules) { 56 rule.throwsSpec.add("RecognitionException");
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
JarJarTask.java | 29 public void addConfiguredRule(Rule rule) { 30 if (rule.getPattern() == null || rule.getResult() == null) 31 throw new IllegalArgumentException("The <rule> element requires both \"pattern\" and \"result\" attributes."); 32 patterns.add(rule);
|
/external/jarjar/src/test/com/tonicsystems/jarjar/ |
PackageRemapperTest.java | 29 Rule rule = new Rule(); local 30 rule.setPattern("org.**"); 31 rule.setResult("foo.@1"); 32 remapper = new PackageRemapper(Collections.singletonList(rule), false);
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
address_data.cc | 26 #include "rule.h" 67 Rule rule; local 68 rule.CopyFrom(Rule::GetDefault()); 69 rule.ParseSerializedRule(RegionDataConstants::GetRegionData(country_code)); 75 rule.GetLatinFormat().empty() || 78 NormalizeLanguageCode(rule.GetLanguage()) 79 ? rule.GetFormat() : rule.GetLatinFormat() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
MatchResult.cpp | 46 void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType) 53 matchedRules.append(rule);
|
/frameworks/base/media/java/android/media/audiopolicy/ |
AudioMix.java | 38 private AudioMix(AudioMixingRule rule, AudioFormat format, int routeFlags) { 39 mRule = rule; 91 * @param rule a non-null {@link AudioMixingRule} instance. 94 public Builder(AudioMixingRule rule) 96 if (rule == null) { 99 mRule = rule; 105 * @param rule 109 public Builder setMixingRule(AudioMixingRule rule) 111 if (rule == null) { 114 mRule = rule; [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
rndmcoll.cpp | 19 // each rule can be: 151 const char * rule = test_rule.next(); local 153 logln(UnicodeString(rule, strlen(rule))); 155 UnicodeString newRule(rule); // potential bug 158 fwrite(rule, strlen(rule),1,stdout); 164 errln( "Could not create Collator for the %d(th) generated rule.\n" 166 "The rule is ",
|
/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
address_input_helper.cc | 30 #include "rule.h" 39 const Rule* rule; member in struct:i18n::addressinput::Node 48 // Gets the best name for the entity represented by the current rule, using the 53 std::string GetBestName(const Language& language, const Rule& rule) { 55 const std::string& name = rule.GetLatinName(); 62 const std::string& id = rule.GetId(); 78 // address, using this rule and its parents. 82 const Rule* rule = node->rule local 156 const Rule* rule = supplier_->GetRule(lookup_key); local [all...] |
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...] |