Searched defs:encoding (Results 126 - 150 of 516) sorted by relevance

1234567891011>>

/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DDocument.java34 String encoding; field in class:Document
40 return encoding;
44 this.encoding = enc;
86 encoding = parser.getInputEncoding();
122 writer.startDocument(encoding, standalone);
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpTransportSE.java346 public byte[] getRequestData(SoapEnvelope envelope, String encoding) { argument
348 return createRequestData(envelope, encoding);
/external/libcxxabi/src/Unwind/
H A DUnwind_AppleExtras.cpp29 unsigned long encoding; member in struct:libgcc_object
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.cpp128 CFCMutableArray::AppendCStringAsCFString (const char *s, CFStringEncoding encoding, bool can_create) argument
140 CFCString cf_str (s, encoding);
H A DCFCString.cpp124 const CFStringEncoding encoding = kCFStringEncodingUTF8; local
126 max_utf8_str_len = CFStringGetMaximumSizeForEncoding (max_utf8_str_len, encoding);
132 if (CFStringGetCString (cf_str, &str[0], str.size(), encoding))
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp128 const CFStringEncoding encoding = kCFStringEncodingUTF8; local
130 max_utf8_str_len = CFStringGetMaximumSizeForEncoding (max_utf8_str_len, encoding);
136 if (CFStringGetCString (cf_str, &str[0], str.size(), encoding))
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dt1cmap.c178 T1_Encoding encoding = &face->type1.encoding; local
181 cmap->first = encoding->code_first;
182 cmap->count = (FT_UInt)( encoding->code_last - cmap->first );
183 cmap->indices = encoding->char_index;
186 FT_ASSERT( encoding->code_first <= encoding->code_last );
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_wave.h48 Uint16 encoding; member in struct:WaveFMT
/external/skia/bench/
H A DCmapBench.cpp45 SkTypeface::Encoding encoding = paint2Encoding(paint); local
51 face->charsToGlyphs(text, encoding, glyphs, glyphCount);
57 SkTypeface::Encoding encoding = paint2Encoding(paint); local
61 face->charsToGlyphs(text, encoding, NULL, glyphCount);
/external/skia/src/core/
H A DSkFont.cpp61 int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding, argument
71 switch (encoding) {
91 switch (encoding) {
102 SkASSERT(kGlyphID_SkTextEncoding == encoding);
112 SkScalar SkFont::measureText(const void* text, size_t byteLength, SkTextEncoding encoding) const {
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DByteBuffer.java31 private String encoding = null; field in class:ByteBuffer
225 * Detects the encoding of the byte buffer, stores and returns it.
229 * @return Returns the encoding string.
233 if (encoding == null)
235 // needs four byte at maximum to determine encoding
239 encoding = "UTF-8";
250 encoding = "UTF-16BE";
254 encoding = "UTF-32BE";
258 encoding = "UTF-32";
269 encoding
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3input.h3 * streams from any input source. Any character size and encoding
70 * taken as offsets from here and in original input format encoding.
85 * This is cast to point at the encoding of the original file that
168 * memory and is in same encoding as the input stream itself, NOT internal ANTLR3_UCHAR form.
232 /// Indicates the encoding scheme used in this input stream
234 ANTLR3_UINT32 encoding; member in struct:ANTLR3_INPUT_STREAM_struct
246 * This is cast to point at the encoding of the original file that
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DKSBuilder_ImplTest.java494 private final byte[] encoding; field in class:KSBuilder_ImplTest.MCertificate
498 public MCertificate(String type, byte[] encoding) { argument
500 this.encoding = encoding;
505 return encoding.clone();
529 return encoding;
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
H A DCertificateListTest.java59 private static byte[] algParams = { 1, 1, 0 }; // DER boolean false encoding
135 private byte[] encoding; field in class:CertificateListTest
148 encoding = CertificateList.ASN1.encode(certificateList);
151 CertificateList.ASN1.decode(encoding);
174 byte[] encoding = CertificateList.ASN1.encode(cl);
175 CertificateList.ASN1.decode(encoding);
182 encoding = CertificateList.ASN1.encode(cl);
183 CertificateList.ASN1.decode(encoding);
218 new ByteArrayInputStream(encoding));
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DKeyStoreTestSupport.java118 private final byte[] encoding; field in class:KeyStoreTestSupport.MCertificate
122 public MCertificate(String type, byte[] encoding) { argument
124 this.encoding = encoding;
129 return encoding.clone();
154 return encoding;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodingInfo.java25 * Holds information about a given encoding, which is the Java name for the
26 * encoding, the equivalent ISO name.
40 * will answer if a character is in the encoding, and do so for a given
49 * Actually figuring out if a code point is in the encoding is expensive. So the
64 * Not all characters in an encoding are in on contiguous group,
69 * definately in the encoding, although for chars
70 * above this point they might be in the encoding.
73 * are in the encoding.
79 * The ISO encoding name.
92 * is in this encoding
343 EncodingImpl(String encoding, int first, int last, int codePoint) argument
425 inEncoding(char ch, String encoding) argument
464 inEncoding(char high, char low, String encoding) argument
[all...]
H A DEncodings.java54 * Returns a writer for the specified encoding based on
59 * @param encoding The encoding MIME name, not a Java name for the encoding.
62 * to support this encoding
65 static Writer getWriter(OutputStream output, String encoding) argument
71 if (_encodings[i].name.equalsIgnoreCase(encoding))
93 return new OutputStreamWriter(output, encoding);
97 throw new UnsupportedEncodingException(encoding);
103 * encoding, neve
114 getEncodingInfo(String encoding) argument
137 isRecognizedEncoding(String encoding) argument
209 getMimeEncoding(String encoding) argument
270 convertJava2MimeEncoding(String encoding) argument
291 convertMime2JavaEncoding(String encoding) argument
478 getHighChar(String encoding) argument
[all...]
H A DXSLOutputAttributes.java36 * encoding
73 * @return the character encoding to be used in the output document.
146 * Sets the character encoding coming from the xsl:output encoding stylesheet attribute.
147 * @param encoding the character encoding
149 public void setEncoding(String encoding); argument
190 * <li> "encoding"
213 * <li> "encoding"
228 * <li> "encoding"
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERExternal.java15 private int encoding; field in class:DERExternal
84 * @param encoding The encoding to be used for the external data
87 public DERExternal(ASN1ObjectIdentifier directReference, ASN1Integer indirectReference, ASN1Primitive dataValueDescriptor, int encoding, ASN1Primitive externalData) argument
92 setEncoding(encoding);
148 DERTaggedObject obj = new DERTaggedObject(true, encoding, externalContent);
210 * Returns the encoding of the content. Valid values are
216 * @return The encoding
220 return encoding;
260 * Sets the encoding o
268 setEncoding(int encoding) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DDSASigner.java212 byte[] encoding)
215 ASN1Sequence s = (ASN1Sequence)ASN1Primitive.fromByteArray(encoding);
211 derDecode( byte[] encoding) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DSignatureSpi.java310 byte[] encoding)
313 ASN1Sequence s = (ASN1Sequence)ASN1Primitive.fromByteArray(encoding);
368 byte[] encoding)
373 byte[] first = new byte[encoding.length / 2];
374 byte[] second = new byte[encoding.length / 2];
376 System.arraycopy(encoding, 0, first, 0, first.length);
377 System.arraycopy(encoding, first.length, second, 0, second.length);
309 decode( byte[] encoding) argument
367 decode( byte[] encoding) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DCertificateFactory.java347 String encoding)
350 return new PKIXCertPath(inStream, encoding);
345 engineGenerateCertPath( InputStream inStream, String encoding) argument
/external/chromium_org/chrome/browser/signin/
H A Dlocal_auth.cc27 // these safely, change the "encoding" version below and make verification
36 char encoding) {
38 DCHECK_EQ(kHash1Encoding, encoding); // Currently support only one method.
60 char encoding) {
61 DCHECK_EQ(kHash1Encoding, encoding); // Currently support only one method.
72 // Stuff the "encoding" value into the first byte.
73 encoded64.insert(0, &encoding, sizeof(encoding));
80 char* encoding) {
81 // Extract the "encoding" valu
34 CreateSecurePasswordHash(const std::string& salt, const std::string& password, char encoding) argument
59 EncodePasswordHashRecord(const std::string& record, char encoding) argument
78 DecodePasswordHashRecord(const std::string& encoded, std::string* decoded, char* encoding) argument
160 char encoding; local
[all...]
/external/chromium_org/chrome/tools/convert_dict/
H A Ddic_reader.cc55 const char* file_type, const char* encoding,
81 // always use UTF-8 as the encoding to simplify life.
83 std::string encoding_string(encoding);
88 line_number, encoding, file_type);
160 aff_reader->encoding(), true))
54 PopulateWordSet(WordSet* word_set, FILE* file, AffReader* aff_reader, const char* file_type, const char* encoding, bool file_has_word_count_in_the_first_line) argument
/external/chromium_org/content/browser/frame_host/
H A Drender_frame_host_delegate.h117 // The page's encoding was changed and should be updated. Only called for the
120 const std::string& encoding) {}
119 UpdateEncoding(RenderFrameHost* render_frame_host, const std::string& encoding) argument

Completed in 1852 milliseconds

1234567891011>>