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

  /external/doclava/src/com/google/doclava/apicheck/
ApiParseException.java 19 public final class ApiParseException extends Exception {
23 public ApiParseException() {
26 public ApiParseException(String message) {
30 public ApiParseException(String message, Exception cause) {
32 if (cause instanceof ApiParseException) {
33 this.line = ((ApiParseException)cause).line;
37 public ApiParseException(String message, int line) {
ApiFile.java 36 public static ApiInfo parseApi(String filename, InputStream stream) throws ApiParseException {
64 throw new ApiParseException("Error reading API file", ex);
78 throw new ApiParseException("expected package got " + token, tokenizer.getLine());
89 throws ApiParseException {
100 throw new ApiParseException("expected '{' got " + token, tokenizer.getLine());
114 throws ApiParseException {
160 throw new ApiParseException("missing class or interface. got: " + token, tokenizer.getLine());
196 throw new ApiParseException("expected {", tokenizer.getLine());
215 throw new ApiParseException("expected ctor, enum_constant, field or method", tokenizer.getLine());
223 throws ApiParseException {
    [all...]
ApiCheck.java 116 } catch (ApiParseException e) {
134 public static ApiInfo parseApi(String filename) throws ApiParseException {
141 throw new ApiParseException("Could not open file for parsing: " + filename, e);
145 } catch (ApiParseException ignored) {
159 throw new ApiParseException("Could not open file for parsing: " + filename, e);
163 } catch (ApiParseException ignored) {
180 public ApiInfo parseApi(URL url) throws ApiParseException {
186 throw new ApiParseException("Could not open stream for parsing: " + url, e);
190 } catch (ApiParseException ignored) {
200 throw new ApiParseException("Could not open stream for parsing: " + url, e)
    [all...]
XmlApiFile.java 48 public static ApiInfo parseApi(InputStream xmlStream) throws ApiParseException {
60 throw new ApiParseException("Error parsing API", e);
185 } catch (ApiParseException ex) {
  /external/doclava/src/com/google/doclava/
FederatedSite.java 21 import com.google.doclava.apicheck.ApiParseException;
36 public FederatedSite(String name, URL baseUrl) throws ApiParseException {
52 public FederatedSite(String name, URL baseUrl, String api) throws ApiParseException {
FederationTagger.java 19 import com.google.doclava.apicheck.ApiParseException;
81 } catch (ApiParseException e) {
FieldInfo.java 19 import com.google.doclava.apicheck.ApiParseException;
216 public static String javaUnescapeString(String str) throws ApiParseException {
300 throw new ApiParseException("bad escape sequence: '" + c + "' at pos " + i + " in: \""
313 throw new ApiParseException("unfinished escape sequence: " + str);
SinceTagger.java 22 import com.google.doclava.apicheck.ApiParseException;
66 } catch (ApiParseException e) {

Completed in 825 milliseconds