Home
last modified time | relevance | path

Searched refs:errorMessage (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/node/deps/npm/test/lib/utils/
Derror-message.js43 errorMessage: (er) => mockError(er, res.npm),
48 const { errorMessage } = await loadMockNpm(t, {
90 t.matchSnapshot(errorMessage(er))
95 const { errorMessage } = await loadMockNpm(t, { command: 'audit' })
108 t.matchSnapshot(errorMessage(er))
112 const { errorMessage } = await loadMockNpm(t, { load: false })
124 t.matchSnapshot(errorMessage(er))
128 const { errorMessage } = await loadMockNpm(t)
138 t.matchSnapshot(errorMessage(er))
142 const { errorMessage } = await loadMockNpm(t, { command: null })
[all …]
/third_party/skia/third_party/externals/icu/source/samples/layout/
DUnicodeReader.cpp38 char errorMessage[128]; in readFile() local
45 sprintf(errorMessage,"Couldn't open %s: %s \n", fileName, strerror(errno)); in readFile()
46 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
78 …sprintf(errorMessage, "Couldn't detect the encoding of %s: (%2.2X, %2.2X, %2.2X, %2.2X)\n", fileNa… in readFile()
80 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
90 … sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno)); in readFile()
91 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
98 sprintf(errorMessage,"Couldn't read %s: %s \n", fileName, strerror(errno)); in readFile()
99 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
113 … sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno)); in readFile()
[all …]
DFontMap.cpp50 sprintf(errorMessage, "Could not open the font map file: %s.", fileName); in FontMap()
51 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in FontMap()
81 sprintf(errorMessage, "The script name %s is invalid.", line); in FontMap()
82 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in FontMap()
106 sprintf(errorMessage, "The font map file %s does not contain any valid scripts.", fileName); in FontMap()
107 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in FontMap()
214 … sprintf(errorMessage, "No font was set for script %s", uscript_getName((UScriptCode) scriptCode)); in getScriptFont()
215 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in getScriptFont()
224 sprintf(errorMessage, "Could not open font file %s", fFontNames[fontIndex]); in getScriptFont()
225 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in getScriptFont()
/third_party/icu/icu4c/source/samples/layout/
DUnicodeReader.cpp38 char errorMessage[128]; in readFile() local
45 sprintf(errorMessage,"Couldn't open %s: %s \n", fileName, strerror(errno)); in readFile()
46 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
78 …sprintf(errorMessage, "Couldn't detect the encoding of %s: (%2.2X, %2.2X, %2.2X, %2.2X)\n", fileNa… in readFile()
80 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
90 … sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno)); in readFile()
91 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
98 sprintf(errorMessage,"Couldn't read %s: %s \n", fileName, strerror(errno)); in readFile()
99 guiSupport->postErrorMessage(errorMessage, "Text File Error"); in readFile()
113 … sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno)); in readFile()
[all …]
DFontMap.cpp50 sprintf(errorMessage, "Could not open the font map file: %s.", fileName); in FontMap()
51 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in FontMap()
81 sprintf(errorMessage, "The script name %s is invalid.", line); in FontMap()
82 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in FontMap()
106 sprintf(errorMessage, "The font map file %s does not contain any valid scripts.", fileName); in FontMap()
107 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in FontMap()
214 … sprintf(errorMessage, "No font was set for script %s", uscript_getName((UScriptCode) scriptCode)); in getScriptFont()
215 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in getScriptFont()
224 sprintf(errorMessage, "Could not open font file %s", fFontNames[fontIndex]); in getScriptFont()
225 fGUISupport->postErrorMessage(errorMessage, "Font Map Error"); in getScriptFont()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DDataDrivenNumberFormatTestUtility.java245 String errorMessage; in run() local
251 errorMessage = isPass(tuple); in run()
254 errorMessage = "Exception: " + e + ": " + e.getCause(); in run()
256 if (shouldFail && errorMessage == null) { in run()
258 } else if (!shouldFail && errorMessage != null) { in run()
264 … showError(errorMessage + " Stack trace: " + stackTrace.substring(0, 500)); in run()
266 showError(errorMessage); in run()
375 String errorMessage = codeUnderTest.format(tuple); in isPass() local
376 if (errorMessage != null) { in isPass()
377 result.append(errorMessage); in isPass()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDataDrivenNumberFormatTestUtility.java242 String errorMessage; in run() local
248 errorMessage = isPass(tuple); in run()
251 errorMessage = "Exception: " + e + ": " + e.getCause(); in run()
253 if (shouldFail && errorMessage == null) { in run()
255 } else if (!shouldFail && errorMessage != null) { in run()
261 … showError(errorMessage + " Stack trace: " + stackTrace.substring(0, 500)); in run()
263 showError(errorMessage); in run()
372 String errorMessage = codeUnderTest.format(tuple); in isPass() local
373 if (errorMessage != null) { in isPass()
374 result.append(errorMessage); in isPass()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCreatePipelineAsyncTask.cpp28 std::string errorMessage, in CreatePipelineAsyncCallbackTaskBase() argument
30 : mErrorMessage(errorMessage), mUserData(userdata) { in CreatePipelineAsyncCallbackTaskBase()
35 std::string errorMessage, in CreateComputePipelineAsyncCallbackTask() argument
38 : CreatePipelineAsyncCallbackTaskBase(errorMessage, userdata), in CreateComputePipelineAsyncCallbackTask()
71 std::string errorMessage, in CreateRenderPipelineAsyncCallbackTask() argument
74 : CreatePipelineAsyncCallbackTaskBase(errorMessage, userdata), in CreateRenderPipelineAsyncCallbackTask()
124 std::string errorMessage; in Run() local
127 errorMessage = maybeError.AcquireError()->GetMessage(); in Run()
131 mComputePipeline, errorMessage, mCallback, mUserdata); in Run()
173 std::string errorMessage; in Run() local
[all …]
DCreatePipelineAsyncTask.h33 CreatePipelineAsyncCallbackTaskBase(std::string errorMessage, void* userData);
42 std::string errorMessage,
57 std::string errorMessage,
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DQualifierTypes.cpp93 ImmutableString *errorMessage) in HasRepeatingQualifiers() argument
114 *errorMessage = kInvariantMultipleTimes; in HasRepeatingQualifiers()
124 *errorMessage = kPreciseMultipleTimes; in HasRepeatingQualifiers()
134 *errorMessage = kPrecisionMultipleTimes; in HasRepeatingQualifiers()
144 *errorMessage = kLayoutMultipleTimes; in HasRepeatingQualifiers()
152 *errorMessage = kLayoutAndInvariantDisallowed; in HasRepeatingQualifiers()
168 *errorMessage = kInterpolationMultipleTimes; in HasRepeatingQualifiers()
194 *errorMessage = QualifierSpecifiedMultipleTimesErrorMessage( in HasRepeatingQualifiers()
219 *errorMessage = QualifierSpecifiedMultipleTimesErrorMessage( in HasRepeatingQualifiers()
237 *errorMessage = kOutputLayoutMultipleTimes; in HasRepeatingQualifiers()
[all …]
/third_party/lzma/C/Util/SfxSetup/
DSfxSetup.c256 const char *errorMessage = NULL; in main() local
353 errorMessage = "Can't create temp folder"; in main()
358 if (!errorMessage) in main()
359 errorMessage = "Error"; in main()
360 PrintErrorMessage(errorMessage); in main()
366 errorMessage = "can not open input file"; in main()
377 errorMessage = "Can't find 7z archive"; in main()
472 errorMessage = "Duplicate file"; in main()
478 errorMessage = "Can't open output file"; in main()
487 errorMessage = "Can't write output file"; in main()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DIllegalIcuArgumentException.java18 public IllegalIcuArgumentException(String errorMessage) { in IllegalIcuArgumentException() argument
19 super(errorMessage); in IllegalIcuArgumentException()
26 public IllegalIcuArgumentException(String errorMessage, Throwable cause) { in IllegalIcuArgumentException() argument
27 super(errorMessage, cause); in IllegalIcuArgumentException()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DIllegalIcuArgumentException.java20 public IllegalIcuArgumentException(String errorMessage) { in IllegalIcuArgumentException() argument
21 super(errorMessage); in IllegalIcuArgumentException()
28 public IllegalIcuArgumentException(String errorMessage, Throwable cause) { in IllegalIcuArgumentException() argument
29 super(errorMessage, cause); in IllegalIcuArgumentException()
/third_party/jerryscript/tests/jerry/
Dregression-test-issue-1309.js15 var errorMessage = "toStringThrows" variable
19 throw new Error(errorMessage);
28 assert(e.message == errorMessage);
/third_party/node/tools/inspector_protocol/lib/
DDispatcherBase_cpp.template115 reportProtocolError(callId, response.errorCode(), response.errorMessage(), nullptr);
130 …rResponse(int callId, DispatchResponse::ErrorCode code, const String& errorMessage, ErrorSupport* …
132 std::unique_ptr<ProtocolError> protocolError(new ProtocolError(code, errorMessage));
140 …rotocolError> createErrorNotification(DispatchResponse::ErrorCode code, const String& errorMessage)
142 return std::unique_ptr<ProtocolError>(new ProtocolError(code, errorMessage));
158 ProtocolError(DispatchResponse::ErrorCode code, const String& errorMessage)
160 , m_errorMessage(errorMessage)
186 …dChannel, int callId, DispatchResponse::ErrorCode code, const String& errorMessage, ErrorSupport* …
189 …ndProtocolResponse(callId, ProtocolError::createErrorResponse(callId, code, errorMessage, errors));
192 …rTo(FrontendChannel* frontendChannel, DispatchResponse::ErrorCode code, const String& errorMessage)
[all …]
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/
DExtractEngine.cpp101 bool showProgress, bool &isCorrupt, UString &errorMessage) in ExtractArchive() argument
132 errorMessage = t.ErrorMessage; in ExtractArchive()
133 if (errorMessage.IsEmpty()) in ExtractArchive()
134 errorMessage = t.ExtractCallbackSpec->_message; in ExtractArchive()
DSfxSetup.cpp231 UString errorMessage; in WinMain() local
233 isCorrupt, errorMessage); in WinMain()
241 NWindows::MyLoadString(IDS_EXTRACTION_ERROR_MESSAGE, errorMessage); in WinMain()
246 if (errorMessage.IsEmpty()) in WinMain()
247 errorMessage = NError::MyFormatMessage(result); in WinMain()
248 … ::MessageBoxW(0, errorMessage, NWindows::MyLoadString(IDS_EXTRACTION_ERROR_TITLE), MB_ICONERROR); in WinMain()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DHLSLCompiler.cpp234 ID3DBlob *errorMessage = nullptr; in compileToBinary() local
243 &errorMessage); in compileToBinary()
246 if (errorMessage) in compileToBinary()
248 std::string message = static_cast<const char *>(errorMessage->GetBufferPointer()); in compileToBinary()
249 SafeRelease(errorMessage); in compileToBinary()
250 ANGLE_TRACE_EVENT1("gpu.angle", "D3DCompile::Error", "error", errorMessage); in compileToBinary()
/third_party/lzma/CPP/7zip/UI/Common/
DExtract.cpp47 UString &errorMessage, in DecompressArchive() argument
189 SetErrorMessage("Cannot create output directory", outDir, res, errorMessage); in DecompressArchive()
276 UString &errorMessage, in Extract() argument
297 SetErrorMessage("Cannot find archive file", arcPath, errorCode, errorMessage); in Extract()
303 SetErrorMessage("The item is a directory", arcPath, errorCode, errorMessage); in Extract()
361 SetErrorMessage("Cannot find archive file", us2fs(arcPath), errorCode, errorMessage); in Extract()
536 extractCallback, ecs, errorMessage, packProcessed)); in Extract()
543 if (!errorMessage.IsEmpty()) in Extract()
/third_party/icu/icu4c/source/test/cintltst/
Dcrestst.c1094 char errorMessage[200]; in TestAlgorithmicParentFallback() local
1096 …sprintf(errorMessage, "Error %s opening resource bundle for locale %s and URES_OPEN_LOCALE_DEFAULT… in TestAlgorithmicParentFallback()
1097 if (assertSuccess(errorMessage, &err)) { in TestAlgorithmicParentFallback()
1100 …sprintf(errorMessage, "Error %s getting resource locale for locale %s and URES_OPEN_LOCALE_DEFAULT… in TestAlgorithmicParentFallback()
1101 if (assertSuccess(errorMessage, &err)) { in TestAlgorithmicParentFallback()
1102 … sprintf(errorMessage, "Mismatch for locale %s and URES_OPEN_LOCALE_DEFAULT_ROOT", testLocale); in TestAlgorithmicParentFallback()
1104 assertEquals(errorMessage, defaultLocaleID, resourceLocale); in TestAlgorithmicParentFallback()
1106 assertEquals(errorMessage, regularExpected, resourceLocale); in TestAlgorithmicParentFallback()
1115 …sprintf(errorMessage, "Error %s opening resource bundle for locale %s and URES_OPEN_LOCALE_ROOT", … in TestAlgorithmicParentFallback()
1116 if (assertSuccess(errorMessage, &err)) { in TestAlgorithmicParentFallback()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/
Dlunr.js3243 var errorMessage = "expected either a field or a term, found " + lexeme.type
3246 errorMessage += " with value '" + lexeme.str + "'"
3249 throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
3268 var errorMessage = "unrecognised presence operator'" + lexeme.str + "'"
3269 throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
3275 var errorMessage = "expecting term or field, found nothing"
3276 throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
3285 var errorMessage = "expecting term or field, found '" + nextLexeme.type + "'"
3286 throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)
3299 errorMessage = "unrecognised field '" + lexeme.str + "', possible fields: " + possibleFields
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.5/template_string_types_as_discriminants/
Dtemplate_string_types_as_discriminants_1.ts54 const errorMessage: EMessage = { constant
60 RunTest(errorMessage);
/third_party/node/deps/npm/node_modules/node-gyp/bin/
Dnode-gyp.js84 errorMessage()
121 function errorMessage () { function
133 errorMessage()
/third_party/lzma/CPP/7zip/Bundles/SFXCon/
DSfxCon.cpp449 UString errorMessage; in Main2() local
457 errorMessage, stat); in Main2()
458 if (!errorMessage.IsEmpty()) in Main2()
460 (*g_StdStream) << endl << "Error: " << errorMessage;; in Main2()
/third_party/icu/icu4c/source/test/intltest/
Ddatadrivennumberformattestsuite.cpp96 UnicodeString errorMessage; in run() local
100 UBool actualSuccess = isPass(fTuple, errorMessage, status); in run()
102 showFailure("Expected failure, but passed: " + errorMessage); in run()
105 showFailure(errorMessage); in run()

1234