HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 251 - 275 of 567) sorted by null

<<11121314151617181920>>

  /external/expat/lib/
xmlparse.c 171 version of the name (in the document encoding) is shared with the
181 const char *rawName; /* tagName in the original encoding */
183 TAG_NAME name; /* tagName in the API encoding */
330 doProlog(XML_Parser parser, const ENCODING *enc, const char *s,
337 doContent(XML_Parser parser, int startTagLevel, const ENCODING *enc,
341 doCdataSection(XML_Parser parser, const ENCODING *, const char **startPtr,
345 doIgnoreSection(XML_Parser parser, const ENCODING *, const char **startPtr,
350 storeAtts(XML_Parser parser, const ENCODING *, const char *s,
359 storeAttributeValue(XML_Parser parser, const ENCODING *, XML_Bool isCdata,
362 appendAttributeValue(XML_Parser parser, const ENCODING *, XML_Bool isCdata
588 #define encoding macro
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 82 String encoding = null; local
117 RootDocImpl root = comp.getRootDocImpl(docLocale, encoding, showAccess,
  /external/bluetooth/glib/tests/
iochannel-test.c 65 const gchar encoding[] = "EUC-JP"; local
90 g_io_channel_set_encoding (gio_r, encoding, &gerr);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKDSASigner.java 229 byte[] encoding)
232 ASN1Sequence s = (ASN1Sequence)ASN1Object.fromByteArray(encoding);
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 56 EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
82 <failure message="Failed&#x0A;XML output: &lt;?xml encoding=&quot;utf-8&quot;&gt;&lt;top&gt;&lt;![CDATA[cdata text]]&gt;&lt;/top&gt;" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
84 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
111 EXPECTED_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
  /external/quake/quake/src/WinQuake/
snd_sun.cpp 97 info.play.encoding = AUDIO_ENCODING_LINEAR;
103 info.play.encoding = AUDIO_ENCODING_LINEAR;
  /external/webkit/WebCore/platform/text/mac/
make-charset-table.pl 46 my ($name, $prefix, $encoding, $flags) = @_;
51 $output .= " { \"$name\", $prefix$encoding },\n";
78 error "Platform encoding name $PlatformName is mentioned twice in $baseFilename" if $seenPlatformNames{$PlatformNameWithFlags};
136 error "Platform encoding name $PlatformName is mentioned twice in $baseFilename" if $seenPlatformNames{$PlatformName};
  /external/webkit/WebKit/chromium/src/
WebSettingsImpl.cpp 108 void WebSettingsImpl::setDefaultTextEncodingName(const WebString& encoding)
110 m_settings->setDefaultTextEncodingName((String)encoding);
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.java 33 * <li>java.util.logging.StreamHandler.encoding specifies the encoding this
34 * handler will use to encode log messages. Default is the encoding used by the
183 * Sets the character encoding used by this handler. A {@code null} value
184 * indicates that the default encoding should be used.
186 * @param encoding
187 * the character encoding to set.
192 * if the specified encoding is not supported by the runtime.
195 public void setEncoding(String encoding) throws SecurityException,
197 // flush first before set new encoding
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatPullParser.java 715 final String encoding; field in class:ExpatPullParser.Document
722 Document(String encoding, boolean processNamespaces) {
723 this.encoding = encoding;
730 encoding, xmlReader, processNamespaces, null, null);
823 return this.encoding;
941 ByteDocument(InputStream in, String encoding,
943 super(encoding, processNamespaces);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 46 private static final byte[] encoding = { 1, 2, 3 }; field in class:TimestampTest
48 private CertPath cpath = new MyCertPath(encoding);
  /external/chromium/third_party/icu/source/tools/ctestfw/unicode/
uperf.h 151 const char* encoding; member in class:UPerfTest
  /external/emma/ant/ant14/com/vladium/emma/report/
ReportCfg.java 93 public void setEncoding (final String encoding)
95 m_settings.setProperty (m_prefix.concat (OUT_ENCODING), encoding); local
394 public void setEncoding (final String encoding)
396 m_settings.setProperty (PREFIX.concat (OUT_ENCODING), encoding); local
  /external/expat/amiga/include/interfaces/
expat.h 33 XML_Parser APICALL (*XML_ParserCreate_MM)(struct ExpatIFace *Self, const XML_Char * encoding, const XML_Memory_Handling_Suite * memsuite, const XML_Char * namespaceSeparator);
34 XML_Parser APICALL (*XML_ExternalEntityParserCreate)(struct ExpatIFace *Self, XML_Parser parser, const XML_Char * context, const XML_Char * encoding);
80 enum XML_Status APICALL (*XML_SetEncoding)(struct ExpatIFace *Self, XML_Parser parser, const XML_Char * encoding);
85 XML_Bool APICALL (*XML_ParserReset)(struct ExpatIFace *Self, XML_Parser parser, const XML_Char * encoding);
  /external/freetype/src/sfnt/
sfdriver.c 342 BDF_PropertyRec encoding, registry; local
355 error = tt_face_find_bdf_prop( face, "CHARSET_ENCODING", &encoding );
359 encoding.type == BDF_PROPERTY_TYPE_ATOM )
361 *acharset_encoding = encoding.u.atom;
  /external/icu4c/test/intltest/
itutil.cpp 284 static const char *const encoding="ISO-8859-1"; local
286 ucnvsel_open(&encoding, 1, NULL, UCNV_ROUNDTRIP_SET, errorCode));
381 static const char *const encoding="ISO-8859-1"; local
384 ucnvsel_open(&encoding, 1, NULL, UCNV_ROUNDTRIP_SET, errorCode));
  /external/icu4c/tools/ctestfw/unicode/
uperf.h 151 const char* encoding; member in class:UPerfTest
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPMessage.java 238 StringBuffer encoding = new StringBuffer(); local
244 siphdr.encode(encoding);
247 return contentLengthHeader.encode(encoding).append(NEWLINE).toString();
361 StringBuffer encoding = new StringBuffer(); local
367 encoding.append(siphdr.encode());
372 encoding.append(unrecognized).append(NEWLINE);
375 encoding.append(contentLengthHeader.encode()).append(NEWLINE);
380 encoding.append(mbody);
395 encoding.append(content);
397 return encoding.toString()
421 StringBuffer encoding = new StringBuffer(); local
    [all...]
  /external/webkit/WebCore/platform/text/gtk/
TextCodecGtk.cpp 82 TextCodecGtk::codecAliasList TextCodecGtk::m_codecAliases_CP1256 = { "windows-1256", "CP1256", "MS-ARAB", 0 }; // rearranged, windows-1256 now declared the canonical name and put to lowercase to fix /fast/encoding/ahram-org-eg.html test case
86 TextCodecGtk::codecAliasList TextCodecGtk::m_codecAliases_CP1255 = { "windows-1255", "CP1255", "MS-HEBR", 0 }; // rearranged, moved windows-1255 as canonical and lowercased, fixing /fast/encoding/meta-charset.html
98 TextCodecGtk::codecAliasList TextCodecGtk::m_codecAliases_WINDOWS_1251 = { "windows-1251", "CP1251", 0 }; // CP1251 added to pass /fast/encoding/charset-cp1251.html
209 static PassOwnPtr<TextCodec> newTextCodecGtk(const TextEncoding& encoding, const void*)
211 return new TextCodecGtk(encoding);
223 // test encoding
258 LOG(TextConversion, "Canonical encoding %s not available, skipping.", canonicalName);
266 LOG(TextConversion, "Registering encoding name alias %s to canonical %s", currentAlias, canonicalName);
315 TextCodecGtk::TextCodecGtk(const TextEncoding& encoding)
316 : m_encoding(encoding)
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebPreferences.h 225 @param encoding
227 - (void)setDefaultTextEncodingName:(NSString *)encoding;
  /external/webkit/WebKitTools/simplejson/
__init__.py 11 Encoding basic Python object hierarchies::
30 Compact encoding::
105 encoding='utf-8' variable
110 encoding='utf-8', **kw):
142 ``encoding`` is the character encoding for str instances, default is UTF-8.
152 encoding == 'utf-8' and not kw):
159 separators=separators, encoding=encoding, **kw).iterencode(obj)
168 encoding='utf-8', **kw)
    [all...]
  /libcore/luni/src/main/java/com/ibm/icu4jni/charset/
NativeConverter.java 20 * encoding into an array of Unicode characters. This method allows
43 * Converts an array of Unicode chars to an array of bytes in an external encoding.
95 public static native long openConverter(String encoding);
  /libcore/luni/src/main/java/java/security/cert/
CertPath.java 33 * supported encoding scheme (i.e. PkiPath or PKCS7) when serialized.
141 * Returns an encoding of the {@code CertPath} using the default encoding.
143 * @return default encoding of the {@code CertPath}.
145 * if the encoding fails.
151 * Returns an encoding of the {@code CertPath} using the specified encoding.
153 * @param encoding
154 * encoding that should be generated.
155 * @return default encoding of the {@code CertPath}
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToXMLSAXHandler.java 471 public ToXMLSAXHandler(ContentHandler handler, String encoding)
473 super(handler, encoding);
483 String encoding)
485 super(handler, lex, encoding);
ToXMLStream.java 78 String encoding = xmlListener.getEncoding(); local
79 setEncoding(encoding);
128 String encoding = Encodings.getMimeEncoding(getEncoding()); local
145 writer.write("\" encoding=\"");
146 writer.write(encoding);

Completed in 605 milliseconds

<<11121314151617181920>>