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

/macosx-10.10.1/ICU-531.30/icuSources/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...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunistr.cpp206 UBool isError = FALSE; local
207 U16_APPEND(fUnion.fStackBuffer, i, US_STACKBUF_SIZE, ch, isError);
208 // We test isError so that the compiler does not complain that we don't.
209 // If isError then i==0 which is what we want anyway.
210 if(!isError) {
1288 UBool isError = FALSE; local
1289 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
1290 // We test isError so that the compiler does not complain that we don't.
1291 // If isError (srcChar is not a valid code point) then count==0 which means
1293 return doReplace(start, _length, buffer, 0, isError
1300 UBool isError = FALSE; local
1756 UBool isError = FALSE; local
[all...]
H A Ducasemap.cpp145 UBool isError=FALSE; local
146 U8_APPEND(dest, destIndex, destCapacity, c, isError);
147 if(isError) {
H A Dustrcase.cpp62 UBool isError=FALSE; local
63 U16_APPEND(dest, destIndex, destCapacity, c, isError);
64 if(isError) {
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dutf16.h304 * then isError is set to TRUE.
310 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
314 #define U16_APPEND(s, i, capacity, c, isError) { \
321 (isError)=TRUE; \
H A Dutf8.h459 * then isError is set to TRUE.
465 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
469 #define U8_APPEND(s, i, capacity, c, isError) { \
480 (i)=utf8_appendCharSafeBody(s, (i), (capacity), c, &(isError)); \
/macosx-10.10.1/JavaScriptCore-7600.1.17/icu/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; \
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)); \
/macosx-10.10.1/WTF-7600.1.24/icu/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; \
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)); \
H A Dunistr.h4024 UBool isError = FALSE; local
4025 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
4321 UBool isError = FALSE; local
4322 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
/macosx-10.10.1/WebKit-7600.1.25/mac/icu/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; \
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)); \
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DScriptDebugServer.cpp259 bool isError = errorLine != -1; local
260 if (isError)
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIWebUIDelegatePrivate.idl56 HRESULT webViewAddMessageToConsole([in] IWebView* sender, [in] BSTR message, [in] int lineNumber, [in] BSTR url, [in] BOOL isError);
/macosx-10.10.1/ICU-531.30/icuSources/io/
H A Dustdio.c294 UBool isError = FALSE; local
296 U16_APPEND(buf, idx, sizeof(buf)/sizeof(*buf), uc, isError);
297 if (isError) {
H A Duscanf_p.c1212 UBool isError = FALSE; local
1214 U16_APPEND(alias, idx, chLeft, c, isError);
1215 if (isError) {
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dutf16tst.c742 UBool isError, expectIsError, wrongIsError; local
762 isError=FALSE;
764 U16_APPEND(buffer, length, LENGTHOF(buffer), c, isError);
765 wrongIsError|= isError!=expectIsError;
768 log_err("U16_APPEND did not set isError correctly\n");
H A Dutf8tst.c1003 UBool isError, expectIsError, wrongIsError; local
1023 isError=FALSE;
1025 U8_APPEND(buffer, length, LENGTHOF(buffer), c, isError);
1026 wrongIsError|= isError!=expectIsError;
1029 log_err("U8_APPEND did not set isError correctly\n");
H A Dcitertst.c783 UBool isError = FALSE; local
854 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError);
855 (void)isError; /* Suppress set but not used warning. */
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Protocol/
H A DRemoteObject.js362 isError: function()
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Dwrtxml.cpp333 UBool isError = FALSE; local
334 U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError);
335 if(isError){
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtransrt.cpp1044 UBool isError = FALSE; local
1046 U8_APPEND(bufForOneChar, destIdx, (int32_t)sizeof(bufForOneChar), c, isError);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DMain.js1508 WebInspector.createMessageTextView = function(message, isError)
1512 if (isError)
/macosx-10.10.1/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c12798 int isError; /* Error code returned by the function. */ member in struct:sqlite3_context
130944 int isError = 0; local
[all...]

Completed in 566 milliseconds