HomeSort by relevance Sort by last modified time
    Searched defs:isError (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/angle/src/libGLESv2/
Error.h 28 bool isError() const { return (mCode != GL_NO_ERROR); }
  /external/chromium_org/third_party/icu/source/common/
ucasemap.cpp 145 UBool isError=FALSE;
146 U8_APPEND(dest, destIndex, destCapacity, c, isError);
147 if(isError) {
ustrcase.cpp 62 UBool isError=FALSE;
63 U16_APPEND(dest, destIndex, destCapacity, c, isError);
64 if(isError) {
unistr.cpp 206 UBool isError = FALSE;
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) {
    [all...]
  /external/chromium_org/third_party/icu/source/samples/ustring/
ustring.cpp 106 UBool isError;
125 isError=FALSE;
127 U16_APPEND(input, i, LENGTHOF(input), 0x0062, isError);
201 UBool isError;
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/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_icu.c 134 int isError = 0;
136 U16_APPEND(pCsr->aChar, iOut, nChar, c, isError);
137 if( isError ){
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_icu.c 134 int isError = 0;
136 U16_APPEND(pCsr->aChar, iOut, nChar, c, isError);
137 if( isError ){
  /external/icu/icu4c/source/common/
ucasemap.cpp 145 UBool isError=FALSE;
146 U8_APPEND(dest, destIndex, destCapacity, c, isError);
147 if(isError) {
ustrcase.cpp 62 UBool isError=FALSE;
63 U16_APPEND(dest, destIndex, destCapacity, c, isError);
64 if(isError) {
unistr.cpp 206 UBool isError = FALSE;
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) {
    [all...]
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 106 UBool isError;
125 isError=FALSE;
127 U16_APPEND(input, i, LENGTHOF(input), 0x0062, isError);
201 UBool isError;
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/chromium_org/third_party/icu/source/io/
ustdio.c 294 UBool isError = FALSE;
296 U16_APPEND(buf, idx, sizeof(buf)/sizeof(*buf), uc, isError);
297 if (isError) {
uscanf_p.c     [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
utf16tst.c 742 UBool isError, expectIsError, wrongIsError;
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");
utf8tst.c     [all...]
  /external/icu/icu4c/source/io/
ustdio.c 294 UBool isError = FALSE;
296 U16_APPEND(buf, idx, sizeof(buf)/sizeof(*buf), uc, isError);
297 if (isError) {
  /external/icu/icu4c/source/test/cintltst/
utf16tst.c 742 UBool isError, expectIsError, wrongIsError;
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");
utf8tst.c     [all...]
citertst.c 783 UBool isError = FALSE;
854 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError);
855 (void)isError; /* Suppress set but not used warning. */
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 57 private boolean isError;
133 isError = false;
263 return isError;
380 isError = true;
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
HttpUrlConnectionUrlRequest.java 263 mResponseStream = isError(mHttpStatusCode) ? mConnection
453 private static boolean isError(int statusCode) {
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 472 static bool isError(const Record &Diag) {
519 if (isError(R)) {
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
transrt.cpp     [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtxml.cpp 323 UBool isError = FALSE;
324 U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError);
325 if(isError){
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbeInt.h 249 int isError; /* Error code returned by the function. */

Completed in 570 milliseconds

1 2