Home
last modified time | relevance | path

Searched refs:errMsg (Results 1 – 25 of 35) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-http2-socket-proxy.js17 const errMsg = { variable
55 assert.throws(() => socket.destroy, errMsg);
56 assert.throws(() => socket.emit, errMsg);
57 assert.throws(() => socket.end, errMsg);
58 assert.throws(() => socket.pause, errMsg);
59 assert.throws(() => socket.read, errMsg);
60 assert.throws(() => socket.resume, errMsg);
61 assert.throws(() => socket.write, errMsg);
62 assert.throws(() => socket.setEncoding, errMsg);
63 assert.throws(() => socket.setKeepAlive, errMsg);
[all …]
Dtest-http2-compat-socket.js18 const errMsg = { variable
41 assert.throws(() => request.socket.read(), errMsg);
42 assert.throws(() => request.socket.write(), errMsg);
43 assert.throws(() => request.socket.pause(), errMsg);
44 assert.throws(() => request.socket.resume(), errMsg);
Dtest-http2-compat-socket-set.js12 const errMsg = { variable
71 assert.throws(() => request.socket.read = noop, errMsg);
72 assert.throws(() => request.socket.write = noop, errMsg);
73 assert.throws(() => request.socket.pause = noop, errMsg);
74 assert.throws(() => request.socket.resume = noop, errMsg);
Dtest-inspect-support-for-node_options.js26 const errMsg = `For NODE_OPTIONS ${nodeOptions}, failed to start cluster`;
27 assert.strictEqual(worker.exitedAfterDisconnect, true, errMsg);
/third_party/icu/icu4c/source/test/intltest/
Dtsnmfmt.cpp292 UnicodeString errMsg; in tryIt() local
296 errMsg.truncate(0); // if non-empty, we failed this iteration in tryIt()
305 errMsg = "**** FAIL: Parse of " + prettify(string[i-1]) + " failed."; in tryIt()
317 errMsg = ("**** FAIL: Parse of " + prettify(string[i-1]) in tryIt()
331 errMsg = ("**** FAIL: Numeric mismatch after match."); in tryIt()
338 errMsg = ("**** FAIL: String mismatch after match."); in tryIt()
350 errMsg = ("**** FAIL: No string and/or number match within 2 iterations."); in tryIt()
353 if (errMsg.length() != 0) in tryIt()
360 errln(errMsg); in tryIt()
Dtmsgfmt.h77 UnicodeString expected, const char* errMsg);
83 UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
Dtzfmttst.cpp870 UnicodeString errMsg; in TestParse() local
875errMsg = (UnicodeString)"Time zone ID: " + outID + " - expected: " + DATA[i].expected; in TestParse()
877errMsg = (UnicodeString)"Parsed pos: " + pos.getIndex() + " - expected: " + DATA[i].outPos; in TestParse()
879 errMsg = (UnicodeString)"Time type: " + ttype + " - expected: " + DATA[i].timeType; in TestParse()
884 errMsg = (UnicodeString)"Parse failure - expected: " + DATA[i].expected; in TestParse()
887 if (errMsg.length() > 0) { in TestParse()
888 …errln((UnicodeString)"Fail: " + errMsg + " [text=" + DATA[i].text + ", pos=" + DATA[i].inPos + ", … in TestParse()
Dtzregts.cpp819 UnicodeString errMsg; in Test4154650() local
821 errMsg = (UnicodeString(") threw ") + u_errorName(status)); in Test4154650()
824 errMsg = UnicodeString(") accepts invalid args", ""); in Test4154650()
829 errMsg); in Test4154650()
Dtmsgfmt.cpp654 UnicodeString expected, const char* errMsg) in internalFormat() argument
663 … dataerrln( "%s error while formatting with ErrorCode as %s" ,errMsg, u_errorName(status) ); in internalFormat()
667 UnicodeString err = UnicodeString(errMsg); in internalFormat()
674 UnicodeString pattern ,Locale locale ,UErrorCode &status , char* errMsg) in internalCreate() argument
679 … dataerrln( "%s error while constructing with ErrorCode as %s" ,errMsg, u_errorName(status) ); in internalCreate()
Dplurults.cpp614 char errMsg[1000]; in checkNewSamples() local
615 …snprintf(errMsg, sizeof(errMsg), "First parsed sample FixedDecimal not equal to expected for sampl… in checkNewSamples()
616 errln(errMsg); in checkNewSamples()
/third_party/node/deps/npm/lib/utils/
Dopen-url.js7 module.exports = function open (url, errMsg, cb, browser = npm.config.get('browser')) { argument
12 title: errMsg,
15 : `${errMsg}:\n\n${url}`
/third_party/node/test/es-module/
Dtest-esm-invalid-extension.js8 const errMsg = 'TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension'; constant
13 assert.ok(child.stderr.toString().includes(errMsg));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DDynamicLibrary.h68 std::string *errMsg = nullptr);
78 std::string *errMsg = nullptr);
/third_party/skia/gm/
Dyuv420_odd_dim.cpp55 DEF_SIMPLE_GM_CAN_FAIL(yuv420_odd_dim, canvas, errMsg,
87 DEF_SIMPLE_GM_CAN_FAIL(yuv420_odd_dim_repeat, canvas, errMsg,
119 *errMsg = "Could not make YUVA image";
Dtypeface.cpp362 DEF_SIMPLE_GM_CAN_FAIL(typefacerendering, canvas, errMsg, 640, 840) {
377 DEF_SIMPLE_GM_CAN_FAIL(typefacerendering_pfa, canvas, errMsg, 640, 840) {
386 DEF_SIMPLE_GM_CAN_FAIL(typefacerendering_pfb, canvas, errMsg, 640, 840) {
/third_party/node/deps/npm/node_modules/chalk/
Dtemplates.js123 …const errMsg = `Chalk template literal is missing ${styles.length} closing bracket${styles.length … constant
124 throw new Error(errMsg);
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeZoneFormatTest.java666 String errMsg = null; in TestParse() local
669 errMsg = "Parse failure - expected: " + expID; in TestParse()
672 errMsg = "Time zone ID: " + tz.getID() + " - expected: " + expID; in TestParse()
674 errMsg = "Parsed pos: " + pos.getIndex() + " - expected: " + expPos; in TestParse()
676 errMsg = "Time type: " + timeType + " - expected: " + expType; in TestParse()
679 if (errMsg != null) { in TestParse()
680 errln("Fail: " + errMsg + in TestParse()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DTimeZoneFormatTest.java669 String errMsg = null; in TestParse() local
672 errMsg = "Parse failure - expected: " + expID; in TestParse()
675 errMsg = "Time zone ID: " + tz.getID() + " - expected: " + expID; in TestParse()
677 errMsg = "Parsed pos: " + pos.getIndex() + " - expected: " + expPos; in TestParse()
679 errMsg = "Time type: " + timeType + " - expected: " + expType; in TestParse()
682 if (errMsg != null) { in TestParse()
683 errln("Fail: " + errMsg + in TestParse()
/third_party/mesa3d/src/mesa/main/
Duniforms.h88 char *errMsg, size_t errMsgLength);
/third_party/jsframework/runtime/main/extend/systemplugin/ohos/
Dapp.js66 errMsg: "[PC Preview] unknow errMsg", property
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOModule.cpp207 std::string errMsg; in makeLTOModule() local
208 const Target *march = TargetRegistry::lookupTarget(TripleStr, errMsg); in makeLTOModule()
/third_party/node/test/common/
Dindex.js215 const errMsg = 'Test should have aborted ' +
218 assert(nodeProcessAborted(exitCode, signal), errMsg);
/third_party/vk-gl-cts/execserver/tools/
DxsTest.cpp285 string errMsg = deProcess_getLastError(serverProc); in runCase() local
287 XS_FAIL(errMsg.c_str()); in runCase()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts2025 …var errMsg = 'The baseline file ' + relativeFilename + ' has changed. Please refer to baseline-rep…
2026errMsg += 'either fix the regression (if unintended) or run nmake baseline-accept (if intended).'
2040 throw new Error(errMsg);
/third_party/typescript/tests/baselines/reference/
Dparserharness.js2025 …var errMsg = 'The baseline file ' + relativeFilename + ' has changed. Please refer to baseline-rep… variable
2026errMsg += 'either fix the regression (if unintended) or run nmake baseline-accept (if intended).'
2040 throw new Error(errMsg);
3826 …var errMsg = 'The baseline file ' + relativeFilename + ' has changed. Please refer to baseline-rep…
3827errMsg += 'either fix the regression (if unintended) or run nmake baseline-accept (if intended).';
3837 throw new Error(errMsg);

12