/third_party/node/test/internet/ |
D | test-dns-lookup.js | 11 dnsPromises.lookup(addresses.NOT_FOUND, { 18 message: `getaddrinfo ENOTFOUND ${addresses.NOT_FOUND}`, 23 dnsPromises.lookup(addresses.NOT_FOUND, { 30 message: `getaddrinfo ENOTFOUND ${addresses.NOT_FOUND}`, 34 dns.lookup(addresses.NOT_FOUND, { 42 `getaddrinfo ENOTFOUND ${addresses.NOT_FOUND}`, 45 assert.strictEqual(error.hostname, addresses.NOT_FOUND); 49 () => dnsPromises.lookup(addresses.NOT_FOUND, {
|
D | test-dns.js | 166 dnsPromises.resolveMx(addresses.NOT_FOUND) 172 const req = dns.resolveMx(addresses.NOT_FOUND, function(err, result) { 206 dnsPromises.resolveNs(addresses.NOT_FOUND) 212 const req = dns.resolveNs(addresses.NOT_FOUND, function(err, result) { 250 dnsPromises.resolveSrv(addresses.NOT_FOUND) 256 const req = dns.resolveSrv(addresses.NOT_FOUND, function(err, result) { 290 dnsPromises.resolvePtr(addresses.NOT_FOUND) 296 const req = dns.resolvePtr(addresses.NOT_FOUND, function(err, result) { 335 dnsPromises.resolveNaptr(addresses.NOT_FOUND) 341 const req = dns.resolveNaptr(addresses.NOT_FOUND, function(err, result) { [all …]
|
/third_party/python/Lib/test/test_importlib/source/ |
D | test_finder.py | 179 self.assertEqual(found, self.NOT_FOUND) 187 self.assertEqual(found, self.NOT_FOUND) 192 NOT_FOUND = None variable in FinderTestsPEP451 206 NOT_FOUND = (None, []) variable in FinderTestsPEP420 222 NOT_FOUND = None variable in FinderTestsPEP302
|
/third_party/python/Objects/stringlib/ |
D | fastsearch.h | 290 #define NOT_FOUND ((1U<<(8*sizeof(SHIFT_TYPE))) - 1U) macro 291 #define SHIFT_OVERFLOW (NOT_FOUND - 1U) 328 assert(p->table[0] == NOT_FOUND); in STRINGLIB() 329 assert(p->table[TABLE_MASK] == NOT_FOUND); in STRINGLIB() 376 if (shift == NOT_FOUND) { in STRINGLIB() 432 if (shift == NOT_FOUND) { in STRINGLIB() 507 #undef NOT_FOUND
|
/third_party/node/deps/v8/src/objects/ |
D | lookup.h | 63 NOT_FOUND, enumerator 118 bool IsFound() const { return state_ != NOT_FOUND; } in IsFound() 122 state_ = NOT_FOUND; in NotFound() 297 State state_ = NOT_FOUND;
|
D | lookup.cc | 74 state_ = NOT_FOUND; in Start() 117 state_ = NOT_FOUND; in NextInternal() 581 DCHECK(state_ == NOT_FOUND || !HolderIsReceiverOrHiddenPrototype()); in PrepareTransitionToDataProperty() 735 state_ = NOT_FOUND; in Delete() 755 state_ = NOT_FOUND; in TransitionToAccessorProperty() 1226 if (!holder.IsJSTypedArray(isolate_)) return NOT_FOUND; in NotFound() 1228 if (!name_->IsString(isolate_)) return NOT_FOUND; in NotFound() 1230 : NOT_FOUND; in NotFound() 1257 case NOT_FOUND: in LookupInSpecialHolder() 1283 if (number_.is_not_found()) return NOT_FOUND; in LookupInSpecialHolder() [all …]
|
/third_party/alsa-lib/src/control/ |
D | hcontrol.c | 57 #define NOT_FOUND 1000000000 macro 229 return NOT_FOUND; in snd_hctl_compare_mixer_priority_lookup() 298 …((res = snd_hctl_compare_mixer_priority_lookup((const char **)&name, names, 1000000)) == NOT_FOUND) in get_compare_weight() 299 return NOT_FOUND; in get_compare_weight() 309 … ((res1 = snd_hctl_compare_mixer_priority_lookup((const char **)&name, names1, 1000)) == NOT_FOUND) in get_compare_weight() 315 if ((res1 = snd_hctl_compare_mixer_priority_lookup((const char **)&name, names2, 1)) == NOT_FOUND) in get_compare_weight()
|
/third_party/protobuf/src/google/protobuf/util/ |
D | type_resolver_util.cc | 68 using util::error::NOT_FOUND; 85 return Status(util::error::NOT_FOUND, in ResolveMessageType() 102 return Status(util::error::NOT_FOUND, in ResolveEnumType()
|
/third_party/node/test/common/ |
D | internet.js | 26 NOT_FOUND: 'come.on.fhqwhgads.test', property
|
/third_party/python/Lib/test/ |
D | test_httpservers.py | 109 self.send_error(HTTPStatus.NOT_FOUND) 251 self.assertEqual(res.status, HTTPStatus.NOT_FOUND) 305 self.send_error(HTTPStatus.NOT_FOUND, 'File not found') 475 self.check_status_and_reason(response, HTTPStatus.NOT_FOUND) 488 self.check_status_and_reason(response, HTTPStatus.NOT_FOUND) 490 self.check_status_and_reason(response, HTTPStatus.NOT_FOUND) 504 self.check_status_and_reason(response, HTTPStatus.NOT_FOUND) 577 self.check_status_and_reason(response, HTTPStatus.NOT_FOUND) 822 self.assertEqual(res.status, HTTPStatus.NOT_FOUND) 835 self.assertEqual(res.status, HTTPStatus.NOT_FOUND)
|
D | test_codecs.py | 3496 NOT_FOUND = (None, None, None, None) 3501 return NOT_FOUND 3510 self.assertEqual(NOT_FOUND, codecs.lookup('AAA.8')) 3511 self.assertEqual(NOT_FOUND, codecs.lookup('AAA...8')) 3512 self.assertEqual(NOT_FOUND, codecs.lookup('BBB-8')) 3513 self.assertEqual(NOT_FOUND, codecs.lookup('BBB.8')) 3514 self.assertEqual(NOT_FOUND, codecs.lookup('a\xe9\u20ac-8'))
|
/third_party/python/Lib/http/ |
D | __init__.py | 79 NOT_FOUND = (404, 'Not Found', variable in HTTPStatus
|
D | server.py | 716 self.send_error(HTTPStatus.NOT_FOUND, "File not found") 721 self.send_error(HTTPStatus.NOT_FOUND, "File not found") 777 HTTPStatus.NOT_FOUND, 1074 HTTPStatus.NOT_FOUND,
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | status.h | 52 NOT_FOUND = 5, enumerator
|
D | status.cc | 53 case NOT_FOUND: in CodeEnumToString()
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_net_http.js | 47 NOT_FOUND: 404, property
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuCommandLine.cpp | 344 enum { NOT_FOUND = -1 }; enumerator 366 return NOT_FOUND; in findChildNdx() 371 return findChildNdx(name) != NOT_FOUND; in hasChild() 377 return ndx == NOT_FOUND ? DE_NULL : m_children[ndx]; in getChild() 383 return ndx == NOT_FOUND ? DE_NULL : m_children[ndx]; in getChild()
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-forin.cc | 60 case LookupIterator::NOT_FOUND: in HasEnumerableProperty()
|
/third_party/nghttp2/third-party/llhttp/include/ |
D | llhttp.h | 466 XX(404, NOT_FOUND, NOT_FOUND) \
|
/third_party/python/Doc/library/ |
D | http.rst | 88 ``404`` ``NOT_FOUND`` HTTP/1.1 :rfc:`7231`, Section 6.5.4
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-object.cc | 120 case LookupIterator::NOT_FOUND: in ObjectLookupAccessor()
|
/third_party/node/src/ |
D | node_http_common.h | 153 V(NOT_FOUND, 404) \
|
/third_party/json/tools/serve_header/ |
D | serve_header.py | 276 super().send_error(HTTPStatus.NOT_FOUND, 'Not Found')
|
/third_party/node/deps/v8/src/ic/ |
D | ic.cc | 209 case LookupIterator::NOT_FOUND: in LookupForRead() 1219 case LookupIterator::NOT_FOUND: in ComputeHandler() 1607 case LookupIterator::NOT_FOUND: in LookupForWrite() 1779 case LookupIterator::NOT_FOUND: in DefineOwnDataProperty() 1786 case LookupIterator::NOT_FOUND: in DefineOwnDataProperty() 2192 case LookupIterator::NOT_FOUND: in ComputeHandler()
|
/third_party/protobuf/cmake/ |
D | CMakeLists.txt | 141 # Explicitly set these to empty (override NOT_FOUND) so cmake doesn't
|