HomeSort by relevance Sort by last modified time
    Searched refs:handling (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/text/
TextCodec.cpp 39 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement)
41 switch (handling) {
TextCodecUserDefined.cpp 65 static CString encodeComplexUserDefined(const UChar* characters, size_t length, UnencodableHandling handling)
80 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
91 CString TextCodecUserDefined::encode(const UChar* characters, size_t length, UnencodableHandling handling)
108 return encodeComplexUserDefined(characters, length, handling);
TextEncoding.cpp 74 CString TextEncoding::encode(const UChar* characters, size_t length, UnencodableHandling handling) const
107 return newTextCodec(*this)->encode(source, sourceLength, handling);
111 return newTextCodec(*this)->encode(reinterpret_cast<const UChar *>(str.utf16()), str.length(), handling);
117 return newTextCodec(*this)->encode(characters, length, handling);
127 return newTextCodec(*this)->encode(UTF16Normalized.get(), UTF16Length, handling);
131 return textCodec.get() ? textCodec->encode(characters, length, handling) : CString();
135 return textCodec.get() ? textCodec->encode(characters, length, handling) : CString();
TextCodecLatin1.cpp 160 static CString encodeComplexWindowsLatin1(const UChar* characters, size_t length, UnencodableHandling handling)
178 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
192 CString TextCodecLatin1::encode(const UChar* characters, size_t length, UnencodableHandling handling)
211 return encodeComplexWindowsLatin1(characters, length, handling);
  /external/nist-sip/java/gov/nist/javax/sip/header/
ContentDisposition.java 100 return this.getParameter("handling");
104 * @param handling String to set.
106 public void setHandling(String handling) throws ParseException {
107 if (handling == null)
110 + ", ContentDisposition, setHandling(), the handling parameter is null");
111 this.setParameter("handling", handling);
  /external/nist-sip/java/javax/sip/header/
ContentDispositionHeader.java 17 void setHandling(String handling) throws ParseException;
  /external/clang/test/Preprocessor/
feature_tests.c 33 #error Broken handling of target-specific builtins
  /external/stlport/test/eh/
cygwin.mak 79 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
83 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
87 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
  /external/v8/test/mjsunit/
array-store-and-grow.js 37 // Check handling of the empty array.
77 // Check the handling of COW arrays
115 // Check the handling of mutable arrays.
149 // Check the handling of mutable arrays of doubles
this-property-assignment.js 28 // Tests the handling of multiple assignments to the same property in a
argument-named-arguments.js 28 // Tests to verify proper arguments handling if the arguments
define-property-gc.js 28 // Tests the handling of GC issues in the defineProperty method.
  /external/webkit/Source/WebCore/page/
DragController.h 66 void setIsHandlingDrag(bool handling) { m_isHandlingDrag = handling; }
  /external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.cpp 127 CString TextCodecQt::encode(const UChar* characters, size_t length, UnencodableHandling handling)
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/mac/
TextCodecMac.cpp 279 CString TextCodecMac::encode(const UChar* characters, size_t length, UnencodableHandling handling)
293 UInt8 lossByte = handling == QuestionMarksForUnencodables ? '?' : 0;
317 int entityLength = getUnencodableReplacement(badChar, handling, entity);
  /external/elfutils/
elfutils.spec 33 handling.
43 applications for handling compiled objects. libebl provides some
75 applications for handling compiled objects. libelf allows you to
193 - nm: bug fixes for handling corrupt input files
204 - strip: changed handling of ET_REL files wrt symbol tables and relocs
211 - readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
212 - readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
213 - libdwfl: bug fixes and optimization in relocation handling
214 - elfcmp: bug fix for non-allocated section handling
226 - libdwfl: bug fixes in offline archive support, symbol table handling;
    [all...]
  /external/v8/test/mjsunit/compiler/
regress-96989.js 31 // Test correct handling of uninitialized const.
  /external/webkit/LayoutTests/storage/
execute-sql-args.js 84 var db = openDatabaseWithSuffix("ExecuteSQLArgsTest", "1.0", "Test of handling of the arguments to SQLTransaction.executeSql", 1);
  /ndk/build/core/
setup-abi.mk 29 # Special handling for x86: The minimal platform is android-9 here
  /external/markdown/MarkdownTest/
MarkdownTest.pl 152 + Better handling of case when foo.text exists, but foo.html doesn't.
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
MovieControllerLayer.m 186 #pragma mark Movie handling
282 # pragma mark Event handling
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 153 CString TextCodecBrew::encode(const UChar* characters, size_t length, UnencodableHandling handling)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_error_handler.js 14 * The proxy error handling object. Binds to the 'onProxyError' event, and
  /external/v8/test/mjsunit/regress/
regress-100702.js 28 // Regression test for correct handling of non-object receiver values
regress-1278.js 30 // Test that that handling of 0/-0 is correct for binary operations when the

Completed in 650 milliseconds

1 2 3