Searched refs:doesNotThrow (Results 1 – 25 of 65) sorted by relevance
123
/third_party/node/deps/npm/test/tap/ |
D | process-logger.js | 7 t.doesNotThrow(() => process.emit('log', 'error', 'test', 'this'), 'logging does not throw') 8 t.doesNotThrow(() => process.emit('log', 2348), 'invalid args do not throw') 9 t.doesNotThrow(() => process.emit('log', null), 'null does not throw') 10 t.doesNotThrow(() => process.emit('log', {}), 'obj does not throw')
|
D | unit-token-validate-cidr.js | 11 t.doesNotThrow(() => t.isDeeply(validateCIDRList(single.join(',')), single), 'single string ipv4') 12 t.doesNotThrow(() => t.isDeeply(validateCIDRList(single), single), 'single array ipv4') 13 t.doesNotThrow(() => t.isDeeply(validateCIDRList(double.join(',')), double), 'double string ipv4') 14 t.doesNotThrow(() => t.isDeeply(validateCIDRList(double), double), 'double array ipv4')
|
D | config-credentials.js | 71 t.doesNotThrow(function () { 95 t.doesNotThrow(function () { 99 t.doesNotThrow(function () { 170 t.doesNotThrow(function () { 200 t.doesNotThrow(function () { 204 t.doesNotThrow(function () {
|
D | version-no-package.js | 16 t.doesNotThrow(function () {
|
D | publish-access-unscoped.js | 22 t.doesNotThrow(function () {
|
D | publish-access-scoped.js | 22 t.doesNotThrow(function () {
|
D | publish-scoped.js | 57 t.doesNotThrow(function () {
|
D | bundled-transitive-deps.js | 78 t.doesNotThrow(filename + ' exists', function () {
|
D | outdated-json.js | 80 t.doesNotThrow(function () {
|
/third_party/node/test/parallel/ |
D | test-assert.js | 145 a.doesNotThrow(() => thrower(TypeError), a.AssertionError); 157 a.doesNotThrow(() => thrower(TypeError), TypeError); 167 () => a.doesNotThrow(() => thrower(Error), 'user message'), 178 () => a.doesNotThrow(() => thrower(Error)), 186 () => a.doesNotThrow(() => thrower(Error), /\[[a-z]{6}\s[A-z]{6}\]/g, 'user message'), 397 a.doesNotThrow(() => { 424 testBlockTypeError(assert.doesNotThrow, 'string'); 426 testBlockTypeError(assert.doesNotThrow, 1); 428 testBlockTypeError(assert.doesNotThrow, true); 430 testBlockTypeError(assert.doesNotThrow, false); [all …]
|
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/test/ |
D | core.js | 23 st.doesNotThrow( 47 st.doesNotThrow( 72 st.doesNotThrow(
|
D | symlinks.js | 44 t.doesNotThrow(function () {
|
/third_party/node/benchmark/assert/ |
D | throws.js | 4 const { throws, doesNotThrow } = require('assert'); 21 doesNotThrow(doNotThrowError);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | EscapeEnumerator.cpp | 52 if (F.doesNotThrow()) in Next() 60 if (!CI->doesNotThrow()) in Next()
|
/third_party/node/deps/npm/node_modules/fs-vacuum/test/ |
D | other-directories-no-purge.js | 63 t.doesNotThrow(function () { 69 t.doesNotThrow(function () {
|
D | racy-entries.js | 87 t.doesNotThrow(function () { 94 t.doesNotThrow(function () {
|
D | racy-entries-eexist.js | 102 t.doesNotThrow(function () { 109 t.doesNotThrow(function () {
|
D | racy-entries-enotempty.js | 102 t.doesNotThrow(function () { 109 t.doesNotThrow(function () {
|
D | no-entries-no-purge.js | 54 t.doesNotThrow(function () {
|
D | no-entries-with-purge.js | 60 t.doesNotThrow(function () {
|
D | no-entries-file-no-purge.js | 68 t.doesNotThrow(function () {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 93 SCCMightUnwind |= !F->doesNotThrow(); in runImpl() 96 bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow(); in runImpl() 193 if (II->doesNotThrow() && canSimplifyInvokeNoUnwind(F)) { in SimplifyFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Statepoint.h | 150 bool doesNotThrow() const { in doesNotThrow() function 152 return getCall()->doesNotThrow() || (F ? F->doesNotThrow() : false); in doesNotThrow()
|
/third_party/node/deps/npm/node_modules/qs/test/ |
D | parse.js | 253 st.doesNotThrow(function () { 263 st.doesNotThrow(qs.parse.bind(null, 'a=b')); 265 st.doesNotThrow(qs.parse.bind(null, 'a[][b]=c')); 388 st.doesNotThrow(function () { 410 st.doesNotThrow(function () {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyUtilities.cpp | 71 if (F->doesNotThrow()) in mayThrow()
|
123