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

1 2 3 4 5

  /external/ant-glob/src/org/apache/tools/ant/
BuildException.java 23 public class BuildException extends RuntimeException {
30 public BuildException() {
40 public BuildException(String message) {
53 public BuildException(String message, Throwable cause) {
64 public BuildException(Throwable cause) {
  /external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
Condition.java 21 import org.apache.tools.ant.BuildException;
31 * @exception BuildException if an error occurs
33 boolean eval() throws BuildException;
  /external/proguard/src/proguard/ant/
ConfigurationElement.java 23 import org.apache.tools.ant.BuildException;
43 throw new BuildException("Nested element <configuration> must have a refid attribute");
ProGuardTask.java 23 import org.apache.tools.ant.BuildException;
39 public void setConfiguration(File configurationFile) throws BuildException
51 throw new BuildException(ex.getMessage());
60 throw new BuildException(ex.getMessage());
70 throw new BuildException("Use the <outjar> nested element instead of the 'outjar' attribute");
91 throw new BuildException("Unsupported target '"+target+"'");
274 public void execute() throws BuildException
283 throw new BuildException(ex.getMessage());
  /sdk/anttasks/src/com/android/ant/
SingleInputOutputTask.java 19 import org.apache.tools.ant.BuildException;
46 public final void execute() throws BuildException {
48 throw new BuildException("Missing attribute input");
51 throw new BuildException("Missing attribute output");
69 protected abstract void createOutput() throws BuildException;
XPathTask.java 21 import org.apache.tools.ant.BuildException;
61 public void execute() throws BuildException {
64 throw new BuildException("input attribute is missing!");
68 throw new BuildException("output attribute is missing!");
72 throw new BuildException("expression attribute is missing!");
85 throw new BuildException(e);
87 throw new BuildException(e);
SignApkTask.java 22 import org.apache.tools.ant.BuildException;
61 protected void createOutput() throws BuildException {
67 throw new BuildException(String.format("Signing key %s not found", mAlias));
80 throw new BuildException(String.format("Keystore '%s' is not found!", mKeystore));
82 throw new BuildException(e.getMessage());
118 throw new BuildException(msg);
120 throw new BuildException(msg + ": " + causeMsg);
124 throw new BuildException(e);
126 throw new BuildException(causeMsg);
BuildConfigTask.java 21 import org.apache.tools.ant.BuildException;
42 public void execute() throws BuildException {
44 throw new BuildException("Missing attribute genFolder");
47 throw new BuildException("Missing attribute package");
70 throw new BuildException("Failed to create BuildConfig class", e);
GetEmmaFilterTask.java 19 import org.apache.tools.ant.BuildException;
56 public void execute() throws BuildException {
58 throw new BuildException("Missing attribute appPackage");
61 throw new BuildException("Missing attribute libraryPackagesRefId");
64 throw new BuildException("Missing attribute filterOut");
IfElseTask.java 19 import org.apache.tools.ant.BuildException;
79 throw new BuildException("Cannot use both condition attribute and <condition> element");
104 public void execute() throws BuildException {
106 throw new BuildException("condition attribute or element must be set.");
115 throw new BuildException("Need at least <then> or <else>");
PropertyByReplaceTask.java 19 import org.apache.tools.ant.BuildException;
44 public void execute() throws BuildException {
GetTypeTask.java 24 import org.apache.tools.ant.BuildException;
54 public void execute() throws BuildException {
56 throw new BuildException("Missing attribute projectTypeOut");
99 throw new BuildException(e);
101 throw new BuildException(e);
GetTargetTask.java 30 import org.apache.tools.ant.BuildException;
90 public void execute() throws BuildException {
92 throw new BuildException("Missing attribute bootClassPathOut");
95 throw new BuildException("Missing attribute androidJarFileOut");
98 throw new BuildException("Missing attribute androidAidlFileOut");
101 throw new BuildException("Missing attribute targetApiOut");
104 throw new BuildException("Missing attribute mMinSdkVersionOut");
116 throw new BuildException("Android Target is not set.");
153 throw new BuildException("Failed to parse SDK content.");
160 throw new BuildException(String.format
    [all...]
ComputeProjectClasspathTask.java 22 import org.apache.tools.ant.BuildException;
45 public void execute() throws BuildException {
47 throw new BuildException("Missing attribute projectLocation");
50 throw new BuildException("Missing attribute projectClassPathOut");
GetProjectPathsTask.java 21 import org.apache.tools.ant.BuildException;
45 public void execute() throws BuildException {
47 throw new BuildException("Missing attribute projectPath");
ZipAlignTask.java 19 import org.apache.tools.ant.BuildException;
46 public void createOutput() throws BuildException {
48 throw new BuildException("Missing attribute executable");
ComputeDependencyTask.java 25 import org.apache.tools.ant.BuildException;
99 public void execute() throws BuildException {
101 throw new BuildException("Missing attribute libraryManifestFilePathOut");
104 throw new BuildException("Missing attribute libraryResFolderPathOut");
107 throw new BuildException("Missing attribute libraryPackagesOut");
110 throw new BuildException("Missing attribute jarLibraryPathOut");
113 throw new BuildException("Missing attribute libraryNativeFolderPathOut");
116 throw new BuildException("Missing attribute libraryBinFolderPathOut");
119 throw new BuildException("Missing attribute libraryRFilePathOut");
122 throw new BuildException("Missing attribute targetApi")
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/data/
mergeTask.java 13 import org.apache.tools.ant.BuildException;
33 public void execute () throws BuildException
39 throw (BuildException) newBuildException (getTaskName ()
58 throw (BuildException) newBuildException (getTaskName ()
67 throw (BuildException) newBuildException (getTaskName ()
76 throw (BuildException) newBuildException (getTaskName ()
85 throw (BuildException) newBuildException (getTaskName ()
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-regexp.jar 
ant-antlr.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FileCounter.java 19 import org.apache.tools.ant.BuildException;
46 public void execute() throws BuildException {
57 throw new BuildException("Directory " + this.getSourceDirectory() + " not found.");
62 throw new BuildException("Directory " + this.getSourceDirectory() + " not found.");
87 throw new BuildException("Can not create file.count file");
89 throw new BuildException("Can not create file.count file");
  /external/emma/ant/ant14/com/vladium/emma/ant/
SuppressableTask.java 16 import org.apache.tools.ant.BuildException;
30 public void init () throws BuildException
80 public static BuildException newBuildException (final String msg, final Location location)
86 return new BuildException (prefixedMsg, location);
89 public static BuildException newBuildException (final String msg, final Throwable cause, final Location location)
95 return new BuildException (prefixedMsg, cause, location);
FilterTask.java 17 import org.apache.tools.ant.BuildException;
29 public void init () throws BuildException
  /external/emma/ant/ant14/com/vladium/emma/instr/
instrTask.java 13 import org.apache.tools.ant.BuildException;
52 public void execute () throws BuildException
57 throw (BuildException) newBuildException (getTaskName ()
61 throw (BuildException) newBuildException (getTaskName ()
111 throw (BuildException) newBuildException (getTaskName ()
120 throw (BuildException) newBuildException (getTaskName ()
132 throw (BuildException) newBuildException (getTaskName ()
141 throw (BuildException) newBuildException (getTaskName ()
161 throw (BuildException) newBuildException (getTaskName ()
  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 11 import org.apache.tools.ant.BuildException;
35 public void init () throws BuildException
43 public void execute () throws BuildException
50 throw (BuildException) newBuildException (getTaskName ()
55 throw (BuildException) newBuildException (getTaskName ()

Completed in 958 milliseconds

1 2 3 4 5