HomeSort by relevance Sort by last modified time
    Searched refs:encode (Results 226 - 250 of 816) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoItem.java 73 // Encode the data and note the size.
76 encoded = encode(addedTo.getFile(), null, null, null, false);
101 encode(file, prefix, null, out, false); method
111 encode(null, prefix, out, null, false); method
120 * but write the bits from the original encode
124 encode(file, null, null, out, true); method
142 private byte[] encode(DexFile file, String prefix, PrintWriter debugPrint, method in class:DebugInfoItem
162 * Helper for {@link #encode} to do most of the work.
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 71 // Encode the data and note the size.
74 encoded = encode(addedTo.getFile(), null, null, null, false);
99 encode(file, prefix, null, out, false); method
109 encode(null, prefix, out, null, false); method
118 * but write the bits from the original encode
122 encode(file, null, null, out, true); method
140 private byte[] encode(DexFile file, String prefix, PrintWriter debugPrint, method in class:DebugInfoItem
160 * Helper for {@link #encode} to do most of the work.
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TimeStampRespTest.java 89 ASN1OctetString.getInstance().encode(
90 TSTInfo.ASN1.encode(tSTInfo)));
99 byte [] encoding = TimeStampResp.ASN1.encode(response);
105 PKIStatusInfo.ASN1.encode(status), PKIStatusInfo.ASN1
106 .encode(decoded.getStatus())));
TSTInfoTest.java 63 byte[] encoding = TSTInfo.ASN1.encode(info);
70 MessageImprint.ASN1.encode(msgImprint), MessageImprint.ASN1
71 .encode(decoded.getMessageImprint())));
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 88 return that.getMatcher().match(this.encode());
160 * Encode the address as a string and return it.
163 public String encode() { method in class:AddressImpl
164 return encode(new StringBuffer()).toString();
167 public StringBuffer encode(StringBuffer buffer) { method in class:AddressImpl
181 address.encode(buffer);
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLAllCollectionCustom.cpp 65 return JSValue::encode(jsUndefined());
79 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index)));
82 return JSValue::encode(getNamedItems(exec, jsCollection, Identifier(exec, string)));
94 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node));
100 return JSValue::encode(jsUndefined());
JSHTMLCollectionCustom.cpp 61 return JSValue::encode(jsUndefined());
75 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index)));
78 return JSValue::encode(getNamedItems(exec, jsCollection, Identifier(exec, string)));
90 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node));
96 return JSValue::encode(jsUndefined());
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetDecoderTest.java 42 byte[] arr = encode("UTF-16", "Android");
56 byte[] arr = encode("UTF-16", "Android");
72 byte[] arr = encode("UTF-16", "Android");
86 private static byte[] encode(String charsetName, String s) throws Exception { method in class:CharsetDecoderTest
88 return encoder.encode(CharBuffer.wrap(s)).array();
  /external/markdown/markdown/
html4.py 76 return text.encode(encoding, "xmlcharrefreplace")
92 return text.encode(encoding, "xmlcharrefreplace")
110 return text.encode(encoding, "xmlcharrefreplace")
123 return text.encode(encoding, "xmlcharrefreplace")
163 k.encode(encoding),
211 def encode(text): function in function:_namespaces
212 return text.encode(encoding)
227 qnames[qname] = encode("%s:%s" % (prefix, tag))
229 qnames[qname] = encode(tag) # default element
237 qnames[qname] = encode(qname
    [all...]
  /external/v8/src/mips/
code-stubs-mips.h 118 // Encode the parameters in a unique 16 bit value.
119 return OpBits::encode(op_)
120 | ModeBits::encode(mode_)
121 | KnownIntBits::encode(MinorKeyForKnownInt())
122 | TypeInfoBits::encode(runtime_operands_type_)
123 | RegisterBits::encode(lhs_.is(a0));
281 return OpBits::encode(op_)
282 | ModeBits::encode(mode_)
283 | FPUBits::encode(use_fpu_)
284 | OperandTypeInfoBits::encode(operands_type_
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 102 void encode(CoreIPC::ArgumentEncoder*) const;
139 void encode(CoreIPC::ArgumentEncoder*) const;
194 void encode(CoreIPC::ArgumentEncoder*) const;
229 void encode(CoreIPC::ArgumentEncoder*) const;
257 void encode(CoreIPC::ArgumentEncoder*) const;
295 void encode(CoreIPC::ArgumentEncoder*) const;
316 void encode(CoreIPC::ArgumentEncoder*) const;
  /external/nist-sip/java/gov/nist/core/
Host.java 119 public String encode() { method in class:Host
120 return encode(new StringBuffer()).toString();
123 public StringBuffer encode(StringBuffer buffer) { method in class:Host
  /external/webkit/Source/WebCore/bridge/
runtime_method.cpp 94 return JSValue::encode(jsUndefined());
103 return JSValue::encode(RuntimeObject::throwInvalidAccessError(exec));
118 return JSValue::encode(result);
  /libcore/luni/src/main/java/java/nio/charset/
ModifiedUtf8.java 96 public static void encode(byte[] dst, int offset, String s) { method in class:ModifiedUtf8
118 public static byte[] encode(String s) throws UTFDataFormatException { method in class:ModifiedUtf8
122 ModifiedUtf8.encode(result, SizeOf.SHORT, s);
  /prebuilt/common/http-client/
commons-codec-1.4.jar 
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.cpp     [all...]
  /development/tools/emulator/system/camera/
JpegCompressor.cpp 54 if (encode(&mStream, pY, width, height, offsets, quality)) {
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetEncoderTest.java 106 * Test malfunction encode(CharBuffer)
111 cs.encode(CharBuffer.wrap("AB"));
119 * Mock charset class with malfunction decode & encode.
155 * Test reserve bytes encode(CharBuffer,ByteBuffer,boolean)
163 CoderResult result = encoder.encode(in1, out, false);
166 result = encoder.encode(in2, out, true);
172 * @tests {@link java.nio.charset.Charset#encode(java.nio.CharBuffer)
180 Charset.forName("UTF-8").encode(CharBuffer.wrap(s));
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/
SignerInfoTest.java 45 byte[] encoding = SignerInfo.ASN1.encode(signerInfo);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNamesTest.java 48 byte[] encoding = GeneralNames.ASN1.encode(subj_alt_names);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
CertificateStub.java 62 * @see java.security.Certificate#encode(java.io.OutputStream)
64 public void encode(OutputStream stream) throws KeyException, method in class:CertificateStub
  /external/apache-http/src/org/apache/http/client/utils/
URLEncodedUtils.java 161 final String encodedName = encode(parameter.getName(), encoding);
163 final String encodedValue = value != null ? encode(value, encoding) : "";
182 private static String encode (final String content, final String encoding) { method in class:URLEncodedUtils
184 return URLEncoder.encode(content,
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERSequence.java 58 void encode( method in class:DERSequence
DERTaggedObject.java 49 void encode( method in class:DERTaggedObject
DERUnknownTag.java 53 void encode( method in class:DERUnknownTag

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 91011>>