HomeSort by relevance Sort by last modified time
    Searched refs:errorString (Results 26 - 50 of 105) sorted by null

12 3 4 5

  /build/soong/cmd/zip2zip/
zip2zip_test.go 256 func errorString(e error) string {
286 if errorString(testCase.err) != errorString(err) {
287 t.Fatalf("Unexpected error:\n got: %q\nwant: %q", errorString(err), errorString(testCase.err))
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDWebSocketChannel.m 147 NSString *errorString = wssMessage[kARDWSSMessageErrorKey];
148 if (errorString.length) {
149 RTCLogError(@"WSS error: %@", errorString);
  /external/skia/src/xml/
SkXMLParser.cpp 169 const XML_LChar* errorString = XML_ErrorString(error);
170 SkDebugf("parse error @%d:%d: %d (%s).\n", line, column, error, errorString);
  /external/skqp/src/xml/
SkXMLParser.cpp 169 const XML_LChar* errorString = XML_ErrorString(error);
170 SkDebugf("parse error @%d:%d: %d (%s).\n", line, column, error, errorString);
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 105 String errorString = String.format(
108 assertEquals(errorString, DownloadManager.STATUS_SUCCESSFUL, status);
  /external/autotest/frontend/client/src/autotest/tko/
TestDetailView.java 58 String errorString = getErrorString(errorObject);
59 if (errorString.equals("")) {
60 errorString = "Failed to load log "+ logFilePath;
62 setStatusText(errorString);
  /frameworks/support/samples/SupportMediaDemos/src/main/java/com/example/androidx/media/
VideoViewTest.java 78 String errorString = null;
82 errorString = "Invalid intent";
94 if (errorString != null) {
95 showErrorDialog(errorString);
  /prebuilts/go/darwin-x86/src/runtime/
slice.go 54 panic(errorString("makeslice: len out of range"))
58 panic(errorString("makeslice: cap out of range"))
68 panic(errorString("makeslice: len out of range"))
73 panic(errorString("makeslice: cap out of range"))
100 panic(errorString("growslice: cap out of range"))
167 panic(errorString("growslice: cap out of range"))
alg.go 148 panic(errorString("hash of unhashable type " + t.string()))
165 panic(errorString("hash of unhashable type " + t.string()))
223 panic(errorString("comparing uncomparable type " + t.string()))
237 panic(errorString("comparing uncomparable type " + t.string()))
cgocall.go 489 panic(errorString(msg))
497 panic(errorString(msg))
507 panic(errorString(msg))
514 panic(errorString(msg))
525 panic(errorString(msg))
540 panic(errorString(msg))
563 panic(errorString(msg))
598 panic(errorString(msg))
610 panic(errorString(msg))
  /prebuilts/go/linux-x86/src/runtime/
slice.go 54 panic(errorString("makeslice: len out of range"))
58 panic(errorString("makeslice: cap out of range"))
68 panic(errorString("makeslice: len out of range"))
73 panic(errorString("makeslice: cap out of range"))
100 panic(errorString("growslice: cap out of range"))
167 panic(errorString("growslice: cap out of range"))
alg.go 148 panic(errorString("hash of unhashable type " + t.string()))
165 panic(errorString("hash of unhashable type " + t.string()))
223 panic(errorString("comparing uncomparable type " + t.string()))
237 panic(errorString("comparing uncomparable type " + t.string()))
  /prebuilts/go/darwin-x86/src/fmt/
scan.go 243 func (s *ss) errorString(err string) {
433 s.errorString("unexpected newline")
526 s.errorString("bad verb '%" + string(verb) + "' for " + typ)
592 s.errorString("expected integer")
607 s.errorString("overflow on character value " + string(r))
642 s.errorString("bad unicode format ")
658 s.errorString("integer overflow on token " + tok)
675 s.errorString("bad unicode format ")
688 s.errorString("unsigned integer overflow on token " + tok)
853 s.errorString("expected quoted string"
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
scan.go 243 func (s *ss) errorString(err string) {
433 s.errorString("unexpected newline")
526 s.errorString("bad verb '%" + string(verb) + "' for " + typ)
592 s.errorString("expected integer")
607 s.errorString("overflow on character value " + string(r))
642 s.errorString("bad unicode format ")
658 s.errorString("integer overflow on token " + tok)
675 s.errorString("bad unicode format ")
688 s.errorString("unsigned integer overflow on token " + tok)
853 s.errorString("expected quoted string"
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ParserTest.java 132 final String errorString =
148 fail(errorString);
156 fail(errorString);
164 fail(errorString);
173 fail(errorString);
  /libcore/ojluni/src/main/java/sun/nio/fs/
LinuxWatchService.java 73 x.errorString();
86 throw new IOException(x.errorString());
219 throw new IOException(x.errorString());
UnixDirectoryStream.java 101 throw new IOException(x.errorString());
UnixUserPrincipals.java 148 throw new IOException(name + ": " + x.errorString());
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/list/
SearchActionViewHolder.java 132 @StringRes int errorString = R.string.add_contact_not_available;
133 DialerUtils.startActivityWithErrorToast(context, intent, errorString);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothLeScanFacade.java 869 String errorString = "UNKNOWN_ERROR_CODE";
871 errorString = "SCAN_FAILED_ALREADY_STARTED";
874 errorString = "SCAN_FAILED_APPLICATION_REGISTRATION_FAILED";
877 errorString = "SCAN_FAILED_FEATURE_UNSUPPORTED";
879 errorString = "SCAN_FAILED_INTERNAL_ERROR";
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsUt.java 601 String errorString;
605 errorString = Resources.getSystem().getString(
609 errorString = new String(error.mExtraMessage);
611 AsyncResult.forMessage(result, null, new ImsException(errorString, error.mCode));
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 207 String errorString = readAsString(process.getErrorStream());
209 assertTrue("Unexpected output: " + errorString,
210 errorString.contains(missingFilePath) && !errorString.equals(missingFilePath));
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDDisassembler.cpp 161 std::string errorString;
164 errorString);
  /packages/services/Telephony/src/com/android/phone/
EmergencyDialer.java 648 String errorString = getString(R.string.dial_emergency_error, number);
649 int startingPosition = errorString.indexOf(number);
651 Spannable result = new SpannableString(errorString);
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintEnrollEnrolling.java 481 CharSequence errorString = getArguments().getCharSequence("error_msg");
484 .setMessage(errorString)

Completed in 2590 milliseconds

12 3 4 5