HomeSort by relevance Sort by last modified time
    Searched full:error_text (Results 1 - 25 of 51) sorted by null

1 2 3

  /bootable/recovery/tests/testdata/
bonus.file 
  /external/google-breakpad/src/client/linux/sender/
google_crash_report_sender.cc 62 string error_text = ""; local
64 error_text.append("\nProduct name must be specified.");
68 error_text.append("\nProduct version must be specified.");
72 error_text.append("\nClient ID must be specified.");
76 error_text.append("\nMinidump pathname must be specified.");
79 if (!error_text.empty()) {
80 std::cout << error_text; local
  /external/google-breakpad/src/common/linux/
google_crashdump_uploader.cc 139 string error_text; local
141 error_text.append("\nProduct name must be specified.");
145 error_text.append("\nProduct version must be specified.");
149 error_text.append("\nClient ID must be specified.");
153 error_text.append("\nMinidump pathname must be specified.");
156 if (!error_text.empty()) {
157 std::cout << error_text; local
  /system/core/init/
result_test.cpp 130 auto error_text = "test error"s; local
131 Result<Success> result = Error() << error_text;
142 EXPECT_EQ(error_text, result.error_string());
146 auto error_text = "test error"s; local
147 Result<Success> result = Error() << error_text;
158 EXPECT_EQ(error_text, result.error_string());
162 auto error_text = "test error"s; local
165 Result<Success> result = ErrnoError() << error_text;
178 EXPECT_EQ(error_text + ": " + strerror(test_errno), result.error_string());
  /cts/apps/CtsVerifier/res/layout/
mtp_host_activity.xml 28 <TextView android:id="@+id/error_text"
screen_pinning.xml 22 android:id="@+id/error_text"
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
Colors.h 39 #define ERROR_TEXT EFI_RED | EFI_BRIGHT
  /external/libpng/contrib/conftest/
s_read.dfa 29 option ERROR_TEXT on
s_write.dfa 27 option ERROR_TEXT on
simple.dfa 28 option ERROR_TEXT on
  /frameworks/base/cmds/am/proto/
instrumentation_data.proto 57 optional string error_text = 2;
  /packages/services/Car/car-maps-placeholder/res/layout/
maps_placeholder_activity.xml 26 android:text="@string/error_text"
  /packages/services/Car/car-maps-placeholder/res/values/
strings.xml 21 <string name="error_text">No maps application installed. Please contact your car
  /packages/apps/Car/LensPicker/res/layout/
lens_list.xml 46 android:id="@+id/error_text"
resolver_list.xml 75 android:id="@+id/error_text"
  /packages/apps/Settings/res/layout/
fingerprint_enroll_introduction.xml 43 android:id="@+id/error_text"
fingerprint_enroll_enrolling_base.xml 82 android:id="@+id/error_text"
  /packages/apps/Settings/tests/unit/src/com/android/settings/fingerprint/
FingerprintEnrollIntroductionTest.java 80 final TextView errorTextView = (TextView) mActivity.findViewById(R.id.error_text);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fingerprint/
FingerprintEnrollEnrollingTest.java 98 TextView errorText = mActivity.findViewById(R.id.error_text);
  /bootable/recovery/
screen_ui.cpp 101 return error_text;
265 std::vector<std::string> text_name = { "erasing_text", "error_text", "installing_text",
631 LoadLocalizedBitmap("error_text", &error_text);
screen_ui.h 158 GRSurface* error_text; member in class:ScreenRecoveryUI
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/screenpinning/
ScreenPinningTestActivity.java 134 ((TextView) findViewById(R.id.error_text)).setText(error);
  /packages/apps/Settings/res/layout-land/
fingerprint_enroll_enrolling.xml 127 android:id="@+id/error_text"
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintEnrollIntroduction.java 74 mErrorText = (TextView) findViewById(R.id.error_text);
  /external/libchrome/crypto/
nss_util.cc 75 std::unique_ptr<char[]> error_text(new char[PR_GetErrorTextLength() + 1]);
76 PRInt32 copied = PR_GetErrorText(error_text.get());
77 result = std::string(error_text.get(), copied);
    [all...]

Completed in 1167 milliseconds

1 2 3