Searched defs:each (Results 1 - 25 of 25) sorted by path

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb54 ANTLR bundles all of this functionality into a number of Stream classes, each
764 # If a block is provided, each token harvested will be yielded and if the block
992 # yields each token in the stream (including off-channel tokens)
994 # #each accepts the same arguments as #tokens
996 def each( *args ) method in class:ANTLR3.that.CommonTokenStream
997 block_given? or return enum_for( :each, *args )
998 tokens( *args ).each { |token| yield( token ) }
1003 # yields each token in the stream with the given channel value
1015 # iterates through the token stream, yielding each on channel token along the way.
1017 # it was before #walk was called. While #each o
[all...]
H A Dtoken.rb299 defines methods #next and #each, which provide basic
319 def each method in class:ANTLR3.TokenSource
320 block_given? or return enum_for( :each )
594 names.first.each do |value, name|
H A Dtree.rb357 alias each_child each
919 tree.each do | child |
1179 def each method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream
1181 block_given? or return enum_for( :each )
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js144 Hash.alias('forEach', 'each');
154 Array.alias('forEach', 'each');
185 function $each(iterable, fn, bind){
187 ((type == 'arguments' || type == 'collection' || type == 'array') ? Array : Hash).each(iterable, fn, bind);
449 Contains Array Prototypes like each, contains, and erase.
685 Number.alias('times', 'each');
689 math.each(function(name){
809 Hash.each(properties, function(value, key){
816 Hash.each(properties, function(value, key){
837 Hash.each(thi
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Ddisplay-profiler-output77 @topCounts.each {
86 @topCounts.each {
100 counts.each {
115 counts.each {
127 @osrExits.each {
144 json["bytecode"].each {
175 def each method in class:Bytecodes
176 @bytecode.values.sort{|a, b| a.bytecodeIndex <=> b.bytecodeIndex}.each {
247 each {
276 def each method in class:ProfiledBytecodes
[all...]
/external/chromium_org/third_party/d3/src/
H A Dd3.js577 for (value in name) this.each(d3_selection_attr(value, name[value]));
580 return this.each(d3_selection_attr(name, value));
621 for (value in name) this.each(d3_selection_classed(value, name[value]));
624 return this.each(d3_selection_classed(name, value));
663 for (priority in name) this.each(d3_selection_style(priority, name[priority], value));
669 return this.each(d3_selection_style(name, value, priority));
687 for (value in name) this.each(d3_selection_property(value, name[value]));
690 return this.each(d3_selection_property(name, value));
706 return arguments.length ? this.each(typeof value === "function" ? function() {
717 return arguments.length ? this.each(typeo
[all...]
/external/chromium_org/v8/src/
H A Dast.h892 ENUMERATE, // for (each in subject) body;
893 ITERATE // for (each of subject) body;
896 void Initialize(Expression* each, Expression* subject, Statement* body) { argument
898 each_ = each;
902 Expression* each() const { return each_; } function in class:v8::internal::ForEachStatement
965 void Initialize(Expression* each, argument
972 ForEachStatement::Initialize(each, subject, body);
998 // each = result.value
H A Dparser.cc1428 // Generate a separate declaration for each identifier.
2870 Expression* each,
2916 // each = result.value
2924 Token::ASSIGN, each, result_value, RelocInfo::kNoPosition);
2927 for_of->Initialize(each, subject, body,
2933 stmt->Initialize(each, subject, body);
2942 // ES6 13.6.3.4 specifies that on each loop iteration the let variables are
2984 // For each let variable x:
3020 // For each let variable x:
3075 // For each le
2869 InitializeForEachStatement(ForEachStatement* stmt, Expression* each, Expression* subject, Statement* body) argument
3135 VariableProxy* each = local
3192 VariableProxy* each = local
[all...]
/external/dexmaker/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DTemplateInterpreter.java369 * &lt;?cs each:x=Stuff &gt; ... &lt;?cs /each &gt; command. Loops over child items of a data
381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand());
521 private void each(PVariable variable, String parentName, Data items, PCommand command) { method in class:TemplateInterpreter
523 // we need to create a path for each child when generating the
661 // name as discovered by the expression evaluator and resolve it each
/external/junit/src/junit/framework/
H A DTestSuite.java149 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) { argument
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
[all...]
/external/junit/src/org/junit/experimental/max/
H A DMaxCore.java104 for (Description each : leaves)
105 runners.add(buildRunner(each));
118 private Runner buildRunner(Description each) { argument
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) { argument
[all...]
/external/junit/src/org/junit/internal/
H A DTextListener.java68 for (Failure each : failures)
69 printFailure(each, "" + i++);
72 protected void printFailure(Failure each, String prefix) { argument
73 getWriter().println(prefix + ") " + each.getTestHeader());
74 getWriter().print(each.getTrace());
/external/junit/src/org/junit/internal/builders/
H A DNullBuilder.java11 public Runner runnerForClass(Class<?> each) throws Throwable { argument
H A DSuiteMethodBuilder.java12 public Runner runnerForClass(Class<?> each) throws Throwable { argument
13 if (hasSuiteMethod(each))
14 return new SuiteMethod(each);
/external/junit/src/org/junit/internal/matchers/
H A DEach.java10 public static <T> Matcher<Iterable<T>> each(final Matcher<T> individual) { method in class:Each
19 description.appendText("each ");
/external/junit/src/org/junit/runner/notification/
H A DRunNotifier.java49 abstract protected void notifyListener(RunListener each) throws Exception; argument
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) throw
[all...]
/external/junit/src/org/junit/runners/
H A DParentRunner.java44 * 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
359 shouldRun(Filter filter, T each) argument
[all...]
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 6784 milliseconds