HomeSort by relevance Sort by last modified time
    Searched refs:rules (Results 151 - 175 of 1642) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant_8/src/eap_peer/
Makefile 12 include ../lib.rules
  /external/wpa_supplicant_8/src/p2p/
Makefile 9 include ../lib.rules
  /external/wpa_supplicant_8/src/rsn_supp/
Makefile 9 include ../lib.rules
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
PerfManualStatusReporter.java 21 import org.junit.rules.TestRule;
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/utils/taskexecutor/
InstantTaskExecutorRule.java 19 import org.junit.rules.TestWatcher;
  /frameworks/support/work/workmanager-firebase/src/androidTest/java/androidx/work/impl/utils/taskexecutor/
InstantTaskExecutorRule.java 19 import org.junit.rules.TestWatcher;
  /prebuilts/go/darwin-x86/src/unicode/
casetables.go 5 // TODO: This file contains the special casing rules for Turkish and Azeri only.
6 // It should encompass all the languages with special casing rules
  /prebuilts/go/linux-x86/src/unicode/
casetables.go 5 // TODO: This file contains the special casing rules for Turkish and Azeri only.
6 // It should encompass all the languages with special casing rules
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
LongNameHandler.java 100 private final PluralRules rules; field in class:LongNameHandler
103 private LongNameHandler(Map<StandardPlural, SimpleModifier> modifiers, PluralRules rules,
106 this.rules = rules;
110 public static LongNameHandler forCurrencyLongNames(ULocale locale, Currency currency, PluralRules rules,
118 return new LongNameHandler(modifiers, rules, parent);
121 public static LongNameHandler forMeasureUnit(ULocale locale, MeasureUnit unit, UnitWidth width, PluralRules rules,
130 return new LongNameHandler(modifiers, rules, parent);
156 micros.modOuter = modifiers.get(copy.getStandardPlural(rules));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
LongNameHandler.java 96 private final PluralRules rules; field in class:LongNameHandler
99 private LongNameHandler(Map<StandardPlural, SimpleModifier> modifiers, PluralRules rules,
102 this.rules = rules;
106 public static LongNameHandler forCurrencyLongNames(ULocale locale, Currency currency, PluralRules rules,
114 return new LongNameHandler(modifiers, rules, parent);
117 public static LongNameHandler forMeasureUnit(ULocale locale, MeasureUnit unit, UnitWidth width, PluralRules rules,
126 return new LongNameHandler(modifiers, rules, parent);
152 micros.modOuter = modifiers.get(copy.getStandardPlural(rules));
  /external/v8/tools/testrunner/local/
statusfile.py 132 def _EvalVariantExpression(section, rules, wildcards, variant, variables):
141 rules[variant],
194 # Empty defaults for rules and wildcards. Variant-independent
195 # rules are mapped by "", others by the variant name.
196 rules = {variant: {} for variant in ALL_VARIANTS}
197 rules[""] = {}
211 # it for all possible variants and create rules for those that apply.
213 _EvalVariantExpression(section, rules, wildcards, variant, variables)
219 rules[""],
223 return Freeze(rules), Freeze(wildcards
    [all...]
  /libcore/ojluni/src/main/java/java/util/
SimpleTimeZone.java 53 * and end rules for a daylight saving time schedule. Since it only holds
60 * schedule, the schedule can be described with a set of rules,
140 * These parameter rules are also applicable to the set rule methods, such as
162 dstSavings = millisPerHour; // In case user sets rules later
167 * GMT, time zone ID, and rules for starting and ending the daylight
226 * GMT, time zone ID, and rules for starting and ending the daylight
285 * GMT, time zone ID, and rules for starting and ending the daylight
287 * This constructor takes the full set of the start and end rules
    [all...]
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/
PublishDocsRules.kt 89 * Rules are resolved in addition order. So if you have two rules that specify how docs should be
100 private val rules: MutableList<DocsRule> = mutableListOf()
105 rules.add(DocsRule(Group(groupName), TipOfTree))
112 rules.add(DocsRule(Exact(groupName, name), TipOfTree))
120 rules.add(DocsRule(Exact(groupName, moduleName), Prebuilts(Version(version))))
133 rules.add(DocsRule(Group(groupName), strategy))
141 rules.add(DocsRule(All, strategy))
148 rules.add(DocsRule(Group(groupName), Ignore))
155 rules.add(DocsRule(Exact(groupName, name), Ignore)
    [all...]
  /external/icu/icu4c/source/i18n/
nfrs.cpp 138 , rules(0)
200 // the descriptions of the rules (one rule per element). The rules
209 rules.deleteAll();
222 NFRule::makeRules(currentDescription, this, rules.last(), owner, rules, status);
226 // for rules that didn't specify a base value, their base values
228 // set all those rules' base values. We also remove any special
229 // rules from the list and put them into their own member variables
235 int32_t rulesSize = rules.size()
    [all...]
dayperiodrules.cpp 30 DayPeriodRulesData() : localeToRuleSetNumMap(NULL), rules(NULL), maxRuleSetNum(0) {}
33 DayPeriodRules *rules; member in struct:__anon21428::DayPeriodRulesData
67 } else if (uprv_strcmp(key, "rules") == 0) {
69 data->rules = new DayPeriodRules[data->maxRuleSetNum + 1];
70 if (data->rules == NULL) {
74 ResourceTable rules = value.getTable(errorCode); local
75 processRules(rules, key, value, errorCode);
81 void processRules(const ResourceTable &rules, const char *key,
85 for (int32_t i = 0; rules.getKeyAndValue(i, key, value); ++i) {
125 if (!data->rules[ruleSetNum].allHoursAreSet())
286 ResourceTable rules = value.getTable(errorCode); local
    [all...]
number_patternmodifier.cpp 31 const UNumberUnitWidth unitWidth, const PluralRules *rules) {
32 U_ASSERT((rules != nullptr) == needsPlurals());
38 this->rules = rules;
86 return new ImmutablePatternModifier(pm, rules, parent); // adopts pm
114 ImmutablePatternModifier::ImmutablePatternModifier(ParameterizedModifier *pm, const PluralRules *rules,
116 : pm(pm), rules(rules), parent(parent) {}
125 if (rules == nullptr) {
131 StandardPlural::Form plural = copy.getStandardPlural(rules);
    [all...]
number_compact.h 61 CompactType compactType, const PluralRules *rules,
71 const PluralRules *rules; member in class:number::impl::CompactHandler
rbt.h 32 * that reads a set of rules in order to determine how to perform
34 * name. Rules within a rule set are separated by semicolons (';').
40 * <p>Each set of rules consists of two groups, one forward, and one
41 * reverse. This is a convention that is not enforced; rules for one
44 * bidirectional forward-reverse rules may be specified for
88 * <p>Translation rules consist of a <em>match pattern</em> and an <em>output
131 * into rule strings. Thus, the following two rules are equivalent:</p>
145 * output string. This makes certain sets of rules simpler and more
190 * <p>The following example rules illustrate many of the features of
208 * <p>Applying these rules to the string &quot;<code>adefabcdefz</code>&quot
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationMiscTest.java 176 String[] rules = { local
181 /* "you cannot go before ...": The parser now sets an error for such nonsensical rules.
214 /* "you cannot go before ...": The parser now sets an error for such nonsensical rules.
246 for (int i = 0; i< rules.length; i++) {
247 logln(String.format("rules[%d] = \"%s\"", i, rules[i]));
248 genericRulesStarter(rules[i], data[i]);
252 void genericRulesStarter(String rules, String[] s) {
253 genericRulesStarterWithResult(rules, s, -1);
256 void genericRulesStarterWithResult(String rules, String[] s, int result)
344 String[] rules = { local
363 String[] rules = { local
402 String[] rules = { local
1074 String rules[] = { local
1247 String rules = local
1595 String rules = "&b=ch"; local
1665 String rules[] = { local
1750 String rules = "& ' ' < b < c < de < fg & hi = j"; local
2155 String rules = local
2293 String rules = "&Ny << Y &[first secondary ignorable] <<< a"; local
2301 String rules[] = { local
2378 String rules[] = { local
2477 String rules[] = { local
2701 String[] rules = new String[] { local
2716 String[] rules = new String[] { local
2730 String[] rules = new String[] { local
2741 String[] rules = new String[] { local
2766 String[] rules = new String[] { local
2784 String[] rules = new String[] { local
2798 String rules[] = new String[] { local
2862 String rules[] = new String[] { local
3010 String rules = new String("&DZ<dzs<<<Dzs<<<DZS" + local
3134 String rules = "&[before 1]\\u03b1 < \\u0e01"; local
3332 String rules = "[reorder Hani Grek]"; local
3490 String rules = "[reorder Grek]"; local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationMiscTest.java 173 String[] rules = { local
178 /* "you cannot go before ...": The parser now sets an error for such nonsensical rules.
211 /* "you cannot go before ...": The parser now sets an error for such nonsensical rules.
243 for (int i = 0; i< rules.length; i++) {
244 logln(String.format("rules[%d] = \"%s\"", i, rules[i]));
245 genericRulesStarter(rules[i], data[i]);
249 void genericRulesStarter(String rules, String[] s) {
250 genericRulesStarterWithResult(rules, s, -1);
253 void genericRulesStarterWithResult(String rules, String[] s, int result)
341 String[] rules = { local
360 String[] rules = { local
399 String[] rules = { local
1071 String rules[] = { local
1244 String rules = local
1592 String rules = "&b=ch"; local
1662 String rules[] = { local
1747 String rules = "& ' ' < b < c < de < fg & hi = j"; local
2152 String rules = local
2290 String rules = "&Ny << Y &[first secondary ignorable] <<< a"; local
2298 String rules[] = { local
2375 String rules[] = { local
2474 String rules[] = { local
2698 String[] rules = new String[] { local
2713 String[] rules = new String[] { local
2727 String[] rules = new String[] { local
2738 String[] rules = new String[] { local
2763 String[] rules = new String[] { local
2781 String[] rules = new String[] { local
2795 String rules[] = new String[] { local
2859 String rules[] = new String[] { local
3007 String rules = new String("&DZ<dzs<<<Dzs<<<DZS" + local
3131 String rules = "&[before 1]\\u03b1 < \\u0e01"; local
3329 String rules = "[reorder Hani Grek]"; local
3487 String rules = "[reorder Grek]"; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testrecognizers.py 13 rules = antlr3.BaseRecognizer._getRuleInvocationStack(__name__)
15 rules,
  /external/libxkbcommon/xkbcommon/test/
rulescomp.c 28 test_rmlvo_va(struct xkb_context *context, const char *rules,
35 keymap = test_compile_rules(context, rules, model, layout, variant,
41 strnull(rules), strnull(model), strnull(layout),
52 test_rmlvo(struct xkb_context *context, const char *rules,
60 ret = test_rmlvo_va(context, rules, model, layout, variant, options, ap);
67 test_rmlvo_env(struct xkb_context *ctx, const char *rules, const char *model,
76 if (!isempty(rules))
77 setenv("XKB_DEFAULT_RULES", rules, 1);
  /frameworks/base/location/tests/locationtests/
Android.mk 16 core-test-rules \
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
InstanceTargets.java 49 int rules[] = params.getRules(); local
50 if (rules[ALIGN_PARENT_RIGHT] != 0) {
  /frameworks/minikin/doc/
minikin_style.md 3 The C++ style in Minikin follows Android Framework C++ Code Style Guide except for following rules:

Completed in 817 milliseconds

1 2 3 4 5 67 8 91011>>