HomeSort by relevance Sort by last modified time
    Searched refs:Rule (Results 326 - 350 of 1306) sorted by null

<<11121314151617181920>>

  /tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
GraphicsStatsMetricCollectorTest.java 32 import org.junit.Rule;
55 @Rule public TemporaryFolder tempFolder = new TemporaryFolder();
MemInfoMetricCollectorTest.java 33 import org.junit.Rule;
56 @Rule public TemporaryFolder tempFolder = new TemporaryFolder();
PagetypeInfoMetricCollectorTest.java 33 import org.junit.Rule;
56 @Rule public TemporaryFolder tempFolder = new TemporaryFolder();
TraceMetricCollectorTest.java 33 import org.junit.Rule;
56 @Rule public TemporaryFolder tempFolder = new TemporaryFolder();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestSuiteFactory.java 90 private static List<Rule> loadRulesFromGrammar(File grammarFile) {
92 // get all the rule names
106 // convert to rule object
107 final List<Rule> ruleList = new ArrayList<Rule>();
109 ruleList.add(new Rule(str));
175 final List<Rule> completeRuleList = loadRulesFromGrammar(grammarFile);
176 for(Rule rule: completeRuleList) {
177 if(!result.hasRule(rule)) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ActionAnalysis.g 29 /** We need to set Rule.referencedPredefinedRuleAttributes before
31 * its rule and outer alternative number and figures out which
48 Rule enclosingRule;
71 /** $x.y x is enclosing rule or rule ref or rule label
79 // ref to enclosing rule.
84 // ref to rule label
88 Rule refdRule = grammar.getRule(refdRuleName);
94 // ref to rule referenced in this al
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LL1Analyzer.java 34 import org.antlr.tool.Rule;
49 /** 0 if we hit end of rule and invoker should keep going (epsilon) */
62 public Map<Rule, LookaheadSet> FOLLOWCache = new HashMap<Rule, LookaheadSet>();
74 Rule r = (Rule)it.next();
86 // walk every rule in this grammar and compare FIRST set with
90 Rule r = (Rule)it.next();
94 Rule importedRule = g.getRule(r.name)
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 855 // A DWARF rule for recovering the address or value of a register, or
857 // each '*Rule' member function in CallFrameInfo::Handler.
869 class CallFrameInfo::Rule {
871 virtual ~Rule() { }
874 // recovered using this rule. If REGISTER is kCFARegister, then this rule
882 virtual bool operator==(const Rule &rhs) const = 0;
884 bool operator!=(const Rule &rhs) const { return ! (*this == rhs); }
886 // Return a pointer to a copy of this rule.
887 virtual Rule *Copy() const = 0
1709 Rule *rule = new ValOffsetRule(base_register, offset); local
1755 Rule *rule = cie_rules_.RegisterRule(reg); local
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 277 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule,
279 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size())))
282 C.advance(Rule.size());
290 static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule,
292 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size())))
295 C.advance(Rule.size());
300 unsigned StringOffset = Rule.size() + Number.size();
331 const StringRef Rule = "%subreg."
    [all...]
  /external/robolectric/v1/lib/main/
commons-codec-1.6.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.6/
commons-codec-1.6.jar 
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 66 * keyword "other" by the default rule.
73 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
74 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
91 * rules = rule (';' rule)*
92 * rule = keyword ':' condition
326 * for values to which no other form in the rule applies. It
376 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null);
380 * @param description the rule description
1587 Rule rule = parseRule(rules[i].trim()); local
1854 Rule rule = it.next(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 65 * keyword "other" by the default rule.
72 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
73 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
90 * rules = rule (';' rule)*
91 * rule = keyword ':' condition
322 * for values to which no other form in the rule applies. It
377 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null);
381 * @param description the rule description
1526 Rule rule = parseRule(rules[i].trim()); local
1793 Rule rule = it.next(); local
    [all...]
  /system/sepolicy/tests/
policy.py 36 def __init__(self, rule):
37 data = rule.split(',')
43 self.rule = rule
135 def __TERuleMatch(self, Rule, **kwargs):
139 Rule.sctx not in kwargs['scontext']):
144 Rule.tctx not in kwargs['tcontext']):
149 not bool(set([Rule.tclass]) & kwargs['tclass'])):
154 not bool(Rule.perms & kwargs['perms'])):
185 # Will return any rule with
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/
EmulatorPkg.fdf 219 [Rule.Common.SEC]
227 [Rule.Common.PEI_CORE]
234 [Rule.Common.PEIM]
242 [Rule.Common.DXE_CORE]
251 [Rule.Common.UEFI_DRIVER]
263 [Rule.Common.DXE_DRIVER]
275 [Rule.Common.DXE_RUNTIME_DRIVER]
287 [Rule.Common.UEFI_APPLICATION]
298 [Rule.Common.UEFI_DRIVER.BINARY]
306 [Rule.Common.UEFI_APPLICATION.BINARY]
    [all...]
  /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));
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/
QuarkMin.fdf 512 # how an FFS file is created for a given INF file. The following Rule are the default
517 [Rule.Common.SEC]
523 [Rule.Common.PEI_CORE]
530 [Rule.Common.PEIM.NORELOC]
538 [Rule.Common.PEIM]
546 [Rule.Common.DXE_CORE]
553 [Rule.Common.UEFI_DRIVER]
561 [Rule.Common.DXE_DRIVER]
569 [Rule.Common.DXE_RUNTIME_DRIVER]
577 [Rule.Common.DXE_SMM_DRIVER]
    [all...]
  /build/soong/cc/
library_test.go 30 libfooShared := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_core_shared").Rule("ld")
56 libfooShared := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_core_shared").Rule("ld")
82 libfooShared := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_core_shared").Rule("ld")
108 libfooShared := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_core_shared").Rule("ld")
134 libfooShared := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_core_shared").Rule("ld")
165 libfooShared := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_core_shared").Rule("ld")
  /cts/tests/tests/batterysaving/src/android/os/cts/batterysaving/
BatterySaverLocationTest.java 47 import org.junit.Rule;
61 @Rule
65 @Rule
  /device/linaro/bootloader/edk2/DuetPkg/
DuetPkg.fdf 117 [Rule.Common.DXE_CORE]
122 [Rule.Common.UEFI_DRIVER]
128 [Rule.Common.DXE_DRIVER]
134 [Rule.Common.DXE_RUNTIME_DRIVER]
140 [Rule.Common.UEFI_APPLICATION]
145 [Rule.Common.UEFI_DRIVER.BINARY]
  /external/mockito/src/test/java/org/mockito/internal/verification/checkers/
MissingInvocationInOrderCheckerTest.java 9 import org.junit.Rule;
38 @Rule
41 @Rule
42 public MockitoRule mockitoRule = MockitoJUnit.rule();
  /external/vogar/test/vogar/target/
AbstractTestRunnerTest.java 26 import org.junit.Rule;
60 @Rule
63 @Rule
  /frameworks/base/apct-tests/perftests/core/src/android/text/
DynamicLayoutPerfTest.java 28 import android.support.test.rule.ActivityTestRule;
32 import org.junit.Rule;
76 @Rule
79 @Rule
  /frameworks/base/apct-tests/perftests/core/src/android/widget/
EditTextLongTextPerfTest.java 24 import org.junit.Rule;
44 import android.support.test.rule.ActivityTestRule;
68 @Rule
71 @Rule
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
SysuiTestCase.java 35 import org.junit.Rule;
50 @Rule
53 @Rule

Completed in 1169 milliseconds

<<11121314151617181920>>