Searched defs:encoding (Results 26 - 50 of 516) sorted by relevance

1234567891011>>

/external/chromium_org/tools/relocation_packer/src/
H A Dleb128.h30 // Add a value to the encoding stream.
34 // Add a vector of values to the encoding stream.
39 // |encoding| is the returned vector of encoded data.
40 void GetEncoding(std::vector<uint8_t>* encoding) { *encoding = encoding_; } argument
51 // |encoding| is the vector of encoded data.
52 explicit Leb128Decoder(const std::vector<uint8_t>& encoding);
H A Dsleb128.h31 // Add a value to the encoding stream.
35 // Add a vector of values to the encoding stream.
40 // |encoding| is the returned vector of encoded data.
41 void GetEncoding(std::vector<uint8_t>* encoding) { *encoding = encoding_; } argument
52 // |encoding| is the vector of encoded data.
53 explicit Sleb128Decoder(const std::vector<uint8_t>& encoding);
/external/clang/test/CodeGenCXX/
H A D2007-04-05-PackedBitFieldsOverlap-2.cpp13 unsigned long encoding : 8; member in struct:M_Packed
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/
H A Dencodingoption.cc15 #include "polo/encoding/encodingoption.h"
20 namespace encoding { namespace in namespace:polo
47 } // namespace encoding
H A Dhexadecimalencoder.cc15 // A SecretEncoder implementation that uses hexadecimal encoding. This encoding
18 #include "polo/encoding/hexadecimalencoder.h"
25 namespace encoding { namespace in namespace:polo
46 } // namespace encoding
/external/google-tv-pairing-protocol/java/src/com/google/polo/encoding/
H A DSecretEncoder.java17 package com.google.polo.encoding;
20 * Methods that must be implemented by a secret encoding scheme.
26 * value in this encoding.
/external/icu/icu4c/source/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/libunwind/src/dwarf/
H A DGpe.c33 unw_word_t *addr, unsigned char encoding,
37 return dwarf_read_encoded_pointer_inlined (as, a, addr, encoding,
32 dwarf_read_encoded_pointer(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unsigned char encoding, const unw_proc_info_t *pi, unw_word_t *valp, void *arg) argument
/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.java41 private static final byte[] encoding = { 1, 2, 3 }; field in class:Timestamp_ImplTest
43 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.java45 * my cert path the only encoding
47 private final byte[] encoding; field in class:MyCertPath
53 * @param encoding
55 public MyCertPath(byte[] encoding) { argument
57 this.encoding = encoding;
59 certificates.add(new MyCertificate("MyEncoding", encoding));
77 return encoding.clone();
82 * <code>encoding</code> parameter
83 * @throws CertificateEncodingException if <code>encoding</cod
87 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Object.java10 * Return the default BER or DER encoding for this object.
13 * @throws java.io.IOException on encoding error.
27 * Return either the default for "BER" or a DER encoding if "DER" is specified.
29 * @param encoding name of encoding to use.
31 * @throws IOException on encoding error.
34 String encoding)
37 if (encoding.equals(ASN1Encoding.DER))
46 else if (encoding.equals(ASN1Encoding.DL))
33 getEncoded( String encoding) argument
/external/bouncycastle/bcprov/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_org/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 base::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_org/remoting/protocol/
H A Daudio_reader.cc16 AudioReader::AudioReader(AudioPacket::Encoding encoding) argument
18 encoding_(encoding),
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCharsetRule.h31 static PassRefPtrWillBeRawPtr<CSSCharsetRule> create(CSSStyleSheet* parent, const String& encoding) argument
33 return adoptRefWillBeNoop(new CSSCharsetRule(parent, encoding));
42 const String& encoding() const { return m_encoding; } function in class:blink::FINAL
43 void setEncoding(const String& encoding) { m_encoding = encoding; } argument
48 CSSCharsetRule(CSSStyleSheet* parent, const String& encoding);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentEncodingData.h44 const WTF::TextEncoding& encoding() const { return m_encoding; } function in class:blink::DocumentEncodingData
57 return a.encoding() != b.encoding()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DDocumentResource.cpp56 String DocumentResource::encoding() const function in class:blink::DocumentResource
58 return m_decoder->encoding().name();
H A DTextResource.cpp28 String TextResource::encoding() const function in class:blink::TextResource
30 return m_decoder->encoding().name();
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderSync.cpp73 String FileReaderSync::readAsText(ExecutionContext* executionContext, Blob* blob, const String& encoding, ExceptionState& exceptionState) argument
81 loader.setEncoding(encoding);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DSubmitInputType.cpp55 bool SubmitInputType::appendFormData(FormDataList& encoding, bool) const argument
59 encoding.appendData(element().name(), element().valueWithDefault());
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLMetaCharsetParser.h46 // Returns true if done checking, regardless whether an encoding is found.
49 const WTF::TextEncoding& encoding() { return m_encoding; } function in class:blink::HTMLMetaCharsetParser
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DTextResourceDecoderBuilder.cpp47 TextResourceDecoderBuilder::TextResourceDecoderBuilder(const AtomicString& mimeType, const AtomicString& encoding) argument
49 , m_encoding(encoding)
78 // Set the hint encoding to the parent frame encoding only if
81 // containing a carefully crafted html/javascript in one encoding
82 // that can be mistaken for hintEncoding (or related encoding) by
89 decoder->setHintEncoding(parentFrame->document()->encoding());
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLParserInput.h63 const char* encoding() const { return m_encoding; } function in class:blink::XMLParserInput

Completed in 640 milliseconds

1234567891011>>