HomeSort by relevance Sort by last modified time
    Searched refs:StreamException (Results 1 - 17 of 17) sorted by null

  /sdk/common/src/com/android/io/
IAbstractFile.java 32 * @throws StreamException
34 InputStream getContents() throws StreamException;
39 * @throws StreamException
41 void setContents(InputStream source) throws StreamException;
45 * @throws StreamException
47 OutputStream getOutputStream() throws StreamException;
StreamException.java 23 public class StreamException extends Exception {
33 public StreamException(Exception e, IAbstractFile file) {
37 public StreamException(Exception e, IAbstractFile file, Error error) {
FileWrapper.java 89 public InputStream getContents() throws StreamException {
93 throw new StreamException(e, this, StreamException.Error.FILENOTFOUND);
98 public void setContents(InputStream source) throws StreamException {
109 throw new StreamException(e, this);
115 throw new StreamException(e, this);
122 public OutputStream getOutputStream() throws StreamException {
126 throw new StreamException(e, this);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFileWrapper.java 21 import com.android.io.StreamException;
47 public InputStream getContents() throws StreamException {
51 StreamException.Error error = StreamException.Error.DEFAULT;
53 error = StreamException.Error.OUTOFSYNC;
55 throw new StreamException(e, this, error);
60 public void setContents(InputStream source) throws StreamException {
64 throw new StreamException(e, this);
69 public OutputStream getOutputStream() throws StreamException {
78 } catch (StreamException e)
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifest.java 21 import com.android.io.StreamException;
102 * @throws StreamException If any error happens when reading the manifest.
105 throws XPathExpressionException, StreamException {
119 * @throws StreamException If any error happens when reading the manifest.
122 throws XPathExpressionException, StreamException {
140 * @throws StreamException If any error happens when reading the manifest.
143 throws XPathExpressionException, StreamException {
162 * @throws StreamException If any error happens when reading the manifest.
165 throws XPathExpressionException, StreamException {
186 * @throws StreamException If any error happens when reading the manifest
    [all...]
AndroidManifestParser.java 21 import com.android.io.StreamException;
587 * @throws StreamException
596 throws SAXException, IOException, StreamException, ParserConfigurationException {
624 * @throws StreamException
629 throws SAXException, IOException, StreamException, ParserConfigurationException {
634 throws SAXException, IOException, StreamException, ParserConfigurationException {
650 * @throws StreamException
656 throws SAXException, IOException, StreamException, ParserConfigurationException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidManifestHelper.java 24 import com.android.io.StreamException;
56 * @throws StreamException
64 StreamException, ParserConfigurationException {
121 } catch (StreamException e) {
  /sdk/ide_common/src/com/android/ide/common/resources/
IdGeneratingResourceFile.java 24 import com.android.io.StreamException;
152 } catch (StreamException e) {
MultiResourceFile.java 22 import com.android.io.StreamException;
174 } catch (StreamException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 31 import com.android.io.StreamException;
349 * Handles a {@link StreamException} by logging the info and marking the project.
354 protected void handleStreamException(StreamException e) {
363 if (e.getError() == StreamException.Error.OUTOFSYNC) {
370 if (e.getError() == StreamException.Error.OUTOFSYNC) {
PreCompilerBuilder.java 40 import com.android.io.StreamException;
396 } catch (StreamException e) {
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectPropertiesWorkingCopy.java 21 import com.android.io.StreamException;
125 * @throws StreamException
127 public synchronized void save() throws IOException, StreamException {
ProjectProperties.java 27 import com.android.io.StreamException;
416 } catch (StreamException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 39 import com.android.io.StreamException;
670 } catch (StreamException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 33 import com.android.io.StreamException;
536 } catch (StreamException e) {
553 * @throws StreamException
560 throws CoreException, IOException, StreamException {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 40 import com.android.io.StreamException;
358 * @throws StreamException
361 throws IOException, StreamException {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 47 import com.android.io.StreamException;
671 } catch (StreamException e) {
    [all...]

Completed in 1009 milliseconds