Searched refs:isError (Results 1 - 25 of 77) sorted by relevance

1234

/external/sqlite/android/
H A DPhonebookIndex.h37 * @param isError will be set to TRUE if an error occurs
42 UBool * isError);
H A DPhonebookIndex.cpp122 UBool * isError)
125 *isError = TRUE;
129 *isError = FALSE;
136 *isError = TRUE;
121 GetPhonebookIndex(UCharIterator * iter, const char * locale, UChar * out, int32_t size, UBool * isError) argument
H A Dsqlite3_android.cpp98 UBool isError = FALSE; local
100 uint32_t len = android::GetPhonebookIndex(&iter, locale, index, sizeof(index), &isError);
101 if (isError) {
109 U8_APPEND(out, outlen, sizeof(out), index[i], isError);
110 if (isError) {
/external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
H A DUnicodeBrew.cpp77 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) argument
93 *isError = !!remainingCharacters;
100 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
116 *isError = !!remainingCharacters;
123 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
125 *isError = false;
127 *isError = true;
H A DUnicodeBrew.h120 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
122 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
129 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
/external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
H A DUnicodeWinCE.cpp85 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) argument
102 *isError = !!remainingCharacters;
109 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) argument
126 *isError = !!remainingCharacters;
133 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) argument
135 *isError = false;
137 *isError = true;
H A DUnicodeWinCE.h138 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
139 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
140 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
/external/icu4c/samples/ustring/
H A Dustring.cpp106 UBool isError; local
125 isError=FALSE;
127 U16_APPEND(input, i, LENGTHOF(input), 0x0062, isError);
201 UBool isError; local
216 isError=FALSE;
217 for(i=j=0; j<LENGTHOF(buffer) && !isError; /* U16_NEXT post-increments */) {
223 U16_APPEND(buffer, j, LENGTHOF(buffer), c, isError);
227 isError=FALSE;
228 for(i=j=0; j<LENGTHOF(buffer) && !isError; /* U16_NEXT post-increments */) {
234 U16_APPEND(buffer, j, LENGTHOF(buffer), c, isError);
[all...]
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCoderResultTest.java53 assertFalse(CoderResult.OVERFLOW.isError());
73 assertFalse(CoderResult.UNDERFLOW.isError());
94 * Test method isError().
98 assertFalse(CoderResult.UNDERFLOW.isError());
99 assertFalse(CoderResult.OVERFLOW.isError());
100 assertTrue(CoderResult.malformedForLength(1).isError());
101 assertTrue(CoderResult.unmappableForLength(1).isError());
H A DUTF16CharsetDecoderTest.java99 true).isError());
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.h80 void isError();
/external/webkit/Source/WebCore/inspector/front-end/
H A DRemoteObject.js105 isError: function()
268 isError: function()
/external/srec/portable/include/
H A DPANSIFileImpl.h107 PORTABLE_API ESR_ReturnCode PANSIFileIsErrorSetImpl(PFile* self, ESR_BOOL* isError);
H A DPFile.h186 * @param isError [out] True if the error-flag is set
189 ESR_ReturnCode(*isErrorSet)(struct PFile_t* self, ESR_BOOL* isError);
349 * @param isError [out] True if the error-flag is set
352 PORTABLE_API ESR_ReturnCode PFileIsErrorSet(PFile* self, ESR_BOOL* isError);
/external/v8/test/mjsunit/
H A Dmirror-error.js58 assertTrue(mirror.isError());
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptengine_p.h89 inline bool isError(JSValueRef value) const;
242 bool QScriptEnginePrivate::isError(JSValueRef value) const function in class:QScriptEnginePrivate
244 return m_originalGlobalObject.isError(value);
H A Dqscriptoriginalglobalobject_p.h48 inline bool isError(JSValueRef value) const;
189 inline bool QScriptOriginalGlobalObject::isError(JSValueRef value) const function in class:QScriptOriginalGlobalObject
H A Dqscriptvalue.cpp310 bool QScriptValue::isError() const function in class:QScriptValue
312 return d_ptr->isError();
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp69 void isError();
285 void tst_QScriptValue::isError() function in class:tst_QScriptValue
289 value.isError();
/external/srec/portable/src/
H A DPFileWrap.c185 ESR_ReturnCode PFileIsErrorSet ( PFile *self, ESR_BOOL *isError )
192 *isError = ESR_TRUE;
194 *isError = ESR_FALSE;
/external/icu4c/common/unicode/
H A Dutf16.h301 * then isError is set to TRUE.
307 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
311 #define U16_APPEND(s, i, capacity, c, isError) { \
318 (isError)=TRUE; \
/external/webkit/Source/JavaScriptCore/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/JavaScriptGlue/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)); \

Completed in 390 milliseconds

1234