HomeSort by relevance Sort by last modified time
    Searched refs:each (Results 26 - 50 of 2945) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 26 for (Throwable each : fCauses)
27 description.addChild(describeCause(each));
33 for (Throwable each : fCauses)
34 runCause(each, notifier);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
table2CSV.js 9 in the table, the parameters rowNum and index in $().find().each() or
10 $().filter().find.each() help to ignore non-data cells.
34 $(el).filter(':visible').find('th').each(function(index) {
43 $(el).find('tr').each(function(index) {
46 $(this).filter(':visible').find('td').each(function(index) {
  /external/junit/src/junit/framework/
TestSuite.java 149 for (Method each : superClass.getDeclaredMethods())
150 addTestMethod(each, names, theClass);
178 for (Class<?> each : classes)
179 addTest(testCaseForClass(each));
182 private Test testCaseForClass(Class<?> each) {
183 if (TestCase.class.isAssignableFrom(each))
184 return new TestSuite(each.asSubclass(TestCase.class));
186 return warning(each.getCanonicalName() + " does not extend TestCase");
217 for (Test each : fTests)
218 count+= each.countTestCases()
    [all...]
  /external/webkit/Tools/Scripts/
check-for-webkit-framework-include-consistency 52 all_headers.each do |header|
104 $HEADERS_BY_TYPE.each do |header_type, headers|
106 headers.each do |header|
roll-over-ChangeLogs 37 `find . -type f -name 'ChangeLog'`.split.each do |path|
  /external/doclava/res/assets/templates/
diff.cs 127 <?cs each:site = sites ?>
129 <?cs /each ?>
131 <?cs each:package = packages ?>
140 <?cs each:site = package.sites ?>
148 <?cs /each ?>
151 <?cs each:class = package.classes ?>
160 <?cs each:site = class.sites ?>
168 <?cs /each ?>
170 <?cs each:method = class.methods ?>
174 <?cs each:site = method.sites ?
    [all...]
macros.cs 25 each:t=type.extendsBounds ?><?cs
28 /each ?><?cs
31 each:t=type.superBounds ?><?cs
34 /each ?><?cs
37 ?>&lt;<?cs each:t=type.typeArguments ?><?cs call:type_link_impl(t, "true") ?><?cs
39 /each ?>&gt;<?cs
56 each:param = params ?><?cs
60 /each ?><?cs
65 each:tag = tags ?><?cs
93 /each ?><?c
    [all...]
hierarchy.cs 26 <?cs each:cl = classes ?>
37 <?cs each:iface = cl.interfaces ?>
43 <?cs /each ?>
48 <?cs /each ?>
  /external/junit/src/org/junit/runner/
JUnitCore.java 87 for (String each : args)
89 classes.add(Class.forName(each));
91 system.out().println("Could not find class: " + each);
92 Description description= Description.createSuiteDescription(each);
99 for (Failure each : missingClasses)
100 result.getFailures().add(each);
Description.java 185 for (Annotation each : fAnnotations)
186 if (each.annotationType().equals(annotationType))
187 return annotationType.cast(each);
  /external/llvm/utils/
Makefile 14 EXTRA_DIST := check-each-file codegen-diff countloc.sh \
  /external/chromium/chrome/browser/resources/net_internals/
socketsview.js 8 * - Shows a summary of the state of each socket pool at the top.
9 * - For each pool with allocated sockets or connect jobs, shows all its
42 // Add table for each socket pool with information on each of its groups.
  /external/junit/src/org/junit/experimental/theories/
Theories.java 37 for (Field each : fields)
38 if (each.getAnnotation(DataPoint.class) != null && !Modifier.isStatic(each.getModifiers()))
39 errors.add(new Error("DataPoint field " + each.getName() + " must be static"));
49 for (FrameworkMethod each : computeTestMethods())
50 if(each.getAnnotation(Theory.class) != null)
51 each.validatePublicVoid(false, errors);
53 each.validatePublicVoidNoArg(false, errors);
  /external/junit/src/org/junit/internal/runners/model/
EachTestNotifier.java 32 for (Throwable each : mfe.getFailures())
33 addFailure(each);
  /external/junit/src/org/junit/rules/
TemporaryFolder.java 109 for (File each : files)
110 recursiveDelete(each);
  /external/junit/src/org/junit/runner/manipulation/
Filter.java 53 for (Description each : description.getChildren())
54 if (shouldRun(each))
  /external/junit/src/org/junit/runners/model/
RunnerBuilder.java 74 * Constructs and returns a list of Runners, one for each child class in
97 for (Class<?> each : children) {
98 Runner childRunner= safeRunnerForClass(each);
TestClass.java 29 * Creates a {@code TestClass} wrapping {@code klass}. Each time this
52 for (Annotation each : member.getAnnotations()) {
53 Class<? extends Annotation> type= each.annotationType();
143 for (FrameworkField each : getAnnotatedFields(annotationClass)) {
145 Object fieldValue= each.get(test);
  /external/chromium/chrome/browser/resources/file_manager/js/
util.js 41 * error. The FileError constructor has a named property for each possible
61 * Utility function to invoke callback once for each entry in dirEntry.
64 * @param {function(Entry)} callback The function to invoke for each entry in
87 * The successCallback will be invoked once for each directory object
88 * found. The errorCallback will be invoked once for each
99 * each DirEntry found. Also invoked once with null at the end of the
102 * for each path that cannot be resolved.
  /external/junit/src/org/junit/runners/
ParentRunner.java 44 * must implement finding the children of the node, describing each child, and
45 * running each child. ParentRunner will filter and sort children, handle
105 * Adds to {@code errors} a throwable for each problem noted with the test class (available from {@link #getTestClass()}).
106 * Default implementation adds an error for each method annotated with
142 * <li>Call {@link #runChild(Object, RunNotifier)} on each object returned by {@link #getChildren()} (subject to any imposed filter and sort).</li>
207 * each method in the tested class.
215 * on each object returned by {@link #getChildren()} (subject to any imposed
228 for (final T each : getFilteredChildren())
231 ParentRunner.this.runChild(each, notifier);
316 T each = iter.next()
    [all...]
Parameterized.java 56 * Each instance of <code>FibonacciTest</code> will be constructed using the
157 for (FrameworkMethod each : methods) {
158 int modifiers= each.getMethod().getModifiers();
160 return each;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
nuances.rb 24 tokens = lexer.each { |tk| tk }
  /external/junit/src/org/junit/
Assume.java 9 import org.junit.internal.matchers.Each;
47 assumeThat(asList(objects), Each.each(notNullValue()));
  /external/junit/src/org/junit/internal/matchers/
Each.java 9 public class Each {
10 public static <T> Matcher<Iterable<T>> each(final Matcher<T> individual) { method in class:Each
19 description.appendText("each ");
  /gdk/build/core/
add-platform.mk 18 # For each platform, determine the corresponding supported ABIs
28 # Record the sysroots for each supported ABI

Completed in 871 milliseconds

12 3 4 5 6 7 8 91011>>