HomeSort by relevance Sort by last modified time
    Searched refs:encode (Results 176 - 200 of 1408) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
utf_8_sig.py 14 def encode(input, errors='strict'): function
30 def encode(self, input, final=False): member in class:IncrementalEncoder
76 del self.encode
80 def encode(self, input, errors='strict'): member in class:StreamWriter
81 self.encode = codecs.utf_8_encode
82 return encode(input, errors)
111 encode=encode,
palmos.py 12 def encode(self,input,errors='strict'): member in class:Codec
19 def encode(self, input, final=False): member in class:IncrementalEncoder
37 encode=Codec().encode,
quopri_codec.py 13 """Encode the input, returning a tuple (output object, length consumed).
24 quopri.encode(f, g, 1)
45 def encode(self, input,errors='strict'): member in class:Codec
51 def encode(self, input, final=False): member in class:IncrementalEncoder
69 encode=quopri_encode,
base64_codec.py 4 will return Python string objects for both encode and decode.
47 def encode(self, input,errors='strict'): member in class:Codec
53 def encode(self, input, final=False): member in class:IncrementalEncoder
73 encode=base64_encode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep263.py 10 u"?????".encode("utf-8"),
14 u"\?".encode("utf-8"),
testcodec.py 14 def encode(self,input,errors='strict'): member in class:Codec
32 return (Codec().encode,Codec().decode,StreamReader,StreamWriter)
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
PhotosListActivity.java 37 "content://xmldocument/?url=" + Uri.encode(PICASA_FEED_URL)));
  /external/chromium_org/net/data/websocket/
close-code-and-reason_wsh.py 24 data = struct.pack('!H', int(code)) + reason.encode('utf-8')
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.h 53 PassRefPtr<Uint8Array> encode(const String&, const Dictionary&);
TextEncoder.cpp 78 PassRefPtr<Uint8Array> TextEncoder::encode(const String& input, const Dictionary& options) function in class:WebCore::TextEncoder
83 // FIXME: Not flushing is not supported by TextCodec for encode; add it or
88 result = m_codec->encode(input.characters8(), input.length(), WTF::QuestionMarksForUnencodables);
90 result = m_codec->encode(input.characters16(), input.length(), WTF::QuestionMarksForUnencodables);
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.h 27 Base64 encodes src into dst. encode is a pointer to at least 65 chars.
28 encode[64] will be used as the pad character. Encodings other than the
31 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
  /external/lzma/CPP/7zip/Common/
CreateCoder.h 78 bool encode, bool onlyCoder);
85 bool encode);
90 CMyComPtr<ICompressCoder> &coder, bool encode);
96 bool encode);
  /external/skia/src/utils/
SkBase64.h 27 Base64 encodes src into dst. encode is a pointer to at least 65 chars.
28 encode[64] will be used as the pad character. Encodings other than the
31 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
  /external/smack/src/org/jivesoftware/smack/util/
Base64FileUrlEncoder.java 40 public String encode(String s) { method in class:Base64FileUrlEncoder
  /libcore/luni/src/main/java/java/security/
Certificate.java 38 * the data to encode must be that identified by {@link #getFormat()} and
39 * encoded by {@link #encode(OutputStream)}.
47 * @see #encode(OutputStream)
58 * the {@code OutputStream} to encode this certificate to.
65 public void encode(OutputStream stream) throws KeyException, IOException; method in interface:Certificate
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
palmos.py 12 def encode(self,input,errors='strict'): member in class:Codec
19 def encode(self, input, final=False): member in class:IncrementalEncoder
37 encode=Codec().encode,
quopri_codec.py 13 """Encode the input, returning a tuple (output object, length consumed).
24 quopri.encode(f, g, 1)
45 def encode(self, input,errors='strict'): member in class:Codec
51 def encode(self, input, final=False): member in class:IncrementalEncoder
69 encode=quopri_encode,
base64_codec.py 4 will return Python string objects for both encode and decode.
47 def encode(self, input,errors='strict'): member in class:Codec
53 def encode(self, input, final=False): member in class:IncrementalEncoder
73 encode=base64_encode,
hex_codec.py 4 will return Python string objects for both encode and decode.
47 def encode(self, input,errors='strict'): member in class:Codec
53 def encode(self, input, final=False): member in class:IncrementalEncoder
73 encode=hex_encode,
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 38 public String encode() { method in class:Window
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringGenerator.java 62 DEROctetString.encode(_derOut, _buf);
80 DEROctetString.encode(_derOut, _buf);
96 DEROctetString.encode(_derOut, bytes);
  /external/nist-sip/java/gov/nist/javax/sip/address/
GenericURI.java 81 /** Encode the URI.
84 public String encode() { method in class:GenericURI
88 public StringBuffer encode(StringBuffer buffer) { method in class:GenericURI
92 /** Encode this URI.
96 return this.encode();
UserInfo.java 102 * Encode the user information as a string.
105 public String encode() { method in class:UserInfo
106 return encode(new StringBuffer()).toString();
109 public StringBuffer encode(StringBuffer buffer) { method in class:UserInfo
  /external/nist-sip/java/gov/nist/javax/sip/header/
Protocol.java 66 public String encode() { method in class:Protocol
67 return encode(new StringBuffer()).toString();
70 public StringBuffer encode(StringBuffer buffer) { method in class:Protocol
158 * Changed the encode() and encodeBody() methods of SIP headers and basic classes to make them use the same StringBuffer instance during the encoding phase.
  /external/v8/src/
property-details.h 87 value_ = TypeField::encode(type)
88 | AttributesField::encode(attributes)
89 | StorageField::encode(index);

Completed in 1655 milliseconds

1 2 3 4 5 6 78 91011>>