HomeSort by relevance Sort by last modified time
    Searched refs:each (Results 1 - 25 of 592) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/org/junit/internal/builders/
SuiteMethodBuilder.java 12 public Runner runnerForClass(Class<?> each) throws Throwable {
13 if (hasSuiteMethod(each))
14 return new SuiteMethod(each);
NullBuilder.java 11 public Runner runnerForClass(Class<?> each) throws Throwable {
AllDefaultPossibilitiesBuilder.java 28 for (RunnerBuilder each : builders) {
29 Runner runner= each.safeRunnerForClass(testClass);
  /external/junit/src/org/junit/runner/notification/
RunNotifier.java 49 abstract protected void notifyListener(RunListener each) throws Exception;
58 protected void notifyListener(RunListener each) throws Exception {
59 each.testRunStarted(description);
70 protected void notifyListener(RunListener each) throws Exception {
71 each.testRunFinished(result);
86 protected void notifyListener(RunListener each) throws Exception {
87 each.testStarted(description);
99 protected void notifyListener(RunListener each) throws Exception {
100 each.testFailure(failure);
116 protected void notifyListener(RunListener each) throws Exception
    [all...]
  /external/junit/src/org/junit/internal/runners/
MethodValidator.java 71 for (Method each : methods) {
72 if (Modifier.isStatic(each.getModifiers()) != isStatic) {
74 fErrors.add(new Exception("Method " + each.getName() + "() "
77 if (!Modifier.isPublic(each.getDeclaringClass().getModifiers()))
78 fErrors.add(new Exception("Class " + each.getDeclaringClass().getName()
80 if (!Modifier.isPublic(each.getModifiers()))
81 fErrors.add(new Exception("Method " + each.getName()
83 if (each.getReturnType() != Void.TYPE)
84 fErrors.add(new Exception("Method " + each.getName()
86 if (each.getParameterTypes().length != 0
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
test-webkitruby 29 Dir.glob("./webkitruby/*/*.rb").each do |test|
  /external/junit/src/org/junit/runners/model/
FrameworkMember.java 15 for (T each : members)
16 if (isShadowedBy(each))
NoGenericTypeParametersValidator.java 19 for (Type each : fMethod.getGenericParameterTypes())
20 validateNoTypeParameterOnType(each, errors);
37 for (Type each : parameterized.getActualTypeArguments())
38 validateNoTypeParameterOnType(each, errors);
43 for (Type each : wildcard.getUpperBounds())
44 validateNoTypeParameterOnType(each, errors);
45 for (Type each : wildcard.getLowerBounds())
46 validateNoTypeParameterOnType(each, errors);
  /external/doclava/res/assets/templates/
jd_lists.cs 3 each:page = docs.pages
7 /each ?>
lists.cs 2 <?cs each:page = docs.pages
4 <?cs /each ?>
  /development/tools/findunused/
find_unused_resources.rb 92 Dir.glob(glob).each { |filename|
94 file.each { |line|
95 @@javaIdPatterns.each { |re|
96 findAllOccurrences(re, line).each { |id|
111 Dir.glob("#{dir}/res/**/*.xml").each { |filename|
114 file.each { |line|
115 findAllOccurrences(@@stringIdPattern, line).each {|id|
118 findAllOccurrences(@@layoutIdPattern, line).each {|id|
121 @@stringXmlPatterns.each { |re|
122 findAllOccurrences(re, line).each {|id
    [all...]
  /external/junit/src/org/junit/experimental/categories/
Categories.java 104 for (Description each : description.getChildren())
105 if (shouldRun(each))
114 for (Class<?> each : categories)
115 if (fExcluded != null && fExcluded.isAssignableFrom(each))
117 for (Class<?> each : categories)
118 if (fIncluded == null || fIncluded.isAssignableFrom(each))
172 for (Description each : description.getChildren())
173 assertNoCategorizedDescendentsOfUncategorizeableParents(each);
177 for (Description each : description.getChildren()) {
178 if (each.getAnnotation(Category.class) != null
    [all...]
  /external/junit/src/org/junit/experimental/max/
MaxCore.java 104 for (Description each : leaves)
105 runners.add(buildRunner(each));
118 private Runner buildRunner(Description each) {
119 if (each.toString().equals("TestSuite with 0 tests"))
121 if (each.toString().startsWith(MALFORMED_JUNIT_3_TEST_CLASS_PREFIX))
126 return new JUnit38ClassRunner(new TestSuite(getMalformedTestClass(each)));
127 Class<?> type= each.getTestClass();
129 throw new RuntimeException("Can't build a runner from description [" + each + "]");
130 String methodName= each.getMethodName();
136 private Class<?> getMalformedTestClass(Description each) {
    [all...]
  /external/junit/src/junit/framework/
TestResult.java 42 for (TestListener each : cloneListeners())
43 each.addError(test, t);
51 for (TestListener each : cloneListeners())
52 each.addFailure(test, t);
78 for (TestListener each : cloneListeners())
79 each.endTest(test);
159 for (TestListener each : cloneListeners())
160 each.startTest(test);
  /external/junit/src/org/junit/rules/
RunRules.java 23 for (TestRule each : rules)
24 result= each.apply(result, description);
RuleChain.java 95 for (TestRule each : rulesStartingWithInnerMost)
96 base= each.apply(base, description);
  /external/junit/src/org/junit/experimental/theories/
ParameterSignature.java 72 for (Annotation each : annotations) {
73 if (annotationType.isInstance(each))
74 return annotationType.cast(each);
75 Annotation candidate= findDeepAnnotation(each.annotationType()
85 for (Annotation each : getAnnotations())
86 if (annotationType.isInstance(each))
87 return annotationType.cast(each);
  /external/junit/src/org/junit/internal/
TextListener.java 68 for (Failure each : failures)
69 printFailure(each, "" + i++);
72 protected void printFailure(Failure each, String prefix) {
73 getWriter().println(prefix + ") " + each.getTestHeader());
74 getWriter().print(each.getTrace());
ArrayComparisonFailure.java 43 for (int each : fIndices) {
45 builder.append(each);
  /build/tools/droiddoc/templates-ds/
sampleindex.cs 27 <?cs each:dir=subdirs ?>
30 <?cs /each ?>
37 <?cs each:file=files ?>
40 <?cs /each ?>
  /build/tools/droiddoc/templates-pdk/
sampleindex.cs 27 <?cs each:dir=subdirs ?>
30 <?cs /each ?>
37 <?cs each:file=files ?>
40 <?cs /each ?>
  /build/tools/droiddoc/templates-sac/
sampleindex.cs 27 <?cs each:dir=subdirs ?>
30 <?cs /each ?>
37 <?cs each:file=files ?>
40 <?cs /each ?>
  /external/junit/src/org/junit/internal/runners/statements/
RunAfters.java 34 for (FrameworkMethod each : fAfters)
36 each.invokeExplosively(fTarget);
  /developers/build/
build.gradle 97 result.each {entry -> println("- ${entry}");}
107 ["main", "common", "template"].each { input ->
108 [[ "java", "src"], ["res", "res"]].each { filetype ->
146 ["main", "common", "template"].each { input ->
147 ["java", "res", "assets", "rs"].each { filetype ->
163 // TODO(trevorjohns): Outputs a blank newline for each filtered line. Replace with java.io.FilterReader impl.
188 modules.each { moduleName ->
203 javaDirs.each { dir ->
208 srcDirs.each { srcPath ->
  /external/doclava/res/assets/templates/components/
api_filter.cs 12 each:since = since ?>'<?cs
15 /each

Completed in 282 milliseconds

1 2 3 4 5 6 7 8 91011>>