HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 101 - 125 of 937) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/JavaScriptCore/runtime/
Error.cpp 25 #include "Error.h"
41 JSObject* Error::create(ExecState* exec, ErrorType type, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL)
48 name = "Evaluation error";
52 name = "Range error";
56 name = "Reference error";
60 name = "Syntax error";
64 name = "Type error";
68 name = "URI error";
72 name = "Error";
83 JSObject* error = construct(exec, constructor, constructType, constructData, args) local
108 JSObject* error = Error::create(exec, type, UString(), -1, -1, UString()); local
115 JSObject* error = Error::create(exec, type, message, -1, -1, UString()); local
122 JSObject* error = Error::create(exec, type, message, -1, -1, UString()); local
129 JSObject* error = Error::create(exec, type, message, line, sourceID, sourceURL); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
maximum-age.js 11 var error; variable
23 error = e;
24 shouldBe('error.code', 'mockCode');
25 shouldBe('error.message', 'mockMessage');
36 testFailed('Error callback invoked unexpectedly');
48 testFailed('Error callback invoked unexpectedly');
54 // Update the mock service to report an error.
56 // The maximumAge is non-zero, so we expect the cached position, not the error from the service.
61 testFailed('Error callback invoked unexpectedly');
67 // The default maximumAge is zero, so we expect the error from the service
    [all...]
watch.js 11 var error; variable
22 error = e;
23 shouldBe('error.code', 'mockCode');
24 shouldBe('error.message', 'mockMessage');
58 testFailed('Error callback invoked unexpectedly');
  /external/webkit/WebCore/loader/
CachedCSSStyleSheet.cpp 118 void CachedCSSStyleSheet::error() function in class:WebCore::CachedCSSStyleSheet
CachedScript.cpp 108 void CachedScript::error() function in class:WebCore::CachedScript
  /external/webkit/WebCore/platform/graphics/gtk/
