HomeSort by relevance Sort by last modified time
    Searched full:groovy (Results 1 - 25 of 43) sorted by null

1 2

  /prebuilt/common/groovy/
groovy-src-1.7.0.zip 
PREBUILT 4 groovy-src-1.7.0.zip
6 hosted at <http://groovy.codehaus.org/Download>.
8 See also http://dist.groovy.codehaus.org/distributions/ for direct downloads.
groovy-all-1.7.0.jar 
NOTICE.txt 4 == in this case for the Groovy Language distribution. ==
7 Groovy Language
12 The Groovy community (http://groovy.codehaus.org/).
Android.mk 20 groovy-all-1.7.0$(COMMON_JAVA_PACKAGE_SUFFIX)
  /sdk/layoutopt/app/etc/
manifest.txt 2 Class-Path: groovy-all-1.7.0.jar
  /sdk/docs/
gscripts.txt 13 hardcoded in the GLE2 itself. Instead it is differed to a bunch of Groovy
23 - Groovy tips
29 If you run ADT in debug mode and want to trace into Groovy
30 methods, you need to tell Eclipse where to find the Groovy source code.
34 - Select the project at <android-source-tree>/prebuilt/common/groovy/
36 a single zip file with the groovy source.
37 - ADT is already pre-configured to find the Groovy source in the GroovySrc
47 Due to the way Groovy looks up methods, private methods will *not* be found by
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/groovytests/
TestGroovy.java 19 import org.codehaus.groovy.control.CompilationFailedException;
22 import groovy.lang.GroovyClassLoader;
30 * Tests we can invoke a groovy script that implements a given interface.
40 * This is the interface that we want our Groovy script to implement.
49 /** Method that returns some Groovy object (opaque for us). */
51 /** Method that accepts the Groovy object back. */
56 * Loads a groovy script that defines one class that implements the {@link AdtTestInterface}.
59 * @return A non-null instance of the groovy class on success.
60 * @throws CompilationFailedException if the groovy script failed to compile (e.g. syntax
62 * @throws ClassCastException if the groovy script does not implement our interface
    [all...]
compile_error.groovy 27 // missing return value (implicit in Groovy so not really an error)
simple_test.groovy 50 * Returns some Groovy object, in this case a map with some info and a closure.
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/rules/
GroovyRule.java 19 import groovy.lang.Script;
20 import groovy.lang.Binding;
21 import groovy.lang.Closure;
22 import groovy.xml.dom.DOMCategory;
24 import com.android.layoutopt.uix.groovy.LayoutAnalysisCategory;
26 import org.codehaus.groovy.runtime.GroovyCategorySupport;
33 * Implementation of a rule using a Groovy script.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
build.properties 14 groovy-all-1.7.0.jar
.classpath 9 <classpathentry kind="lib" path="groovy-all-1.7.0.jar"/>
  /sdk/layoutopt/libs/uix/src/
Android.mk 11 groovy-all-1.7.0
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/
.classpath 8 <classpathentry kind="lib" path="libs/groovy-all-1.7.0.jar" sourcepath="/GroovySrc/groovy-src-1.7.0.zip"/>
  /sdk/eclipse/scripts/
create_adt_symlinks.sh 34 ln -svf $BACK/out/host/linux-x86/framework/groovy-all-1.7.0.jar "$DEST/"
42 ln -svf $BACK/out/host/darwin-x86/framework/groovy-all-1.7.0.jar "$DEST/"
57 if [ ! -f "$DEST/groovy-all-1.7.0.jar" ]; then
58 cp -v "prebuilt/common/groovy/groovy-all-1.7.0.jar" "$DEST/"
create_test_symlinks.sh 42 ln -svf $BACK/out/host/linux-x86/framework/groovy-all-1.7.0.jar "$DEST/"
47 ln -svf $BACK/out/host/darwin-x86/framework/groovy-all-1.7.0.jar "$DEST/"
54 if [ ! -f "$DEST/groovy-all-1.7.0.jar" ]; then
55 cp -v "prebuilt/common/groovy/groovy-all-1.7.0.jar" "$DEST/"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 34 import org.codehaus.groovy.control.CompilationFailedException;
35 import org.codehaus.groovy.control.CompilationUnit;
36 import org.codehaus.groovy.control.CompilerConfiguration;
37 import org.codehaus.groovy.control.Phases;
38 import org.codehaus.groovy.control.SourceUnit;
45 import groovy.lang.GroovyClassLoader;
46 import groovy.lang.GroovyCodeSource;
47 import groovy.lang.GroovyResourceLoader;
66 * The rule engine manages the groovy rules files and interacts with them.
79 * The extension we expect for the groovy scripts
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/META-INF/
MANIFEST.MF 21 groovy-all-1.7.0.jar
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java 17 package com.android.layoutopt.uix.groovy;
27 import groovy.lang.GString;
28 import groovy.xml.dom.DOMCategory;
34 * Support class for Groovy rules. This class adds new Groovy capabilities
  /external/jsr305/ri/src/main/java/javax/annotation/
Syntax.java 32 * <li> "Groovy"
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
GroovyTestsSuite.java 23 * Container TestSuite for groovy tests to be run
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IViewRule.java 26 * Such a rule is implemented using a Groovy script located in the
30 * The Groovy script must be named using the fully qualified class name of the View or Layout,
31 * e.g. "android.widget.LinearLayout.groovy". If the rule engine can't find a groovy script
DropFeedback.java 19 import groovy.lang.Closure;
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/
LayoutAnalyzer.java 42 import groovy.lang.GroovyClassLoader;
43 import groovy.lang.GroovyShell;
44 import groovy.lang.Script;

Completed in 366 milliseconds

1 2