Searched defs:handling (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/text/
H A DTextCodec.cpp39 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement) argument
41 switch (handling) {
H A DTextCodecLatin1.cpp160 static CString encodeComplexWindowsLatin1(const UChar* characters, size_t length, UnencodableHandling handling) argument
178 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
192 CString TextCodecLatin1::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
211 return encodeComplexWindowsLatin1(characters, length, handling);
H A DTextCodecUserDefined.cpp65 static CString encodeComplexUserDefined(const UChar* characters, size_t length, UnencodableHandling handling) argument
80 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
91 CString TextCodecUserDefined::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
108 return encodeComplexUserDefined(characters, length, handling);
H A DTextCodecICU.cpp417 CString TextCodecICU::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
438 switch (handling) {
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DContentDisposition.java100 return this.getParameter("handling");
104 * @param handling String to set.
106 public void setHandling(String handling) throws ParseException { argument
107 if (handling == null)
110 + ", ContentDisposition, setHandling(), the handling parameter is null");
111 this.setParameter("handling", handling);
/external/nist-sip/java/javax/sip/header/
H A DContentDispositionHeader.java17 void setHandling(String handling) throws ParseException; argument
/external/webkit/Source/WebCore/page/
H A DDragController.h66 void setIsHandlingDrag(bool handling) { m_isHandlingDrag = handling; } argument
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextCodecBrew.cpp153 CString TextCodecBrew::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
/external/webkit/Source/WebCore/platform/text/qt/
H A DTextCodecQt.cpp127 CString TextCodecQt::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
137 // If some <b> characters </b> are unencodable, escape them as specified by <b> handling </b>
151 getUnencodableReplacement(characters[0], handling, replacement);
/external/webkit/Source/WebCore/platform/text/gtk/
H A DTextCodecGtk.cpp516 CString TextCodecGtk::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
555 int replacementLength = TextCodec::getUnencodableReplacement(codePoint, handling, replacement);
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.cpp279 CString TextCodecMac::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
293 UInt8 lossByte = handling == QuestionMarksForUnencodables ? '?' : 0;
317 int entityLength = getUnencodableReplacement(badChar, handling, entity);

Completed in 464 milliseconds