FontCustomPlatformData.cpp 48 int error; local
52 error = FT_Init_FreeType(&library);
53 if (error) {
60 error = FT_New_Memory_Face(library, reinterpret_cast<const FT_Byte*>(buffer->data()), buffer->size(), 0, &face);
61 if (error)
  /external/webkit/WebCore/storage/
IDBRequest.h 54 IDBDatabaseError* error() const { return m_error.get(); } function in class:WebCore::IDBRequest
58 DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
  /external/webkit/WebKit/android/jni/
MockGeolocation.cpp 64 RefPtr<PositionError> error = PositionError::create(codeEnum, messageString); local
65 GeolocationServiceMock::setError(error.release());
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
updatechangelogswithreviewer.py 35 from webkitpy.webkit_logging import log, error namespace
  /external/webkit/WebKitTools/Scripts/webkitpy/
webkit_logging.py 39 def error(string): function
40 log("ERROR: %s" % string)
  /external/webkit/WebKitTools/WebKitLauncherWin/
WebKitLauncherWin.cpp 50 LONG error = RegOpenKeyEx(HKEY_LOCAL_MACHINE, key, 0, KEY_READ, &applePathKey); local
51 if (error != ERROR_SUCCESS)
  /frameworks/base/core/java/android/net/http/
LoggingEventHandler.java 78 public void error(int id, String description) { method in class:LoggingEventHandler
80 HttpLog.v("LoggingEventHandler: error() called Id:" + id +
85 public boolean handleSslErrorRequest(SslError error) {
87 HttpLog.v("LoggingEventHandler: handleSslErrorRequest():" + error);
  /frameworks/base/core/java/android/webkit/
ContentLoader.java 67 mLoadListener.error(
79 mLoadListener.error(EventHandler.FILE_NOT_FOUND_ERROR, errString(ex));
84 mLoadListener.error(EventHandler.FILE_ERROR, errString(ex));
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
aacenc_core.c 62 Word32 error = 0; local
68 error=1;
71 if (!error) {
75 if (!error) {
76 error = InitElementInfo (config.nChannelsOut,
80 if (!error) {
84 if (!error) {
89 error = psyMainInit(&hAacEnc->psyKernel,
98 if(!error) {
103 if (!error) {
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
OMX_JpegDec_Thread.c 84 OMX_U32 error = 0; local
125 OMX_TRACE5(pComponentPrivate->dbg, "Error in Select\n");
131 "Error from COmponent Thread in select");
140 read (pComponentPrivate->nCmdPipe[0], &eCmd, sizeof (eCmd)); /*Manage error from any read and write*/
157 error = HandleCommandJpegDec (pComponentPrivate, nParam1);
158 OMX_PRINT2(pComponentPrivate->dbg, "after called handlecommand from JPEGDEC (%lu)\n", error);
159 if (error != OMX_ErrorNone) {
163 error,
173 error = DisablePortJpegDec(pComponentPrivate, nParam1);
174 if(error != OMX_ErrorNone)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorMonitor.java 40 * adds copy of error to list for later retrieval.
43 public boolean handleError(DOMError error) {
44 errors.add(new DOMErrorImpl(error));
60 DOMError error = (DOMError) iter.next(); local
61 if (error.getSeverity() >= severity) {
62 testCase.fail(id + error.getMessage());
  /libcore/luni/src/main/java/java/util/logging/
ErrorManager.java 21 * An error reporting facility for {@link Handler} implementations to record any
22 * error that may happen during logging. {@code Handlers} should report errors
29 * The error code indicating a failure that does not fit in any of the
35 * The error code indicating a failure when writing to an output stream.
40 * The error code indicating a failure when flushing an output stream.
45 * The error code indicating a failure when closing an output stream.
50 * The error code indicating a failure when opening an output stream.
55 * The error code indicating a failure when formatting the error messages.
65 * An indicator for determining if the error manager has been called a
92 public void error(String message, Exception exception, int errorCode) { method in class:ErrorManager
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 60 handler.error(msg, new SAXException(msg));
67 handler.error(msg, new SAXException(msg));
ProcessorNamespaceAlias.java 84 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT, null, null);
90 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX, new Object[] {prefix}, null);
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemApplyImport.java 76 transformer.getMsgMgr().error(this,
89 transformer.getMsgMgr().error(this,
105 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemComment.java 134 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemText.java 139 error(XSLTErrorResources.ER_CANNOT_ADD, method
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
MsgMgr.java 32 * This class will manage error messages, warning messages, and other types of
58 * the error condition is severe enough to halt processing.
85 * the error condition is severe enough to halt processing.
101 * the error condition is severe enough to halt processing.
119 * the error condition is severe enough to halt processing.
138 * the error condition is severe enough to halt processing.
157 * Tell the user of an error, and probably throw an
162 * the error condition is severe enough to halt processing.
166 public void error(SourceLocator srcLctr, String msg) throws TransformerException
185 * Tell the user of an error, and probably throw a
195 public void error(SourceLocator srcLctr, String msg) throws TransformerException method in class:MsgMgr
197 error(srcLctr, null, null, msg, null); method
212 public void error(SourceLocator srcLctr, String msg, Object[] args) throws TransformerException method in class:MsgMgr
214 error(srcLctr, null, null, msg, args); method
229 public void error(SourceLocator srcLctr, String msg, Exception e) throws TransformerException method in class:MsgMgr
231 error(srcLctr, msg, null, e); method
247 public void error(SourceLocator srcLctr, String msg, Object args[], Exception e) throws TransformerException method in class:MsgMgr
278 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) method in class:MsgMgr
281 error(srcLctr, styleNode, sourceNode, msg, null); method
298 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[]) method in class:MsgMgr
    [all...]
  /libcore/luni/src/main/native/
java_util_regex_Pattern.cpp 35 static void throwPatternSyntaxException(JNIEnv* env, UErrorCode status, jstring pattern, UParseError error) {
40 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset);
52 UParseError error; local
53 error.offset = -1;
57 RegexPattern* result = RegexPattern::compile(regexString, flags, error, status);
59 throwPatternSyntaxException(env, status, javaRegex, error);
  /system/extras/libpagemap/
pm_kernel.c 30 int error; local
41 error = errno;
43 return error;
48 error = errno;
51 return error;
67 int error; local
87 error = errno;
90 return error;
105 error = errno;
107 return error;
    [all...]

Completed in 416 milliseconds

1 2 3 45 6 7 8 91011>>