Searched defs:encoding (Results 1 - 25 of 251) sorted by relevance

1234567891011

/external/webkit/Source/WebCore/platform/text/mac/
H A DCharsetData.h32 ::TextEncoding encoding; member in struct:WebCore::CharsetEntry
/external/nist-sip/java/javax/sip/header/
H A DEncoding.java7 void setEncoding(String encoding) throws ParseException; argument
/external/webkit/Source/WebCore/html/
H A DDOMFormData.h48 static PassRefPtr<DOMFormData> create(const TextEncoding& encoding) { return adoptRef(new DOMFormData(encoding)); } argument
H A DDOMFormData.cpp42 DOMFormData::DOMFormData(const TextEncoding& encoding) argument
43 : FormDataList(encoding)
/external/antlr/src/org/antlr/runtime/
H A DANTLRFileStream.java45 public ANTLRFileStream(String fileName, String encoding) throws IOException { argument
47 load(fileName, encoding);
50 public void load(String fileName, String encoding) argument
60 if ( encoding!=null ) {
61 isr = new InputStreamReader(fis, encoding);
H A DANTLRInputStream.java47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { argument
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { argument
52 this(input, size, READ_BUFFER_SIZE, encoding);
58 String encoding)
62 if ( encoding!=null ) {
63 isr = new InputStreamReader(input, encoding);
55 ANTLRInputStream(InputStream input, int size, int readBufferSize, String encoding) argument
/external/apache-http/src/org/apache/http/client/entity/
H A DUrlEncodedFormEntity.java48 * of parameters in the specified encoding.
51 * @param encoding encoding the name/value pairs be encoded with
52 * @throws UnsupportedEncodingException if the encoding isn't supported
56 final String encoding) throws UnsupportedEncodingException {
57 super(URLEncodedUtils.format(parameters, encoding),
58 encoding);
64 * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET}
67 * @throws UnsupportedEncodingException if the default encoding isn't supported
54 UrlEncodedFormEntity( final List <? extends NameValuePair> parameters, final String encoding) argument
/external/clang/test/CodeGenCXX/
H A D2007-04-05-PackedBitFieldsOverlap-2.cpp13 unsigned long encoding : 8; member in struct:M_Packed
/external/icu4c/test/intltest/
H A Dtextfile.h24 * Open a file with the given name, in the given encoding, in the
26 * 'name' and 'encoding' parameters are aliased or copied.
28 TextFile(const char* name, const char* encoding, UErrorCode& ec);
34 * this file's encoding to Unicode. The EOL character(s) are not
62 char* encoding; member in class:TextFile
/external/webkit/Source/WebCore/css/
H A DCSSCharsetRule.cpp26 CSSCharsetRule::CSSCharsetRule(CSSStyleSheet* parent, const String& encoding) argument
28 , m_encoding(encoding)
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DUrlInterceptResponse.h51 const std::string& encoding() const { function in class:android::UrlInterceptResponse
/external/webkit/Source/WebKit/chromium/public/
H A DWebSearchableFormData.h40 // SearchableFormData encapsulates a URL and encoding of an INPUT field that
57 const WebString& encoding() const function in class:WebKit::WebSearchableFormData
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DTimestampTest.java41 private static final byte[] encoding = { 1, 2, 3 }; field in class:TimestampTest
43 private CertPath cpath = new MyCertPath(encoding);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DTimestamp_ImplTest.java42 private static final byte[] encoding = { 1, 2, 3 }; field in class:Timestamp_ImplTest
44 private CertPath cpath = new MyCertPath(encoding);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertPath.java46 * my cert path the only encoding
48 private final byte[] encoding; field in class:MyCertPath
54 * @param encoding
56 public MyCertPath(byte[] encoding) { argument
58 this.encoding = encoding;
60 certificates.add(new MyCertificate("MyEncoding", encoding));
78 return encoding.clone();
83 * <code>encoding</code> parameter
84 * @throws CertificateEncodingException if <code>encoding</cod
88 getEncoded(String encoding) argument
[all...]
H A DMyCertificate.java38 // MyCertificate encoding
39 private final byte[] encoding; field in class:MyCertificate
45 * @param encoding
47 public MyCertificate(String type, byte[] encoding) { argument
50 this.encoding = encoding;
54 * Returns <code>MyCertificate</code> encoding
58 return encoding.clone();
/external/bluetooth/bluez/sbc/
H A Dformats.h52 uint32_t encoding; /* see to AU_FMT_XXXX */ member in struct:au_header
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DASN1Encodable.java16 * Return the default BER or DER encoding for this object.
19 * @throws IOException on encoding error.
33 * Return either the default for "BER" or a DER encoding if "DER" is specified.
35 * @param encoding name of encoding to use.
37 * @throws IOException on encoding error.
40 String encoding)
43 if (encoding.equals(DER))
57 * Return the DER encoding of the object, null if the DER encoding ca
39 getEncoded( String encoding) argument
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
H A DEncryptedPrivateKeyInfo.java31 byte[] encoding)
34 this.data = new DEROctetString(encoding);
29 EncryptedPrivateKeyInfo( AlgorithmIdentifier algId, byte[] encoding) argument
/external/chromium/chrome/browser/ui/toolbar/
H A Dencoding_menu_controller.cc87 std::string encoding = current_tab_encoding;
88 if (encoding.empty())
89 encoding = browser_profile->GetPrefs()->GetString(prefs::kDefaultCharset);
96 if (!encoding.empty()) {
97 return encoding ==
116 // Create current display encoding list.
119 // Build the list of encoding ids : It is made of the
133 string16 encoding = it->encoding_display_name; local
134 base::i18n::AdjustStringForLocaleDirection(&encoding);
135 menu_items->push_back(EncodingMenuItem(it->encoding_id, encoding));
[all...]
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser.cc23 // Fills in |raw_name| for all |entries| using |encoding|. Returns network
25 int FillInRawName(const std::string& encoding, argument
28 if (!base::UTF16ToCodepage(entries->at(i).name, encoding.c_str(),
41 const std::string& encoding,
53 return FillInRawName(encoding, entries);
59 return FillInRawName(encoding, entries);
65 return FillInRawName(encoding, entries);
71 return FillInRawName(encoding, entries);
78 // Detects encoding of |text| and parses it as an FTP directory listing.
88 // Use first encoding tha
40 ParseListing(const string16& text, const std::string& encoding, const base::Time& current_time, std::vector<FtpDirectoryListingEntry>* entries, FtpServerType* server_type) argument
[all...]
/external/freetype/src/cff/
H A Dcffcmap.c38 CFF_Encoding encoding = &cff->encoding; local
41 cmap->gids = encoding->codes;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DUrlEscapeFunction.java33 private final String encoding; field in class:UrlEscapeFunction
35 public UrlEscapeFunction(String encoding) { argument
38 new OutputStreamWriter(new ByteArrayOutputStream(), encoding);
40 throw new IllegalArgumentException("Unsupported encoding : " + encoding);
42 this.encoding = encoding;
48 out.append(URLEncoder.encode(in, encoding));
52 throw new Error("Unsuported encoding : " + encoding);
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptEncoding.java138 * Sets the encoding of an EncodingHeader.
140 * @param encoding -
141 * the new string value defining the encoding.
144 * while parsing the encoding value.
147 public void setEncoding(String encoding) throws ParseException { argument
148 if (encoding == null)
149 throw new NullPointerException(" encoding parameter is null");
150 contentCoding = encoding;
H A DContentEncoding.java34 * Content encoding part of a content encoding header list.
56 * encoding and is only decoded before rendering or analogous usage.
71 * Additional information about the encoding parameters MAY be provided
110 * Canonical encoding of body of the header.
127 * @param encoding String to set
129 public void setEncoding(String encoding) throws ParseException { argument
130 if (encoding == null)
132 "JAIN-SIP Exception, " + " encoding is null");
133 contentEncoding = encoding;
[all...]

Completed in 1030 milliseconds

1234567891011