HomeSort by relevance Sort by last modified time
    Searched refs:Rule (Results 201 - 225 of 909) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
FileOutputTest.java 23 import org.junit.Rule;
32 @Rule
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
AntFilesLocatorTest.java 29 import org.junit.Rule;
38 @Rule
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
RuleTest.java 27 * Unit tests for {@link Rule}.
31 private Rule rule; field in class:RuleTest
35 rule = new Rule();
40 assertEquals(ElementType.BUNDLE, rule.getElement());
41 assertEquals(Collections.emptyList(), rule.getLimits());
42 assertEquals("*", rule.getIncludes());
43 assertEquals("", rule.getExcludes());
48 rule.setElement(ElementType.PACKAGE)
    [all...]
  /external/junit-params/src/test/java/junitparams/
ParametersReaderProvidersTest.java 4 import org.junit.Rule;
18 @Rule
  /external/mockito/src/test/java/org/mockito/internal/verification/
VerificationOverTimeImplTest.java 4 import org.junit.Rule;
22 @Rule
  /external/mockito/src/test/java/org/mockito/internal/verification/checkers/
MissingInvocationCheckerTest.java 11 import org.junit.Rule;
31 @Rule
  /external/vogar/test/vogar/android/
AbstractModeTest.java 25 import org.junit.Rule;
44 @Rule
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
CanvasPerfTest.java 29 import org.junit.Rule;
34 @Rule
  /frameworks/base/apct-tests/perftests/core/src/android/os/
ParcelPerfTest.java 26 import org.junit.Rule;
33 @Rule
  /frameworks/base/apct-tests/perftests/core/src/android/perftests/
SystemPerfTest.java 26 import org.junit.Rule;
40 @Rule
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
SysuiBaseFragmentTest.java 30 import org.junit.Rule;
36 @Rule
  /frameworks/support/design/tests/src/android/support/design/widget/
BottomSheetBehaviorInitialStateTest.java 26 import android.support.test.rule.ActivityTestRule;
29 import org.junit.Rule;
37 @Rule
  /frameworks/support/fragment/tests/java/android/support/v4/app/
NestedFragmentRestoreTest.java 26 import android.support.test.rule.ActivityTestRule;
33 import org.junit.Rule;
43 @Rule
  /frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
PathInterpolatorValueParameterizedTest.java 25 import android.support.test.rule.ActivityTestRule;
29 import org.junit.Rule;
41 @Rule
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketImplTest.java 30 import org.junit.Rule;
34 @Rule
  /libcore/luni/src/test/java/libcore/java/net/
MulticastSocketTest.java 27 import org.junit.Rule;
31 @Rule
OldUnixSocketTest.java 31 import org.junit.Rule;
35 @Rule
ServerSocketTest.java 26 import org.junit.Rule;
30 @Rule
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPOutputStreamTest.java 28 import org.junit.Rule;
32 @Rule
  /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...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/
ArmVExpress-RTSM-A15_MPCore.fdf 256 # how an FFS file is created for a given INF file. The following Rule are the default
267 #[Rule.Common.DXE_DRIVER]
281 [Rule.Common.SEC]
286 [Rule.Common.PEI_CORE]
292 [Rule.Common.PEIM]
299 [Rule.Common.PEIM.TIANOCOMPRESSED]
308 [Rule.Common.DXE_CORE]
314 [Rule.Common.UEFI_DRIVER]
321 [Rule.Common.DXE_DRIVER]
328 [Rule.Common.DXE_RUNTIME_DRIVER
    [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...]

Completed in 4352 milliseconds

1 2 3 4 5 6 7 891011>>