/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapResponse.java | 80 * @return whether it's an {@code responseType} data response. (i.e. not tagged). 81 * @param index where {@code responseType} should appear. e.g. 1 for "FETCH" 82 * @param responseType e.g. "FETCH" 84 public final boolean isDataResponse(int index, String responseType) { 85 return !isTagged() && getStringOrEmpty(index).is(responseType);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
WebEditorClientMac.mm | 265 void WebEditorClient::recordAutocorrectionResponse(EditorClient::AutocorrectionResponseType responseType, const String& replacedString, const String& replacementString) 267 m_page->send(Messages::WebPageProxy::RecordAutocorrectionResponse(responseType, replacedString, replacementString));
|
/external/openssl/crypto/ocsp/ |
ocsp_prn.c | 201 if(i2a_ASN1_OBJECT(bp, rb->responseType) <= 0) 203 if (OBJ_obj2nid(rb->responseType) != NID_id_pkix_OCSP_basic)
|
ocsp_asn.c | 105 ASN1_SIMPLE(OCSP_RESPBYTES, responseType, ASN1_OBJECT),
|
ocsp_cl.c | 206 if (OBJ_obj2nid(rb->responseType) != NID_id_pkix_OCSP_basic)
|
ocsp_srv.c | 114 rsp->responseBytes->responseType = OBJ_nid2obj(NID_id_pkix_OCSP_basic);
|
ocsp.h | 177 * responseType OBJECT IDENTIFIER, 182 ASN1_OBJECT *responseType;
|
/external/webkit/Source/WebCore/xml/ |
XMLHttpRequest.idl | 99 attribute DOMString responseType
|
XMLHttpRequest.cpp | 295 void XMLHttpRequest::setResponseType(const String& responseType, ExceptionCode& ec) 302 if (responseType == "") 304 else if (responseType == "text") 306 else if (responseType == "document") 308 else if (responseType == "blob") { 312 } else if (responseType == "arraybuffer") { 318 String XMLHttpRequest::responseType() [all...] |
XMLHttpRequest.h | 113 String responseType(); 227 // An enum corresponding to the allowed string values for the responseType attribute.
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
PageClientImpl.mm | 434 void PageClientImpl::recordAutocorrectionResponse(EditorClient::AutocorrectionResponseType responseType, const String& replacedString, const String& replacementString) 437 NSCorrectionResponse response = responseType == EditorClient::AutocorrectionReverted ? NSCorrectionResponseReverted : NSCorrectionResponseEdited;
|
/external/openssl/include/openssl/ |
ocsp.h | 177 * responseType OBJECT IDENTIFIER, 182 ASN1_OBJECT *responseType;
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebEditorClient.mm | [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
CalendarSyncAdapter.java | 413 int responseType = CalendarUtilities.RESPONSE_TYPE_NONE; 572 responseType = getValueInt(); 636 if (responseType != CalendarUtilities.RESPONSE_TYPE_NONE) { 638 CalendarUtilities.attendeeStatusFromResponseType(responseType); [all...] |
/packages/apps/Exchange/src/com/android/exchange/utility/ |
CalendarUtilities.java | 172 // See [MS-ASCAL] 2.2.2.22 for Calendar ResponseType [all...] |
/external/webkit/Source/WebKit2/UIProcess/ |
WebPageProxy.h | 699 void recordAutocorrectionResponse(int32_t responseType, const String& replacedString, const String& replacementString); [all...] |
WebPageProxy.cpp | [all...] |