/external/icu/icu4c/source/test/intltest/ |
numfmtst.h | 263 const UnicodeString& exp, UBool rt, UErrorCode errorCode); 266 const char *exp, UBool rt, UErrorCode errorCode) { 267 expect(fmt, n, UnicodeString(exp, ""), rt, errorCode); 271 const UnicodeString& exp, UErrorCode errorCode) { 272 expect(fmt, n, exp, TRUE, errorCode); 276 const char *exp, UErrorCode errorCode) { 277 expect(fmt, n, UnicodeString(exp, ""), TRUE, errorCode);
|
plurfmts.cpp | 630 IcuTestErrorCode errorCode(*this, "ordinalFormatTest"); 632 PluralFormat pf(Locale::getEnglish(), UPLURAL_TYPE_ORDINAL, pattern, errorCode); 633 if (errorCode.logDataIfFailureAndReset("PluralFormat(en, UPLURAL_TYPE_ORDINAL, pattern) failed")) { 636 UnicodeString result = pf.format((int32_t)321, errorCode); 637 if (!errorCode.logIfFailureAndReset("PluralFormat.format(321) failed") && 641 result = pf.format((int32_t)22, errorCode); 642 if (!errorCode.logIfFailureAndReset("PluralFormat.format(22) failed") && 646 result = pf.format((int32_t)3, errorCode); 647 if (!errorCode.logIfFailureAndReset("PluralFormat.format(3) failed") && 653 PluralFormat pf2(Locale::getEnglish(), UPLURAL_TYPE_ORDINAL, errorCode); [all...] |
regcoll.cpp | 1082 IcuTestErrorCode errorCode(*this, "Test4179216"); 1083 RuleBasedCollator coll(en_us->getRules() + " & C < ch , cH , Ch , CH < cat < crunchy", errorCode); 1088 iter->setOffset(4, errorCode); 1089 int32_t elt4 = CollationElementIterator::primaryOrder(iter->next(errorCode)); 1092 int32_t elt0 = CollationElementIterator::primaryOrder(iter->next(errorCode)); 1094 iter->setOffset(5, errorCode); 1095 int32_t elt5 = CollationElementIterator::primaryOrder(iter->next(errorCode)); 1105 iter->setOffset(14, errorCode); 1106 int32_t elt14 = CollationElementIterator::primaryOrder(iter->next(errorCode)); 1108 iter->setOffset(15, errorCode); [all...] |
/libcore/luni/src/main/native/ |
libcore_icu_NativeConverter.cpp | 215 UErrorCode errorCode = U_ZERO_ERROR; 216 ucnv_fromUnicode(cnv , &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, (UBool) flush, &errorCode); 221 if (errorCode == U_ILLEGAL_CHAR_FOUND || errorCode == U_INVALID_CHAR_FOUND || 222 errorCode == U_TRUNCATED_CHAR_FOUND) { 233 if (shouldCodecThrow(flush, errorCode)) { 234 maybeThrowIcuException(env, "ucnv_fromUnicode", errorCode); 236 return errorCode; 271 UErrorCode errorCode = U_ZERO_ERROR; 272 ucnv_toUnicode(cnv, &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, flush, &errorCode); [all...] |
/packages/services/Car/service/src/com/android/car/hal/ |
HalClient.java | 182 final int errorCode; 186 PropertySetError(int errorCode, int propId, int areaId) { 187 this.errorCode = errorCode; 219 mCallback.onPropertySetError(obj.errorCode, obj.propId, obj.areaId); 250 public void onPropertySetError(int errorCode, int propId, int areaId) { 253 new PropertySetError(errorCode, propId, areaId)));
|
/cts/tests/tests/hardware/src/android/hardware/cts/ |
Egl14Utils.java | 142 int errorCode; 143 if ((errorCode = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { 144 throw new RuntimeException("gl error: " + Integer.toHexString(errorCode));
|
/external/icu/icu4c/source/common/ |
cpputils.h | 91 uprv_checkCanGetBuffer(const icu::UnicodeString &s, UErrorCode &errorCode) { 92 if(U_SUCCESS(errorCode) && s.isBogus()) { 93 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
|
/frameworks/base/core/java/android/os/ |
UpdateEngine.java | 126 public void onPayloadApplicationComplete(final int errorCode) { 131 callback.onPayloadApplicationComplete(errorCode); 135 callback.onPayloadApplicationComplete(errorCode);
|
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/ |
NsdResolveQueue.java | 118 public void onResolveFailed(NsdServiceInfo serviceInfo, int errorCode) { 120 Log.d(TAG, "onResolveFailed " + serviceInfo.getServiceName() + " errorCode=" + 121 errorCode + " (" + (System.currentTimeMillis() - mStartTime) + " ms)"); 124 listener.onResolveFailed(serviceInfo, errorCode);
|
/prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-efs/1.11.18/ |
aws-java-sdk-efs-1.11.18.jar | |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
isac.c | 243 instISAC->errorCode = 0; 282 instISAC->errorCode = 0; 424 instISAC->errorCode = ISAC_DISALLOWED_CODING_MODE; 454 instISAC->errorCode = -status; 468 instISAC->errorCode = -status; 522 instISAC->errorCode = ISAC_ENCODER_NOT_INITIATED; [all...] |
/external/vulkan-validation-layers/ |
update_external_sources.bat | 14 set errorCode=0 99 set errorCode=1 109 set errorCode=1 120 if %errorCode% neq 0 (goto:error) 127 set errorCode=1 134 set errorCode=1 155 if %errorCode% neq 0 (goto:error) 157 if %errorCode% neq 0 (goto:error) 168 if %errorCode% neq 0 (goto:error) 170 if %errorCode% neq 0 (goto:error [all...] |
/external/mdnsresponder/mDNSWindows/DLL.NET/ |
dnssd_NET.cpp | 145 ErrorCode errorCode, 152 OnEnumerateDomainsReply(this, flags, interfaceIndex, errorCode, replyDomain); 166 ErrorCode errorCode, 175 OnRegisterReply(this, flags, errorCode, name, regtype, domain); 190 ErrorCode errorCode, 199 OnBrowseReply(this, flags, interfaceIndex, errorCode, serviceName, regtype, replyDomain); 214 ErrorCode errorCode [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
dynload_win.c | 205 unsigned int errorCode;
212 errorCode = GetLastError();
218 errorCode, /* the message (error) ID */
229 errorCode);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
SetValues002Test.java | 144 short errorCode = checkedReply.getErrorCode(); 145 if ( errorCode == JDWPConstants.Error.NONE ) { 150 + " returns ERROR = " + errorCode 151 + "(" + JDWPConstants.Error.getName(errorCode) + ")");
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
SetValues003Test.java | 128 short errorCode = checkedReply.getErrorCode(); 129 if ( errorCode == JDWPConstants.Error.NONE ) { 134 + " returns ERROR = " + errorCode 135 + "(" + JDWPConstants.Error.getName(errorCode) + ")");
|
/external/icu/icu4c/source/i18n/ |
collationdata.h | 124 int64_t getSingleCE(UChar32 c, UErrorCode &errorCode) const; 156 int32_t dest[], int32_t capacity, UErrorCode &errorCode) const; 169 UVector32 &ranges, UErrorCode &errorCode) const; 254 UVector32 &ranges, UErrorCode &errorCode) const;
|
/external/icu/icu4c/source/test/perf/unisetperf/draft/ |
bitset.cpp | 91 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) { 92 if(U_FAILURE(errorCode)) { 97 errorCode=U_MEMORY_ALLOCATION_ERROR; 161 errorCode=U_MEMORY_ALLOCATION_ERROR;
|
/frameworks/base/core/java/android/nfc/tech/ |
Ndef.java | 315 int errorCode = tagService.ndefWrite(serviceHandle, msg); 316 switch (errorCode) { 383 int errorCode = tagService.ndefMakeReadOnly(mTag.getServiceHandle()); 384 switch (errorCode) {
|
/frameworks/base/core/java/android/speech/tts/ |
SynthesisCallback.java | 121 * @param errorCode Error code to pass to the client. One of the ERROR_ values from {@link 124 void error(@TextToSpeech.Error int errorCode);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
BaseWifiDiagnostics.java | 46 public synchronized void captureAlertData(int errorCode, byte[] alertData) { }
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/ |
PlayerAdapter.java | 86 * @param errorCode Optional error code, specific to implementation. 89 public void onError(PlayerAdapter adapter, int errorCode, String errorMessage) {
|
/system/libhidl/base/ |
Status.cpp | 99 Status::Status(int32_t exceptionCode, int32_t errorCode) 101 mErrorCode(errorCode) {} 103 Status::Status(int32_t exceptionCode, int32_t errorCode, const char *message) 105 mErrorCode(errorCode),
|
/tools/tradefederation/core/prod-tests/src/com/android/performance/tests/ |
VellamoBenchmark.java | 84 int errorCode = 0; 125 errorCode = Integer.parseInt(results[INDEX_CODE]); 126 if (errorCode != 0) { 128 errorCode, results[INDEX_NAME]);
|
/external/deqp/android/scripts/ |
common.py | 136 class ErrorCode: 140 def applyAndCaptureError (func, args, errorCode): 144 errorCode.error = sys.exc_info() 146 errorCode = ErrorCode() 149 job = threading.Thread(target=applyAndCaptureError, args=(f, args, errorCode)) 156 if errorCode.error: 157 raise errorCode.error[0], errorCode.error[1], errorCode.error[2 [all...] |