Home
last modified time | relevance | path

Searched refs:wild (Results 1 – 25 of 115) sorted by relevance

12345

/third_party/grpc/src/core/lib/iomgr/
Dtcp_server_utils_posix_ifaddrs.cc62 grpc_resolved_address wild; in get_unused_port() local
63 grpc_sockaddr_make_wildcard6(0, &wild); in get_unused_port()
67 grpc_create_dualstack_socket(&wild, SOCK_STREAM, 0, &dsmode, &fd); in get_unused_port()
72 grpc_sockaddr_make_wildcard4(0, &wild); in get_unused_port()
74 if (bind(fd, reinterpret_cast<const grpc_sockaddr*>(wild.addr), wild.len) != in get_unused_port()
80 if (getsockname(fd, reinterpret_cast<grpc_sockaddr*>(wild.addr), &wild.len) != in get_unused_port()
87 *port = grpc_sockaddr_get_port(&wild); in get_unused_port()
/third_party/boost/libs/regex/src/
Dfileiter.cpp378 inline _fi_find_handle find_first_file(const char* wild, _fi_find_data& data) in find_first_file() argument
381 std::size_t wild_size = std::strlen(wild); in find_first_file()
383 if (::MultiByteToWideChar(CP_ACP, 0, wild, wild_size, wide_wild, wild_size + 1) == 0) in find_first_file()
388 return FindFirstFileA(wild, &data); in find_first_file()
451 file_iterator::file_iterator(const char* wild) in file_iterator() argument
462 …EGEX_DETAIL_NS::overflow_error_if_not_zero(BOOST_REGEX_DETAIL_NS::strcpy_s(_root, MAX_PATH, wild)); in file_iterator()
483 ref->hf = find_first_file(wild, ref->_data); in file_iterator()
629 directory_iterator::directory_iterator(const char* wild) in directory_iterator() argument
640 …EGEX_DETAIL_NS::overflow_error_if_not_zero(BOOST_REGEX_DETAIL_NS::strcpy_s(_root, MAX_PATH, wild)); in directory_iterator()
663 ref->hf = find_first_file(wild, ref->_data); in directory_iterator()
/third_party/libwebsockets/lib/misc/
Dlejp.c172 ctx->wild[ctx->wildcount++] = (uint16_t)lws_ptr_diff_size_t(p, ctx->path); in lejp_check_path_match()
205 n = ctx->wild[wildcard]; in lejp_get_wildcard()
208 (n == ctx->wild[wildcard] || ctx->path[n] != '.')) in lejp_get_wildcard()
214 return n - ctx->wild[wildcard]; in lejp_get_wildcard()
/third_party/boost/boost/regex/v4/
Dfileiter.hpp399 file_iterator(const char* wild);
469 directory_iterator(const char* wild);
/third_party/icu/icu4c/source/tools/toolutil/
Dpackage.cpp937 const char *wild; in findItems() local
948 wild=strchr(pattern, '*'); in findItems()
949 if(wild==NULL) { in findItems()
954 findPrefixLength=(int32_t)(wild-pattern); in findItems()
955 findSuffix=wild+1; in findItems()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dpackage.cpp937 const char *wild; in findItems() local
948 wild=strchr(pattern, '*'); in findItems()
949 if(wild==NULL) { in findItems()
954 findPrefixLength=(int32_t)(wild-pattern); in findItems()
955 findSuffix=wild+1; in findItems()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dpackage.cpp937 const char *wild; in findItems() local
948 wild=strchr(pattern, '*'); in findItems()
949 if(wild==NULL) { in findItems()
954 findPrefixLength=(int32_t)(wild-pattern); in findItems()
955 findSuffix=wild+1; in findItems()
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Dpackage.cpp937 const char *wild; in findItems() local
948 wild=strchr(pattern, '*'); in findItems()
949 if(wild==NULL) { in findItems()
954 findPrefixLength=(int32_t)(wild-pattern); in findItems()
955 findSuffix=wild+1; in findItems()
/third_party/libwebsockets/include/libwebsockets/
Dlws-lejp.h231 uint16_t wild[LEJP_MAX_INDEX_DEPTH]; /* index array */ member
Dlws-lecp.h259 uint16_t wild[LECP_MAX_INDEX_DEPTH]; /* index array */ member
/third_party/python/Lib/test/test_email/data/
Dmsg_38.txt35 a case of this in the wild, but I've seen *similar* things.
/third_party/libxml2/
Dxmlschemastypes.c418 xmlSchemaWildcardPtr wild; in xmlSchemaInitTypes() local
442 wild = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard)); in xmlSchemaInitTypes()
443 if (wild == NULL) { in xmlSchemaInitTypes()
447 memset(wild, 0, sizeof(xmlSchemaWildcard)); in xmlSchemaInitTypes()
448 wild->type = XML_SCHEMA_TYPE_ANY; in xmlSchemaInitTypes()
449 wild->any = 1; in xmlSchemaInitTypes()
450 wild->processContents = XML_SCHEMAS_ANY_LAX; in xmlSchemaInitTypes()
451 particle->children = (xmlSchemaTreeItemPtr) wild; in xmlSchemaInitTypes()
455 wild = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard)); in xmlSchemaInitTypes()
456 if (wild == NULL) { in xmlSchemaInitTypes()
[all …]
Dxmlschemas.c6988 xmlSchemaWildcardPtr wild; in xmlSchemaParseAny() local
7027 wild = xmlSchemaAddWildcard(ctxt, schema, XML_SCHEMA_TYPE_ANY, node); in xmlSchemaParseAny()
7028 if (wild == NULL) in xmlSchemaParseAny()
7030 xmlSchemaParseWildcardNs(ctxt, schema, wild, node); in xmlSchemaParseAny()
7059 particle->children = (xmlSchemaTreeItemPtr) wild; in xmlSchemaParseAny()
12847 xmlSchemaWildcardPtr wild; in xmlSchemaBuildAContentModel() local
12850 wild = (xmlSchemaWildcardPtr) particle->children; in xmlSchemaBuildAContentModel()
12856 if (wild->any == 1) { in xmlSchemaBuildAContentModel()
12864 start, NULL, BAD_CAST "*", BAD_CAST "*", wild); in xmlSchemaBuildAContentModel()
12871 start, NULL, BAD_CAST "*", NULL, wild); in xmlSchemaBuildAContentModel()
[all …]
/third_party/gettext/gnulib-local/lib/libxml/
Dxmlschemastypes.c447 xmlSchemaWildcardPtr wild; in xmlSchemaInitTypes() local
471 wild = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard)); in xmlSchemaInitTypes()
472 if (wild == NULL) { in xmlSchemaInitTypes()
476 memset(wild, 0, sizeof(xmlSchemaWildcard)); in xmlSchemaInitTypes()
477 wild->type = XML_SCHEMA_TYPE_ANY; in xmlSchemaInitTypes()
478 wild->any = 1; in xmlSchemaInitTypes()
479 wild->processContents = XML_SCHEMAS_ANY_LAX; in xmlSchemaInitTypes()
480 particle->children = (xmlSchemaTreeItemPtr) wild; in xmlSchemaInitTypes()
484 wild = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard)); in xmlSchemaInitTypes()
485 if (wild == NULL) { in xmlSchemaInitTypes()
[all …]
Dxmlschemas.c6966 xmlSchemaWildcardPtr wild; in xmlSchemaParseAny() local
7005 wild = xmlSchemaAddWildcard(ctxt, schema, XML_SCHEMA_TYPE_ANY, node); in xmlSchemaParseAny()
7006 if (wild == NULL) in xmlSchemaParseAny()
7008 xmlSchemaParseWildcardNs(ctxt, schema, wild, node); in xmlSchemaParseAny()
7037 particle->children = (xmlSchemaTreeItemPtr) wild; in xmlSchemaParseAny()
12825 xmlSchemaWildcardPtr wild; in xmlSchemaBuildAContentModel() local
12828 wild = (xmlSchemaWildcardPtr) particle->children; in xmlSchemaBuildAContentModel()
12834 if (wild->any == 1) { in xmlSchemaBuildAContentModel()
12842 start, NULL, BAD_CAST "*", BAD_CAST "*", wild); in xmlSchemaBuildAContentModel()
12849 start, NULL, BAD_CAST "*", NULL, wild); in xmlSchemaBuildAContentModel()
[all …]
/third_party/boost/libs/regex/doc/
Dold_regex.qbk173 The parameter /files/ can include wild card characters '\*' and '\?', if
187 The parameter /files/ can include wild card characters '\*' and '\?', if
202 The parameter /files/ can include wild card characters '\*' and '\?', if
217 The parameter /files/ can include wild card characters '\*' and '\?', if
/third_party/node/deps/npm/node_modules/validate-npm-package-name/
DREADME.md86 In the old days of npm, package names were wild. They could have capital
/third_party/openssl/doc/man7/
Dossl_store-file.pod40 determinism (for example, there are keys out in the wild that are
/third_party/json/test/thirdparty/doctest/
Ddoctest.h3466 int wildcmp(const char* str, const char* wild, bool caseSensitive) {
3470 while((*str) && (*wild != '*')) {
3471 if((caseSensitive ? (*wild != *str) : (tolower(*wild) != tolower(*str))) &&
3472 (*wild != '?')) {
3475 wild++;
3480 if(*wild == '*') {
3481 if(!*++wild) {
3484 mp = wild;
3486 } else if((caseSensitive ? (*wild == *str) : (tolower(*wild) == tolower(*str))) ||
3487 (*wild == '?')) {
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/
DREADME.md158 …nding.gyp" files out in the wild* wiki page](https://github.com/nodejs/node-gyp/wiki/%22binding.gy…
/third_party/skia/src/sksl/
DREADME7 in GLSL "in the wild", but it does bring a few of its own changes to the table.
/third_party/ltp/tools/sparse/sparse-src/
DFAQ62 ancient C. It's open source, after all. Go wild.
/third_party/boost/libs/xpressive/doc/
Dtips_n_tricks.qbk30 Caveat: _match_results_ objects are not thread-safe, so don't go wild
/third_party/curl/docs/
DSSL-PROBLEMS.md79 the wild didn't work properly with the BEAST mitigation in place.
/third_party/flutter/flutter/packages/flutter/test/cupertino/
Dpicker_test.dart394 // A wild throw appears.

12345