Home
last modified time | relevance | path

Searched refs:wos (Results 1 – 25 of 418) sorted by relevance

12345678910>>...17

/dports/www/uwsgi/uwsgi-2.0.20/contrib/
H A Duwsgi.java57 wos.writeBytes("REQUEST_METHOD"); in uWSGIHandler()
62 wos.writeBytes("QUERY_STRING"); in uWSGIHandler()
68 wos.writeShort(0); in uWSGIHandler()
72 wos.writeBytes("SERVER_NAME"); in uWSGIHandler()
77 wos.writeBytes("SERVER_PORT"); in uWSGIHandler()
87 wos.writeBytes("REQUEST_URI"); in uWSGIHandler()
106 wos.writeBytes("SCRIPT_NAME"); in uWSGIHandler()
108 wos.writeBytes( mountpoint ); in uWSGIHandler()
113 wos.writeBytes("PATH_INFO"); in uWSGIHandler()
124 wos.writeBytes("REMOTE_ADDR"); in uWSGIHandler()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/slint/src/cpp/
H A DFunctionArgsChecker.cpp68 std::wostringstream wos; in preCheckNode() local
71 wos << i->getName() << L", "; in preCheckNode()
73 wos << std::prev(in_dup.end())->getName(); in preCheckNode()
74 …result.report(context, e.getLocation(), *this, _("Duplicated function arguments: %s."), wos.str()); in preCheckNode()
79 std::wostringstream wos; in preCheckNode() local
82 wos << i->getName() << L", "; in preCheckNode()
84 wos << std::prev(out_dup.end())->getName(); in preCheckNode()
85 …lt.report(context, e.getLocation(), *this, _("Duplicated function output values: %s."), wos.str()); in preCheckNode()
90 std::wostringstream wos; in preCheckNode() local
93 wos << i->getName() << L", "; in preCheckNode()
[all …]
H A DLineLengthChecker.cpp43 std::wostringstream wos; in preCheckFile() local
46 wos << *i << L", "; in preCheckFile()
48 wos << *std::prev(out.end()); in preCheckFile()
49 …ult.report(context, Location(), *this, _("Maximum line length exceeded at lines: %s."), wos.str()); in preCheckFile()
H A DMopenMcloseChecker.cpp103 std::wostringstream wos; in postCheckNode() local
107 wos << i->first.getName() << L", "; in postCheckNode()
109 wos << std::prev(map.end())->first.getName(); in postCheckNode()
110 … result.report(context, e.getLocation(), *this, _("Open files not closed: %s."), wos.str()); in postCheckNode()
/dports/www/py-pyramid/pyramid-1.7.3/pyramid/tests/
H A Dtest_util.py309 wos.add(reg)
318 wos.add(reg1)
319 wos.add(reg2)
329 wos.add(reg)
330 wos.add(reg)
339 wos.add(reg)
349 wos.add(reg)
350 wos.add(reg2)
360 wos.add(reg)
361 wos.add(reg2)
[all …]
/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnscore/src/
H A Ddnscore.c408 output_stream *wos = NULL; in stdstream_detach_fd() local
413 if(is_mt_output_stream(wos)) in stdstream_detach_fd()
416 wos = &filtered; in stdstream_detach_fd()
420 wos = buffer_output_stream_get_filtered(wos); in stdstream_detach_fd()
421 if(is_fd_output_stream(wos)) in stdstream_detach_fd()
441 wos = buffer_output_stream_get_filtered(wos); in stdstream_detach_fd()
467 output_stream *wos = NULL; in stdstream_detach_fd_and_close_filtered() local
472 if(is_mt_output_stream(wos)) in stdstream_detach_fd_and_close_filtered()
475 wos = &filtered; in stdstream_detach_fd_and_close_filtered()
479 wos = buffer_output_stream_get_filtered(wos); in stdstream_detach_fd_and_close_filtered()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/ast/src/cpp/analysis/
H A DVarExp.cpp23 std::wostringstream wos; in print() local
27 wos << i->second; in print()
31 wos << L"$" << var; in print()
36 wos << L"^" << exp; in print()
38 return wos.str(); in print()
H A DMultivariateMonomial.cpp145 std::wostringstream wos; in print() local
150 wos << L'-'; in print()
154 wos << monomial.begin()->print(vars); in print()
157 wos << L"*" << i->print(vars); in print()
163 wos << coeff; in print()
166 wos << L"*" << ve.print(vars); in print()
169 return wos.str(); in print()
H A DMultivariatePolynomial.cpp712 std::wostringstream wos; in print() local
715 wos << constant; in print()
723 wos << constant; in print()
726 wos << L'+' << i->print(vars); in print()
730 wos << i->print(vars); in print()
735 wos << i->print(vars); in print()
742 wos << L'+' << i->print(vars); in print()
746 wos << i->print(vars); in print()
751 return wos.str(); in print()
/dports/math/polymake/polymake-4.5/apps/topaz/src/
H A Dweb_of_stars.cc36 IncidenceMatrix<> wos(poset_hom.size(), simplices.size()); in web_of_stars() local
41 wos[i] = image_indices; in web_of_stars()
43 return wos; in web_of_stars()
/dports/math/scilab/scilab-6.1.1/scilab/modules/slint/includes/output/
H A DSLintResult.hxx77 std::wostringstream wos; in make_string() local
78 make_string(wos, err.c_str(), args...); in make_string()
79 return wos.str(); in make_string()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java960 OutputStream wos = MimeUtility.encode(os, getEncoding());
961 getDataHandler().writeTo(wos);
962 if(os!=wos)
963 wos.flush(); // Needed to complete encoding
965 OutputStream wos = MimeUtility.encode(os, getEncoding());
966 getDataHandler().writeTo(wos);
967 if(os!=wos)
968 wos.flush(); // Needed to complete encoding
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java960 OutputStream wos = MimeUtility.encode(os, getEncoding());
961 getDataHandler().writeTo(wos);
962 if(os!=wos)
963 wos.flush(); // Needed to complete encoding
965 OutputStream wos = MimeUtility.encode(os, getEncoding());
966 getDataHandler().writeTo(wos);
967 if(os!=wos)
968 wos.flush(); // Needed to complete encoding
/dports/misc/otter/otter-3.3f/examples/
H A DRun_all.out88 Running wos/cursory.in ...
90 Running wos/grp_exp3.in ...
92 Running wos/grp_exp4.in ...
94 Running wos/manyval.in ...
96 Running wos/rigorous.in ...
98 Running wos/rob_occ.in ...
100 Running wos/twoval.in ...
105 The output files have been left in wos/*.out24845.
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/artwork/
H A DMakefile.am11 …sicbrainz.c musicbrainz.h albumartorg.c albumartorg.h lastfm.c lastfm.h wos.c wos.h escape.c escap…
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/asio/test/ip/
H A Daddress.cpp107 std::wostringstream wos; in test() local
108 wos << addr1; in test()
/dports/databases/percona57-server/boost_1_59_0/libs/asio/test/ip/
H A Daddress.cpp107 std::wostringstream wos; in test() local
108 wos << addr1; in test()
/dports/databases/xtrabackup/boost_1_59_0/libs/asio/test/ip/
H A Daddress.cpp107 std::wostringstream wos; in test() local
108 wos << addr1; in test()
/dports/databases/percona57-client/boost_1_59_0/libs/asio/test/ip/
H A Daddress.cpp107 std::wostringstream wos; in test() local
108 wos << addr1; in test()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/asio/test/ip/
H A Daddress.cpp107 std::wostringstream wos; in test() local
108 wos << addr1; in test()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/link/modules/asio-standalone/asio/src/tests/unit/ip/
H A Daddress.cpp114 std::wostringstream wos; in test() local
115 wos << addr1; in test()
/dports/emulators/mess/mame-mame0226/3rdparty/asio/src/tests/unit/ip/
H A Daddress.cpp127 std::wostringstream wos; in test() local
128 wos << addr1; in test()
/dports/emulators/mame/mame-mame0226/3rdparty/asio/src/tests/unit/ip/
H A Daddress.cpp127 std::wostringstream wos; in test() local
128 wos << addr1; in test()
/dports/devel/boost-docs/boost_1_72_0/libs/asio/test/ip/
H A Daddress.cpp127 std::wostringstream wos; in test() local
128 wos << addr1; in test()
/dports/multimedia/obs-websocket/obs-websocket-4.8.0/deps/asio/asio/src/tests/unit/ip/
H A Daddress.cpp127 std::wostringstream wos; in test() local
128 wos << addr1; in test()

12345678910>>...17