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

1 2 3 4 5 6 7 8

  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockReader.java 28 import org.xml.sax.ErrorHandler;
49 private ErrorHandler errorHandler;
73 public ErrorHandler getErrorHandler() {
74 return errorHandler;
107 public void setErrorHandler(ErrorHandler handler) {
108 this.errorHandler = handler;
DoNothingXMLReader.java 22 import org.xml.sax.ErrorHandler;
43 public ErrorHandler getErrorHandler() {
70 public void setErrorHandler(ErrorHandler handler) {
NoAccessXMLReader.java 22 import org.xml.sax.ErrorHandler;
43 public ErrorHandler getErrorHandler() {
70 public void setErrorHandler(ErrorHandler handler) {
NoSubclassXMLReader.java 22 import org.xml.sax.ErrorHandler;
43 public ErrorHandler getErrorHandler() {
70 public void setErrorHandler(ErrorHandler handler) {
NoInstanceXMLReader.java 22 import org.xml.sax.ErrorHandler;
46 public ErrorHandler getErrorHandler() {
73 public void setErrorHandler(ErrorHandler handler) {
DoNothingParser.java 22 import org.xml.sax.ErrorHandler;
49 public void setErrorHandler(ErrorHandler handler) {
NoAccessParser.java 22 import org.xml.sax.ErrorHandler;
49 public void setErrorHandler(ErrorHandler handler) {
NoInstanceParser.java 22 import org.xml.sax.ErrorHandler;
52 public void setErrorHandler(ErrorHandler handler) {
NoSubclassParser.java 22 import org.xml.sax.ErrorHandler;
48 public void setErrorHandler(ErrorHandler handler) {
  /external/objenesis/tck/src/org/objenesis/tck/
CandidateLoader.java 34 private final ErrorHandler errorHandler;
39 public static interface ErrorHandler {
52 public static class LoggingErrorHandler implements CandidateLoader.ErrorHandler {
72 * @param errorHandler Handler called in case of error
74 public CandidateLoader(TCK tck, ClassLoader classloader, ErrorHandler errorHandler) {
77 this.errorHandler = errorHandler;
125 errorHandler.classNotFound(key)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 23 from handler import ContentHandler, ErrorHandler
29 def parse(source, handler, errorHandler=ErrorHandler()):
32 parser.setErrorHandler(errorHandler)
35 def parseString(string, handler, errorHandler=ErrorHandler()):
41 if errorHandler is None:
42 errorHandler = ErrorHandler()
45 parser.setErrorHandler(errorHandler)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 23 from handler import ContentHandler, ErrorHandler
29 def parse(source, handler, errorHandler=ErrorHandler()):
32 parser.setErrorHandler(errorHandler)
35 def parseString(string, handler, errorHandler=ErrorHandler()):
41 if errorHandler is None:
42 errorHandler = ErrorHandler()
45 parser.setErrorHandler(errorHandler)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
IsolatedFileSystem.js 167 domFileSystem.root.getDirectory(path, null, dirEntryLoaded.bind(this), errorHandler.bind(this));
206 function errorHandler(error)
232 domFileSystem.root.getFile(path, null, fileEntryLoaded.bind(this), errorHandler.bind(this));
241 fileEntry.remove(fileEntryRemoved.bind(this), errorHandler.bind(this));
252 function errorHandler(error)
274 domFileSystem.root.getFile(path, null, fileEntryLoaded, errorHandler);
282 entry.getMetadata(successHandler, errorHandler);
296 function errorHandler(error)
318 domFileSystem.root.getFile(path, null, fileEntryLoaded, errorHandler.bind(this));
327 entry.file(fileLoaded, errorHandler.bind(this))
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
errorhandler.py 28 class ErrorHandler(object):
32 if self.__class__ == ErrorHandler:
33 raise NotImplementedError('class ErrorHandler is abstract')
36 """Notifies this ErrorHandler that subsequent errors are in filename.
erroraccumulator.py 23 from closure_linter.common import errorhandler namespace
26 class ErrorAccumulator(errorhandler.ErrorHandler):
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
errorhandler.py 28 class ErrorHandler(object):
32 if self.__class__ == ErrorHandler:
33 raise NotImplementedError('class ErrorHandler is abstract')
36 """Notifies this ErrorHandler that subsequent errors are in filename.
erroraccumulator.py 23 from closure_linter.common import errorhandler namespace
26 class ErrorAccumulator(errorhandler.ErrorHandler):
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Parser.java 31 public interface ErrorHandler {
33 * Report an error to the ErrorHandler.
49 * @param errorHandler Error callback to be called on any error.
56 void parse(Reader reader, Data output, ErrorHandler errorHandler, ResourceLoader resourceLoader,
DefaultHdfParser.java 35 public void parse(Reader reader, Data output, ErrorHandler errorHandler,
45 parseLine(line, output, context, lineReader, dataFileName, errorHandler);
50 LineNumberReader lineReader, String dataFileName, ErrorHandler errorHandler)
77 if (errorHandler != null) {
78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax");
  /external/llvm/lib/Support/
ErrorHandling.cpp 36 static fatal_error_handler_t ErrorHandler = 0;
43 assert(!ErrorHandler && "Error handler already registered!\n");
44 ErrorHandler = handler;
49 ErrorHandler = 0;
65 if (ErrorHandler) {
66 ErrorHandler(ErrorHandlerUserData, Reason.str(), GenCrashDiag);
89 // This code intentionally doesn't call the ErrorHandler callback, because
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 23 class ErrorHandler{
25 ErrorHandler(EGLNativeDisplayType dpy);
26 ~ErrorHandler();
52 int ErrorHandler::s_lastErrorCode = 0;
53 android::Mutex ErrorHandler::s_lock;
55 ErrorHandler::ErrorHandler(EGLNativeDisplayType dpy){
62 ErrorHandler::~ErrorHandler(){
68 int ErrorHandler::errorHandlerProc(EGLNativeDisplayType dpy,XErrorEvent* event)
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 25 import org.xml.sax.ErrorHandler;
60 * <tt>null</tt> {@link ErrorHandler} and
74 * <p>The reset <code>Validator</code> is not guaranteed to have the same {@link LSResourceResolver} or {@link ErrorHandler}
76 * <code>LSResourceResolver</code> and <code>ErrorHandler</code>.</p>
89 * @see #setErrorHandler(ErrorHandler)
151 * {@link ErrorHandler}.
155 * but none of them were fatal and the {@link ErrorHandler} didn't
182 * If the {@link ErrorHandler} throws a {@link SAXException} or
183 * if a fatal error is found and the {@link ErrorHandler} returns
200 * Sets the {@link ErrorHandler} to receive errors encountere
    [all...]
ValidatorHandler.java 23 import org.xml.sax.ErrorHandler;
117 * <tt>null</tt> {@link ErrorHandler} and
162 * from the {@link ValidatorHandler}. The {@link ErrorHandler}
188 * Sets the {@link ErrorHandler} to receive errors encountered
193 * during a validation. When an {@link ErrorHandler} is set,
195 * to the {@link ErrorHandler}.
201 * validation by returning normally from the {@link ErrorHandler}
204 * If any {@link Throwable} is thrown from an {@link ErrorHandler},
211 * {@link ErrorHandler}.
214 * When the {@link ErrorHandler} is null, the implementation wil
    [all...]
SchemaFactory.java 27 import org.xml.sax.ErrorHandler;
110 * <code>null</code> {@link ErrorHandler} and
294 * {@link ErrorHandler#fatalError(org.xml.sax.SAXParseException)}.
295 * See {@link #setErrorHandler(ErrorHandler errorHandler)}.
382 * Sets the {@link ErrorHandler} to receive errors encountered
387 * during schema parsing. When an {@link ErrorHandler} is set,
389 * to the {@link ErrorHandler}.
395 * processing by returning normally from the {@link ErrorHandler}
399 * is thrown from an {@link ErrorHandler},
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
background.html 17 var errorHandler = new ProxyErrorHandler();

Completed in 1326 milliseconds

1 2 3 4 5 6 7 8