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

1 2 3 4

  /libcore/luni/src/main/java/org/w3c/dom/
DOMErrorHandler.java 36 * the <code>handleError</code> method.
37 * @return If the <code>handleError</code> method returns
43 public boolean handleError(DOMError error);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
ErrorListener.java 44 public void handleError( S source, Throwable t );
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
SystemListener.java 90 public void handleError(String errorMsg, Throwable t);
  /external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
error_test.cpp 20 EXPECT_CALL(mDirectiveHandler, handleError(pp::SourceLocation(0, 1), ""));
34 handleError(pp::SourceLocation(0, 1), " foo"));
48 handleError(pp::SourceLocation(0, 1), " foo bar"));
72 handleError(pp::SourceLocation(0, 1), " foo bar"));
87 handleError(pp::SourceLocation(0, 1), " foo"));
MockDirectiveHandler.h 16 MOCK_METHOD2(handleError,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLErrors.h 45 void handleError(ErrorType, const char* message, int lineNumber, int columnNumber);
46 void handleError(ErrorType, const char* message, TextPosition);
XMLErrors.cpp 52 void XMLErrors::handleError(ErrorType type, const char* message, int lineNumber, int columnNumber)
54 handleError(type, message, TextPosition(OrdinalNumber::fromOneBasedInt(lineNumber), OrdinalNumber::fromOneBasedInt(columnNumber)));
57 void XMLErrors::handleError(ErrorType type, const char* message, TextPosition position)
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
DirectiveHandlerBase.h 26 virtual void handleError(const SourceLocation& loc,
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorHandlerImpl.java 43 * Implementation of DOMErrorHandler.handleError that
47 public boolean handleError(DOMError error) {
DOM3TreeWalker.java 786 .handleError(new DOMErrorImpl(
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
DirectiveHandler.h 26 virtual void handleError(const pp::SourceLocation& loc,
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
ConnectorAdapter.java 145 protected void handleError( Exception e )
150 errorHandler.handleError( this, e );
179 handleError( e );
200 handleError( e );
DefaultClient.java 339 protected void handleError( Throwable t )
353 l.handleError( this, t );
420 public void handleError( Object source, Throwable t )
425 DefaultClient.this.handleError( t );
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 79 handleError(exception, exception.getLineNumber());
89 handleError(exception, exception.getLineNumber());
118 public void handleError(Exception exception, int lineNumber) {
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF8.h 51 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
TextCodecUTF8.cpp 160 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError)
225 handleError(destination, stopOnError, sawError);
240 handleError(destination, stopOnError, sawError);
251 handleError(destination, stopOnError, sawError);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java 99 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
101 // listener.handleError() has requested the
125 listener.handleError("Failed to create display", ex);
136 listener.handleError("An OpenGL error has occured!", ex);
168 listener.handleError("Error while swapping buffers", ex);
LwjglOffscreenBuffer.java 78 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
90 listener.handleError("Failed to create display", ex);
103 listener.handleError("An OpenGL error has occured!", ex);
119 listener.handleError("Failed to restore pbuffer content", ex);
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorMonitor.java 39 * Implementation of DOMErrorHandler.handleError that
43 public boolean handleError(DOMError error) {
  /development/apps/Development/src/com/android/development/
AppHwPref.java 65 handleError("Null package name", true);
76 handleError("Failed retrieving packageInfo for pkg:"+pkgName, true);
112 void handleError(String errMsg, boolean finish) {
168 handleError("Invalid HardwareConfigurationObject", true);
187 handleError("Invalid HardwareConfigurationObject", true);
206 handleError("Invalid HardwareConfigurationObject", true);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 588 handleError(handler, XSLTErrorResources.INVALID_TCHAR, new Object[] {name, value},null);
600 handleError(handler, XSLTErrorResources.INVALID_TCHAR, new Object[] {name, value},null);
647 handleError(handler, XSLTErrorResources.INVALID_ENUM,new Object[]{name, value, enumNamesList.toString() },null);
712 handleError(handler,XSLTErrorResources.INVALID_ENUM,new Object[]{name, value, enumNamesList.toString() },null);
722 handleError(handler,XSLTErrorResources.INVALID_ENUM,new Object[]{name, value, enumNamesList.toString() },ie);
731 handleError(handler,XSLTErrorResources.INVALID_ENUM,new Object[]{name, value, enumNamesList.toString() },re);
799 handleError(handler,XSLTErrorResources.INVALID_NMTOKEN, new Object[] {name,value},null);
810 handleError(handler,XSLTErrorResources.INVALID_NMTOKEN, new Object[] {name,value},null);
894 handleError(handler,XSLTErrorResources.INVALID_NUMBER, new Object[] {name, value}, nfe);
908 handleError(handler,XSLTErrorResources.INVALID_NUMBER, new Object[] {name, value}, nfe)
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
AddVoicemailActivity.java 119 handleError(e);
170 handleError(new Exception("Failed to do recording. Error Code: " + resultCode));
181 private void handleError(Exception e) {
224 handleError(error);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java 55 public void handleError(String errorMsg, Throwable t) {
56 listener.handleError(errorMsg, t);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
options.js 51 req.onerror = handleError;
56 function handleError() {
65 handleError();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
options.js 51 req.onerror = handleError;
56 function handleError() {
65 handleError();

Completed in 730 milliseconds

1 2 3 4