/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/ |
TimestampTest.java | 51 private static final byte[] encoding = { 1, 2, 3 }; field in class:TimestampTest 53 private CertPath cpath = new MyCertPath(encoding);
|
KeyStoreSpiTest.java | 447 // MyCertificate encoding 448 private final byte[] encoding; field in class:MyCertificate 450 public MyCertificate(String type, byte[] encoding) { 453 this.encoding = encoding; 458 return encoding.clone();
|
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/ |
ExpatPullParser.java | 716 final String encoding; field in class:ExpatPullParser.Document 723 Document(String encoding, boolean processNamespaces) { 724 this.encoding = encoding; 731 encoding, xmlReader, processNamespaces, null, null); 824 return this.encoding; 942 ByteDocument(InputStream in, String encoding, 944 super(encoding, processNamespaces);
|
/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/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);
|
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/charset/ |
NativeConverter.java | 22 * encoding into an array of Unicode characters. This method allows 49 * encoding into an array of Unicode characters. This method allows 75 * external encoding into an array of bytes. This method allows 101 * external encoding into an array of bytes. This method allows 161 * Open the converter with the specified encoding 165 * @param encoding string representing encoding 169 public static final native long openConverter(String encoding); 313 * be converted to the target encoding 341 * @param enc encoding nam [all...] |
/dalvik/libcore/xml/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);
|
/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/tools/ctestfw/unicode/ |
uperf.h | 151 const char* encoding; member in class:UPerfTest
|
/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...] |
/external/expat/lib/ |
xmltok.h | 125 struct encoding; 126 typedef struct encoding ENCODING; 128 typedef int (PTRCALL *SCANNER)(const ENCODING *, 133 struct encoding { struct 136 int (PTRCALL *sameName)(const ENCODING *, 139 int (PTRCALL *nameMatchesAscii)(const ENCODING *, 143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *); 144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *); 145 int (PTRCALL *getAtts)(const ENCODING *enc [all...] |
/external/icu4c/samples/ugrep/ |
ugrep.cpp | 14 // encoding conversions, printing results, etc. 301 const char* encoding = ucnv_detectUnicodeSignature( local 308 if(encoding!=NULL ){ 317 conv = ucnv_open(encoding, &status);
|
/external/icu4c/tools/genbrk/ |
genbrk.cpp | 227 const char* encoding = ucnv_detectUnicodeSignature( 232 if(encoding!=NULL ){ 241 conv = ucnv_open(encoding, &status);
|
/external/icu4c/tools/genctd/ |
genctd.cpp | 225 const char* encoding = ucnv_detectUnicodeSignature( 230 if(encoding!=NULL ){ 239 conv = ucnv_open(encoding, &status);
|
/external/webkit/WebCore/platform/text/ |
TextEncodingRegistry.cpp | 269 PassOwnPtr<TextCodec> newTextCodec(const TextEncoding& encoding) 274 TextCodecFactory factory = textCodecMap->get(encoding.name()); 276 return factory.function(encoding, factory.additionalData); 315 // If the calling thread did not use extended encoding names, it is fine for it to use a stale false value.
|
/packages/apps/Email/src/org/apache/commons/io/ |
FileUtils.java | [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/decoder/ |
DecoderUtil.java | 101 * Decodes an encoded word encoded with the 'B' encoding (described in
117 * Decodes an encoded word encoded with the 'Q' encoding (described in
223 String encoding = body.substring(qm1 + 1, qm2);
local 253 if (encoding.equalsIgnoreCase("Q")) {
255 } else if (encoding.equalsIgnoreCase("B")) {
259 log.warn("Warning: Unknown encoding in encoded word '"
267 log.warn("Unsupported encoding in encoded word '"
|
/external/webkit/WebCore/loader/ |
TextResourceDecoder.cpp | 344 void TextResourceDecoder::setEncoding(const TextEncoding& encoding, EncodingSource source) 346 // In case the encoding didn't exist, we keep the old one (helps some sites specifying invalid encodings). 347 if (!encoding.isValid()) 350 // When encoding comes from meta tag (i.e. it cannot be XML files sent via XHR), 352 if (source == EncodingFromMetaTag && strcasecmp(encoding.name(), "x-user-defined") == 0) 355 m_encoding = encoding.closestByteBasedEquivalent(); 357 m_encoding = encoding; 363 // Returns the position of the encoding string. 366 int pos = find(str, len, "encoding"); 413 // Check for UTF-16/32 or UTF-8 BOM mark at the beginning, which is a sure sign of a Unicode encoding [all...] |