Home
last modified time | relevance | path

Searched refs:response_parser (Results 1 – 25 of 95) sorted by relevance

1234

/dports/www/p5-WebService-Simple/WebService-Simple-0.24/lib/WebService/
H A DSimple.pm19 response_parser => { module => "XML::Simple" },
32 my $response_parser = delete $args{response_parser}
33 || $class->config->{response_parser};
34 if ( !$response_parser
37 my $config = $response_parser || $class->config->{response_parser};
48 $response_parser = $module->new( %{ $config->{args} || {} } );
75 $self->{response_parser} = $response_parser;
87 sub response_parser { $_[0]->{response_parser} } subroutine
182 parser => $self->response_parser
193 parser => $self->response_parser
[all …]
/dports/devel/cpp-netlib/cpp-netlib-cpp-netlib-0.13.0-final/boost/network/protocol/http/parser/
H A Dincremental.hpp25 struct response_parser { struct
52 explicit response_parser(state_t state = http_response_begin) in response_parser() argument
55 response_parser(response_parser const& other) : state_(other.state_) {} in response_parser() argument
57 ~response_parser() = default;
59 void swap(response_parser& other) { std::swap(other.state_, this->state_); } in swap() argument
61 response_parser& operator=(response_parser rhs) { in operator =() argument
/dports/www/p5-WebService-Simple/WebService-Simple-0.24/t/
H A D02_parser.t15 isa_ok( $service->{response_parser}, "WebService::Simple::Parser::XML::Simple" );
21 response_parser => 'JSON'
24 isa_ok( $service->{response_parser}, "WebService::Simple::Parser::JSON" );
H A D02_parser_xml_feed.t17 response_parser => 'XML::Feed',
21 isa_ok( $service->response_parser,
H A D02_parser_libxml.t19 response_parser => 'XML::LibXML',
24 isa_ok( $service->response_parser, "WebService::Simple::Parser::XML::LibXML");
H A D02_parser_json.t13 response_parser => 'JSON',
19 isa_ok( $service->response_parser, "WebService::Simple::Parser::JSON");
H A D02_parser_lite.t22 response_parser => 'XML::Lite',
27 isa_ok( $service->response_parser, "WebService::Simple::Parser::XML::Lite");
H A D01_basic.t27 ok( $simple->response_parser, "parser ok" );
28 …isa_ok( $simple->response_parser, "WebService::Simple::Parser::XML::Simple", "parser isa WebServic…
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/websockets/
H A Dwebsocket_deflate_parameters_test.cc159 WebSocketExtensionParser response_parser; in TEST_P() local
160 ASSERT_TRUE(response_parser.Parse("permessage-deflate" + response_query)); in TEST_P()
161 ASSERT_EQ(1u, response_parser.extensions().size()); in TEST_P()
162 ASSERT_TRUE(response.Initialize(response_parser.extensions()[0], &message)); in TEST_P()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/websockets/
H A Dwebsocket_deflate_parameters_test.cc159 WebSocketExtensionParser response_parser; in TEST_P() local
160 ASSERT_TRUE(response_parser.Parse("permessage-deflate" + response_query)); in TEST_P()
161 ASSERT_EQ(1u, response_parser.extensions().size()); in TEST_P()
162 ASSERT_TRUE(response.Initialize(response_parser.extensions()[0], &message)); in TEST_P()
/dports/devel/boost-docs/boost_1_72_0/libs/beast/test/beast/http/
H A Ddynamic_body.cpp51 response_parser<dynamic_body> p; in test_success()
72 response_parser<dynamic_body> p; in test_issue1581()
/dports/devel/boost-python-libs/boost_1_72_0/libs/beast/test/beast/http/
H A Ddynamic_body.cpp51 response_parser<dynamic_body> p; in test_success()
72 response_parser<dynamic_body> p; in test_issue1581()
/dports/devel/boost-libs/boost_1_72_0/libs/beast/test/beast/http/
H A Ddynamic_body.cpp51 response_parser<dynamic_body> p; in test_success()
72 response_parser<dynamic_body> p; in test_issue1581()
/dports/devel/hyperscan/boost_1_75_0/libs/beast/test/beast/http/
H A Ddynamic_body.cpp51 response_parser<dynamic_body> p; in test_success()
72 response_parser<dynamic_body> p; in test_issue1581()
H A Dparser.cpp269 response_parser<string_body> p; in testParse()
370 response_parser<string_body> parser; in testIssue1880()
378 response_parser<string_body> parser; in testIssue1880()
/dports/graphics/yacreader/yacreader-9.8.2/YACReaderLibrary/comic_vine/
H A Dcomic_vine.pri15 comic_vine/model/response_parser.h \
39 comic_vine/model/response_parser.cpp \
/dports/net/kea/kea-2.0.1/src/lib/http/
H A DMakefile.am35 libkea_http_la_SOURCES += response_parser.cc response_parser.h
132 response_parser.h \
H A DMakefile.in165 libkea_http_la-response_parser.lo \
219 ./$(DEPDIR)/libkea_http_la-response_parser.Plo \
546 request_parser.h response.cc response.h response_parser.cc \
547 response_parser.h response_context.h response_creator.cc \
598 response_parser.h \
702 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libkea_http_la-response_parser.Plo@am__quote@ # am…
844 libkea_http_la-response_parser.lo: response_parser.cc
845response_parser.lo -MD -MP -MF $(DEPDIR)/libkea_http_la-response_parser.Tpo -c -o libkea_http_la-r…
846 … $(AM_V_at)$(am__mv) $(DEPDIR)/libkea_http_la-response_parser.Tpo $(DEPDIR)/libkea_http_la-respons…
1159 -rm -f ./$(DEPDIR)/libkea_http_la-response_parser.Plo
[all …]
/dports/devel/cpp-netlib/cpp-netlib-cpp-netlib-0.13.0-final/libs/network/test/http/
H A Dresponse_incremental_parser_test.cpp66 response_parser<tags::default_string> p; // default constructible in TEST()
76 response_parser<tags::default_string> p; // default constructible in TEST()
78 typedef response_parser<tags::default_string> response_parser_type; in TEST()
128 typedef response_parser<tags::default_string> response_parser_type; in TYPED_TEST()
165 typedef response_parser<tags::default_string> response_parser_type; in TYPED_TEST()
215 typedef response_parser<tags::default_string> response_parser_type; in TYPED_TEST()
/dports/mail/py-imapclient/IMAPClient-2.2.0/imapclient/
H A D__init__.py11 from .response_parser import *
/dports/net/measurement-kit/measurement-kit-0.10.14/test/http/
H A D.gitignore5 /response_parser
/dports/www/p5-WebService-Simple/WebService-Simple-0.24/example/
H A Dhatenastar_jsonp.pl8 response_parser => 'JSON',
H A Dgoogle_search.pl8 response_parser => 'JSON',
H A Dflickr_json.pl8 response_parser => 'JSON',
H A Dflickr_search_liteparser.pl8 response_parser => 'XML::Lite',

1234