/external/jarjar/src/test/com/tonicsystems/jarjar/ |
GenericsTest.java | 28 Rule rule = new Rule(); local 29 rule.setPattern("java.lang.String"); 30 rule.setResult("com.tonicsystems.String"); 31 RemappingClassTransformer t = new RemappingClassTransformer(new PackageRemapper(Arrays.asList(rule), false));
|
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/mockito/src/test/java/org/mockitousage/junitrule/ |
InvalidTargetMockitoJUnitRuleTest.java | 3 import org.junit.Rule; 14 @Rule 15 public MockitoRule mockitoJUnitRule = MockitoJUnit.rule();
|
MockitoJUnitRuleTest.java | 3 import org.junit.Rule; 15 @Rule 16 public MockitoRule mockitoRule = MockitoJUnit.rule();
|
RuleTestWithFactoryMethodTest.java | 3 import org.junit.Rule; 15 @Rule 16 public MockitoRule mockitoRule = MockitoJUnit.rule();
|
/frameworks/support/percent/tests/java/android/support/percent/ |
BaseInstrumentationTestCase.java | 22 import android.support.test.rule.ActivityTestRule; 25 import org.junit.Rule; 30 @Rule
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/ |
Icu4jTransform.java | 26 import com.google.currysrc.api.process.Rule; [all...] |
Icu4jBasicTransform.java | 23 import com.google.currysrc.api.process.Rule; 56 private final List<Rule> rules; 74 public List<Rule> getRuleList(File ignored) { 88 private static List<Rule> createTransformRules() { 89 List<Rule> rules =
|
Icu4jTestsTransform.java | 23 import com.google.currysrc.api.process.Rule; 56 private final List<Rule> rules; 74 public List<Rule> getRuleList(File ignored) { 88 private static List<Rule> createTransformRules() { 89 List<Rule> rules =
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ |
Rule.java | 24 public interface Rule { 27 * Returns {@code true} if this rule should be applied to the supplied {@link CompilationUnit}. 38 /** Returns {@code true} if the rule must make a modification to be considered successful. */
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/ |
CheckAndroidIcu4jSourceRules.java | 23 import com.google.currysrc.api.process.Rule; 38 private final List<Rule> rules; 45 rules = Lists.<Rule>newArrayList( 51 public List<Rule> getRuleList(File file) {
|
/external/junit/src/main/java/org/junit/ |
Rule.java | 9 * Annotates fields that reference rules or methods that return a rule. A field must be public, not 19 * annotated {@link Rule}s on a class, they will be applied in order of fields first, then methods. 30 * @Rule 47 * @Rule 68 public @interface Rule {
|
/external/junit/src/main/java/org/junit/rules/ |
MethodRule.java | 3 import org.junit.Rule; 11 * {@link Rule} in turn, and each may return a substitute or modified 12 * {@link Statement}, which is passed to the next {@link Rule}, if any. For 35 * test-running rule.
|
/frameworks/base/tools/split-select/ |
Rule.cpp | 17 #include "Rule.h" 32 Rule::Rule(const Rule& rhs) 42 String8 Rule::toJson(int indent) const { 177 sp<Rule> Rule::simplify(sp<Rule> rule) { 178 if (rule->op != AND_SUBRULES && rule->op != OR_SUBRULES) [all...] |
/build/kati/ |
dep.cc | 30 #include "rule.h" 49 void ApplyOutputPattern(const Rule& r, 76 Entry(const Rule* r, StringPiece s) 77 : rule(r), suffix(s) { 79 const Rule* rule; member in struct:__anon1402::RuleTrie::Entry 90 void Add(StringPiece name, const Rule* rule) { 92 rules_.push_back(Entry(rule, name)); 100 p.first->second->Add(name.substr(1), rule); [all...] |
dep.h | 27 class Rule; 57 const vector<const Rule*>& rules,
|
/cts/tests/fragment/src/android/fragment/cts/ |
FragmentManagerNonConfigTest.java | 22 import android.support.test.rule.ActivityTestRule; 26 import org.junit.Rule; 34 @Rule
|
/cts/tests/tests/app/src/android/app/cts/ |
PictureInPictureActionsTest.java | 23 import android.support.test.rule.ActivityTestRule; 27 import org.junit.Rule; 41 @Rule
|
/cts/tests/tests/view/src/android/view/cts/ |
TextureViewCameraTest.java | 23 import android.support.test.rule.ActivityTestRule; 27 import org.junit.Rule; 39 @Rule
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCLexer.h | 14 #pragma mark Rule return scopes start 15 #pragma mark Rule return scopes end
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
SymbolTableLexer.h | 21 #pragma mark Rule return scopes start 22 #pragma mark Rule return scopes end
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCLexer.h | 14 #pragma mark Rule return scopes start 15 #pragma mark Rule return scopes end
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
LangDumpDecl.h | 38 #pragma mark Dynamic Rule Scopes 39 #pragma mark Rule Return Scopes start
|
/external/dagger2/core/src/test/java/dagger/internal/ |
InstanceFactoryTest.java | 18 import org.junit.Rule; 28 @Rule public final ExpectedException thrown = ExpectedException.none();
|
/external/mockito/src/test/java/org/mockito/internal/util/io/ |
IOUtilTest.java | 3 import org.junit.Rule; 16 @Rule public TemporaryFolder tmp = new TemporaryFolder();
|