Searched refs:isError (Results 26 - 50 of 77) sorted by relevance

1234

/external/webkit/Source/WebCore/icu/unicode/
H A Dutf16.h292 * then isError is set to TRUE.
298 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
302 #define U16_APPEND(s, i, capacity, c, isError) { \
309 (isError)=TRUE; \
H A Dutf8.h302 * then isError is set to TRUE.
308 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
312 #define U8_APPEND(s, i, length, c, isError) { \
316 (i)=utf8_appendCharSafeBody(s, (int32_t)(i), (int32_t)(length), c, &(isError)); \
/external/webkit/Source/WebKit/mac/icu/unicode/
H A Dutf16.h292 * then isError is set to TRUE.
298 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
302 #define U16_APPEND(s, i, capacity, c, isError) { \
309 (isError)=TRUE; \
H A Dutf8.h302 * then isError is set to TRUE.
308 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
312 #define U8_APPEND(s, i, length, c, isError) { \
316 (i)=utf8_appendCharSafeBody(s, (int32_t)(i), (int32_t)(length), c, &(isError)); \
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebUIDelegatePrivate.idl56 HRESULT webViewAddMessageToConsole([in] IWebView* sender, [in] BSTR message, [in] int lineNumber, [in] BSTR url, [in] BOOL isError);
/external/srec/portable/src/
H A DPANSIFileImpl.c361 ESR_ReturnCode PANSIFileIsErrorSetImpl(PFile* self, ESR_BOOL* isError) argument
367 if (isError == NULL)
373 *isError = ferror(impl->value) != 0;
H A DPFile.c142 ESR_ReturnCode PFileIsErrorSet(PFile* self, ESR_BOOL* isError) argument
149 return self->isErrorSet(self, isError);
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue_generated_istype.cpp616 void tst_QScriptValue::isError() function in class:tst_QScriptValue
620 QCOMPARE(value.isError(), expected);
621 QCOMPARE(value.isError(), expected);
/external/junit/src/junit/swingui/
H A DTestSuitePanel.java69 else if (testModel.isError(t)) {
H A DTestTreeModel.java173 boolean isError(Test t) { method in class:TestTreeModel
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue.h114 bool isError() const;
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppengineimpl.cc363 XmppEngineImpl::IncomingEnd(bool isError) { argument
367 SignalError(isError ? ERROR_XML : ERROR_DOCUMENT_CLOSED, 0);
H A Dxmppengineimpl.h193 void IncomingEnd(bool isError);
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java93 boolean isError = false; // TODO: not sure.
106 isException, isError, isEnum, isAnnotation, isFinal, isIncluded, name, qualifiedName,
/external/icu4c/common/unicode/
H A Dutf8.h351 * then isError is set to TRUE.
357 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
361 #define U8_APPEND(s, i, capacity, c, isError) { \
372 (i)=utf8_appendCharSafeBody(s, (int32_t)(i), (int32_t)(capacity), c, &(isError)); \
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
H A Dtst_qscriptengine.cpp211 QVERIFY(!object.isError());
313 QVERIFY(ret.isError());
318 QVERIFY(ret.isError());
323 QVERIFY(!ret.isError());
627 QVERIFY(throwFun.call().isError());
675 QVERIFY(ret2.isError());
/external/icu4c/common/
H A Ducasemap.c153 UBool isError=FALSE; local
154 U8_APPEND(dest, destIndex, destCapacity, c, isError);
155 if(isError) {
/external/icu4c/io/
H A Dustdio.c294 UBool isError = FALSE; local
296 U16_APPEND(buf, idx, sizeof(buf)/sizeof(*buf), uc, isError);
297 if (isError) {
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
H A Dtst_qdeclarativewebview.cpp527 QTRY_VERIFY(component.isReady() || component.isError());
528 if (component.isError()) {
538 QVERIFY(!component.isError());
/external/valgrind/main/coregrind/
H A Dm_libcsignal.c399 vg_assert(!sr.isError);
437 vg_assert(sr.isError);
/external/webkit/Source/WebCore/bindings/js/
H A DScriptDebugServer.cpp273 bool isError = errorLine != -1; local
274 if (isError)
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionServer.js272 if (resultObject.isError())
468 status.isError = true;
H A DObjectPropertiesSection.js201 if (this.property.value.isError())
/external/icu4c/test/cintltst/
H A Dutf16tst.c674 UBool isError, expectIsError, wrongIsError; local
694 isError=FALSE;
696 U16_APPEND(buffer, length, LENGTHOF(buffer), c, isError);
697 wrongIsError|= isError!=expectIsError;
700 log_err("U16_APPEND did not set isError correctly\n");
H A Dutf8tst.c827 UBool isError, expectIsError, wrongIsError; local
847 isError=FALSE;
849 U8_APPEND(buffer, length, LENGTHOF(buffer), c, isError);
850 wrongIsError|= isError!=expectIsError;
853 log_err("U8_APPEND did not set isError correctly\n");

Completed in 2646 milliseconds

1234