Searched refs:response (Results 1 - 25 of 788) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebURLResponse.cpp31 WebURLResponse::WebURLResponse(const WebCore::ResourceResponse& response) argument
32 : m_response(response)
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_url_response.cpp34 EwkUrlResponse::EwkUrlResponse(WKURLResponseRef response) argument
35 : m_response(response)
36 , m_url(AdoptWK, WKURLResponseCopyURL(response))
37 , m_mimeType(AdoptWK, WKURLResponseCopyMIMEType(response))
60 const char* ewk_url_response_url_get(const Ewk_Url_Response* response) argument
62 EWK_OBJ_GET_IMPL_OR_RETURN(const EwkUrlResponse, response, impl, 0);
67 int ewk_url_response_status_code_get(const Ewk_Url_Response* response) argument
69 EWK_OBJ_GET_IMPL_OR_RETURN(const EwkUrlResponse, response, impl, 0);
74 const char* ewk_url_response_mime_type_get(const Ewk_Url_Response* response) argument
76 EWK_OBJ_GET_IMPL_OR_RETURN(const EwkUrlResponse, response, imp
81 ewk_url_response_content_length_get(const Ewk_Url_Response* response) argument
[all...]
H A Dewk_url_response.h28 * @brief Describes the Ewk URL response API.
48 * Query URL for this response.
50 * @param response response object to query.
58 EAPI const char *ewk_url_response_url_get(const Ewk_Url_Response *response);
61 * Query HTTP status code for this response.
66 * @param response response object to query.
70 EAPI int ewk_url_response_status_code_get(const Ewk_Url_Response *response);
73 * Query MIME type for this response
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/
H A Dterraserver.pl20 my $response = $terra->GetTheme(SOAP::Data->name(theme => 'Photo'));
22 if ($response->fault) {
23 die $response->faultstring;
25 my %result = %{$response->result};
38 $response = $terra->call($method => @params);
40 if ($response->fault) {
41 print $response->faultcode, " ", $response->faultstring, "\n";
43 foreach ($response->valueof('//PlaceFacts')) {
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/
H A Dterraserver.pl20 my $response = $terra->GetTheme(SOAP::Data->name(theme => 'Photo'));
22 if ($response->fault) {
23 die $response->faultstring;
25 my %result = %{$response->result};
38 $response = $terra->call($method => @params);
40 if ($response->fault) {
41 print $response->faultcode, " ", $response->faultstring, "\n";
43 foreach ($response->valueof('//PlaceFacts')) {
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/
H A Dterraserver.pl20 my $response = $terra->GetTheme(SOAP::Data->name(theme => 'Photo'));
22 if ($response->fault) {
23 die $response->faultstring;
25 my %result = %{$response->result};
38 $response = $terra->call($method => @params);
40 if ($response->fault) {
41 print $response->faultcode, " ", $response->faultstring, "\n";
43 foreach ($response->valueof('//PlaceFacts')) {
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DRTCStatsCallback.idl28 boolean handleEvent(RTCStatsResponse response);
/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestnetworkresponse.c32 WebKitNetworkResponse* response; local
36 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "uri", "http://debian.org/", NULL));
37 g_assert(WEBKIT_IS_NETWORK_RESPONSE(response));
38 message = webkit_network_response_get_message(response);
40 g_object_unref(response);
44 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "message", message, NULL));
45 g_assert(WEBKIT_IS_NETWORK_RESPONSE(response));
47 g_object_unref(response);
53 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "message", message, "uri", "http://gnome.org/", NULL));
54 g_assert(WEBKIT_IS_NETWORK_RESPONSE(response));
64 WebKitNetworkResponse* response; local
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Drpmatch.c1 /* Determine whether string value is affirmation or negative response
34 try (const char *response, const char *pattern, const int match, argument
53 return regexec (re, response, 0, NULL, 0) == 0 ? match : nomatch;
59 rpmatch (const char *response) argument
62 /* Match against one of the response patterns, compiling the pattern
65 /* We cache the response patterns and compiled regexps here. */
70 return ((result = try (response, _("^[yY]"), 1, 0,
73 : try (response, _("^[nN]"), 0, -1, &noexpr, &nore));
76 return (*response == 'y' || *response
[all...]
/macosx-10.9.5/CPANInternal-140/Apache2-SOAP/t/lib/TestSOAP/
H A Dconvert.pm9 my $response = ($mode eq 'uc') ? uc($string) : lc($string);
10 return {results => $response};
/macosx-10.9.5/CPANInternal-140/Apache2-SOAP-0.73/t/lib/TestSOAP/
H A Dconvert.pm9 my $response = ($mode eq 'uc') ? uc($string) : lc($string);
10 return {results => $response};
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DExtension.pm12 #fetch the response name
23 # fetch the response.
24 sub response { subroutine
29 exists $self->{response}
30 ? $self->{response}
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitURIResponse.cpp33 * @Short_description: Represents a URI response
63 WebKitURIResponse* response = WEBKIT_URI_RESPONSE(object); local
67 g_value_set_string(value, webkit_uri_response_get_uri(response));
70 g_value_set_uint(value, webkit_uri_response_get_status_code(response));
73 g_value_set_uint64(value, webkit_uri_response_get_content_length(response));
76 g_value_set_string(value, webkit_uri_response_get_mime_type(response));
79 g_value_set_string(value, webkit_uri_response_get_suggested_filename(response));
94 * The URI for which the response was made.
100 _("The URI for which the response was made."),
106 * The status code of the response a
162 webkit_uri_response_get_uri(WebKitURIResponse* response) argument
181 webkit_uri_response_get_status_code(WebKitURIResponse* response) argument
197 webkit_uri_response_get_content_length(WebKitURIResponse* response) argument
210 webkit_uri_response_get_mime_type(WebKitURIResponse* response) argument
229 webkit_uri_response_get_suggested_filename(WebKitURIResponse* response) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/test/net/imap/
H A Dtest_imap_response_parser.rb23 response = lambda {
29 assert_equal [:Haschildren], response.data.attr
61 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
64 assert_equal [:Inbox], response.data.attr
69 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
72 assert_equal "CLOSED", response.data.code.name
77 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
80 assert_equal [], response.data
81 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
84 assert_equal [1], response
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_commands_owner_command.rb17 response = <<EOF
23 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
38 response = "You don't have permission to push to this gem"
39 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 403, 'Forbidden']
47 assert_match response, @ui.output
51 response = "- email: user1@example.com\n"
52 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
65 response = "Owner added successfully."
66 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 200, 'OK']
76 assert_match response,
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/efl/
H A DWebErrorsEfl.cpp58 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
60 return WebCore::cannotShowMIMETypeError(response);
63 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
65 return WebCore::fileDoesNotExistError(response);
68 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
70 return WebCore::pluginWillHandleLoadError(response);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/gtk/
H A DWebErrorsGtk.cpp60 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
62 return WebCore::cannotShowMIMETypeError(response);
65 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
67 return WebCore::fileDoesNotExistError(response);
70 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
72 return WebCore::pluginWillHandleLoadError(response);
/macosx-10.9.5/WebCore-7537.78.1/loader/archive/cf/
H A DLegacyWebArchiveMac.mm44 NSURLResponse *response = nil;
49 response = responseObject;
52 response = nil;
56 return ResourceResponse(response);
59 RetainPtr<CFDataRef> LegacyWebArchive::createPropertyListRepresentation(const ResourceResponse& response)
61 NSURLResponse *nsResponse = response.nsURLResponse();
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebNavigationData.mm34 NSURLResponse *response;
48 [response release];
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource
68 _private->response = [response retain];
90 - (NSURLResponse *)response
92 return _private->response;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DSecItemShim.cpp84 OwnPtr<SecItemResponseData> response = sendSecItemRequest(SecItemRequestData::CopyMatching, query); local
85 if (!response)
88 *result = response->resultObject().leakRef();
89 return response->resultCode();
94 OwnPtr<SecItemResponseData> response = sendSecItemRequest(SecItemRequestData::Add, query); local
95 if (!response)
99 *result = response->resultObject().leakRef();
100 return response->resultCode();
105 OwnPtr<SecItemResponseData> response = sendSecItemRequest(SecItemRequestData::Update, query, attributesToUpdate); local
106 if (!response)
114 OwnPtr<SecItemResponseData> response = sendSecItemRequest(SecItemRequestData::Delete, query); local
121 secItemResponse(uint64_t requestID, const SecItemResponseData& response) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/archive/
H A DArchiveResource.cpp36 inline ArchiveResource::ArchiveResource(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& response) argument
37 : SubstituteResource(url, response, data)
45 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& response) argument
49 if (response.isNull()) {
54 return adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName, response));
57 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const ResourceResponse& response) argument
59 return create(data, url, response.mimeType(), response.textEncodingName(), String(), response);
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Dproxy-auth.pl28 my $response = HTTP::Response->new(407);
29 $response->header(
31 $self->proxy->response($response);
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Dproxy-auth.pl28 my $response = HTTP::Response->new(407);
29 $response->header(
31 $self->proxy->response($response);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DHeapSnapshotWorkerDispatcher.js54 var response = {callId: data.callId};
69 response.result = result;
77 response.result = !!result;
82 response.result = object[data.methodName].apply(object, data.methodArguments);
87 response.error = e.toString();
88 response.errorCallStack = e.stack;
90 response.errorMethodName = data.methodName;
92 this._postMessage(response);
/macosx-10.9.5/WebCore-7537.78.1/loader/cf/
H A DResourceLoaderCFNet.cpp43 CFURLResponseRef response = CFCachedURLResponseGetWrappedResponse(cachedResponse);
45 return frameLoader()->client()->shouldCacheResponse(documentLoader(), identifier(), response, CFDataGetBytePtr(data), CFDataGetLength(data));

Completed in 193 milliseconds

1234567891011>>