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

1 2 3 4

  /external/smack/src/com/kenai/jbosh/
BOSHClientConnEvent.java 160 public boolean isError() {
166 * guaranteed to return {@code null} when @{code isError()} returns
168 * non-@{code null} if {@code isError()} returns {@code true}.
  /libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
CoderResultTest.java 53 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());
  /frameworks/base/core/java/android/nfc/
ErrorCodes.java 28 public static boolean isError(int code) {
  /external/chromium_org/third_party/icu/source/common/
ucasemap.c 153 UBool isError=FALSE;
154 U8_APPEND(dest, destIndex, destCapacity, c, isError);
155 if(isError) {
ustrcase.c 56 UBool isError=FALSE;
57 U16_APPEND(dest, destIndex, destCapacity, c, isError);
58 if(isError) {
unistr.cpp 212 UBool isError = FALSE;
213 U16_APPEND(fUnion.fStackBuffer, i, US_STACKBUF_SIZE, ch, 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/icu4c/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) {
  /external/icu4c/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...]
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 166 public boolean isError() {
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetDecoderTest.java 47 assertFalse(coderResult.toString(), coderResult.isError());
63 assertFalse(coderResult.toString(), coderResult.isError());
  /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 674 UBool isError, expectIsError, wrongIsError;
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");
utf8tst.c     [all...]
  /external/icu4c/io/
ustdio.c 294 UBool isError = FALSE;
296 U16_APPEND(buf, idx, sizeof(buf)/sizeof(*buf), uc, isError);
297 if (isError) {
  /external/icu4c/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...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ContactLoaderTest.java 85 assertTrue(result.isError());
90 assertTrue(result.isError());
95 assertTrue(result.isError());
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_reading_helper.h 72 AK_FORCE_INLINE bool isError() const {
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 469 static bool isError(const Record &Diag) {
511 if (isError(R)) {
  /external/chromium_org/third_party/icu/source/common/unicode/
unistr.h     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 269 * Note {@link #isNotFound()} and {@link #isError()} are mutually exclusive; If
270 * {@link #isError()} is {@code true}, {@link #isNotFound()} is always {@code false},
273 public boolean isError() {
283 * Note {@link #isNotFound()} and {@link #isError()} are mutually exclusive; If
284 * {@link #isError()} is {@code true}, {@link #isNotFound()} is always {@code false},
293 * i.e. neither {@link #isError()} nor {@link #isNotFound()}.

Completed in 1503 milliseconds

1 2 3 4