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

1 2 3 4 5

  /frameworks/base/core/java/android/speech/tts/
PlaybackQueueItem.java 26 abstract void stop(boolean isError);
SilencePlaybackQueueItem.java 42 void stop(boolean isError) {
SynthesisPlaybackQueueItem.java 125 void stop(boolean isError) {
131 mIsError = isError;
AudioPlaybackQueueItem.java 102 void stop(boolean isError) {
  /external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
UnicodeBrew.cpp 77 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
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;
UnicodeBrew.h 120 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/
UnicodeWinCE.cpp 85 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
102 *isError = !!remainingCharacters;
109 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
126 *isError = !!remainingCharacters;
133 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
135 *isError = false;
137 *isError = true;
UnicodeWinCE.h 138 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/
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...]
  /frameworks/base/core/java/android/nfc/
ErrorCodes.java 28 public static boolean isError(int code) {
  /external/apache-harmony/nio_char/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());
UTF16CharsetDecoderTest.java 99 true).isError());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 108 boolean isError = false;
112 isError = severity == IMarker.SEVERITY_ERROR;
115 icon = isError ? getErrorIcon() : getWarningIcon();
  /cts/tests/tests/media/src/android/media/cts/
AudioEffectTest.java 436 assertFalse("getParameter 1 failed", AudioEffect.isError(status));
445 assertFalse("getParameter 2 failed", AudioEffect.isError(status));
467 assertFalse("getParameter 1 failed", AudioEffect.isError(status));
475 assertFalse("getParameter 2 failed", AudioEffect.isError(status));
498 assertFalse("getParameter 1 failed", AudioEffect.isError(status));
506 assertFalse("getParameter 2 failed", AudioEffect.isError(status));
527 assertFalse("getParameter 1 failed", AudioEffect.isError(status));
536 assertFalse("getParameter 2 failed", AudioEffect.isError(status));
561 assertFalse("getParameter 1 failed", AudioEffect.isError(status));
570 assertFalse("getParameter 2 failed", AudioEffect.isError(status))
    [all...]
  /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}.
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.h 80 void isError();
  /libcore/luni/src/main/java/java/io/
OutputStreamWriter.java 183 } else if (result.isError()) {
198 if (result.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/srec/portable/include/
PANSIFileImpl.h 107 PORTABLE_API ESR_ReturnCode PANSIFileIsErrorSetImpl(PFile* self, ESR_BOOL* isError);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine_p.h 89 inline bool isError(JSValueRef value) const;
242 bool QScriptEnginePrivate::isError(JSValueRef value) const
244 return m_originalGlobalObject.isError(value);
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp 69 void isError();
285 void tst_QScriptValue::isError()
289 value.isError();
  /external/icu4c/common/
unistr.cpp 212 UBool isError = FALSE;
213 U16_APPEND(fUnion.fStackBuffer, i, US_STACKBUF_SIZE, ch, isError);
214 // We test isError so that the compiler does not complain that we don't.
215 // If isError then i==0 which is what we want anyway.
216 if(!isError) {
    [all...]
  /external/srec/portable/src/
PFileWrap.c 185 ESR_ReturnCode PFileIsErrorSet ( PFile *self, ESR_BOOL *isError )
192 *isError = ESR_TRUE;
194 *isError = ESR_FALSE;
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 171 public boolean isError() {
  /external/icu4c/common/unicode/
utf16.h 299 * then isError is set to TRUE.
305 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
309 #define U16_APPEND(s, i, capacity, c, isError) { \
316 (isError)=TRUE; \

Completed in 2300 milliseconds

1 2 3 4 5