HomeSort by relevance Sort by last modified time
    Searched full:encode (Results 101 - 125 of 1967) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/docs/html/guide/developing/tools/
etc1tool.jd 7 <p><code>etc1tool</code> is a command line utility that lets you encode PNG
11 <pre>etc1tool infile [--help | --encode | --encodeNoHeader | --decode] [--showDifference
34 <td><code>--encode</code></td>
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
ISOCharsetEncoderTest.java 96 encoder.encode(CharBuffer.wrap("\ud800\udc00"));
102 assertTrue(encoder.encode(CharBuffer.wrap("\ud800"), out, true)
107 assertSame(CoderResult.UNDERFLOW, encoder.encode(CharBuffer
109 assertTrue(encoder.encode(CharBuffer.wrap("\udc00"), out, true)
AbstractCharsetTestCase.java 113 * Test the method encode(String) with null.
117 this.testingCharset.encode((String) null);
125 * Test the method encode(CharBuffer) with null.
129 this.testingCharset.encode((CharBuffer) null);
140 ByteBuffer bb = this.testingCharset.encode(input);
  /external/chromium/sdch/open-vcdiff/man/
vcdiff.1 38 The default value (blank) causes vcdiff to use standard input for encode,
44 The default value (blank) causes vcdiff to use standard output for encode,
  /external/clang/test/CodeGenObjC/
bitfield_encoding.m 12 const char *encoding = @encode(struct foo);
  /external/webkit/Source/JavaScriptCore/runtime/
ErrorPrototype.cpp 62 return JSValue::encode(jsMakeNontrivialString(exec, name.toString(exec), ": ", message.toString(exec)));
63 return JSValue::encode(jsNontrivialString(exec, name.toString(exec)));
66 return JSValue::encode(jsMakeNontrivialString(exec, "Error: ", message.toString(exec)));
67 return JSValue::encode(jsNontrivialString(exec, "Error"));
JSGlobalObjectFunctions.cpp 52 static JSValue encode(ExecState* exec, const char* doNotEscape) function in namespace:JSC
444 return JSValue::encode(x);
450 return JSValue::encode(parsedObject);
457 return JSValue::encode(exec->interpreter()->execute(eval, exec, thisObject, static_cast<JSGlobalObject*>(unwrappedObject)->globalScopeChain()));
466 return JSValue::encode(jsNumber(parseInt(value.toString(exec), radix)));
469 return JSValue::encode(value);
474 return JSValue::encode(jsNumber((d > 0) ? floor(d) : ceil(d)));
476 return JSValue::encode(jsNaN());
477 return JSValue::encode(jsNumber(0));
480 return JSValue::encode(jsNumber(parseInt(value.toString(exec), radix)))
    [all...]
ObjectConstructor.cpp 109 return JSValue::encode(constructObject(exec, asInternalFunction(exec->callee())->globalObject(), args));
121 return JSValue::encode(constructObject(exec, asInternalFunction(exec->callee())->globalObject(), args));
134 return JSValue::encode(asObject(exec->argument(0))->prototype());
143 return JSValue::encode(jsNull());
147 return JSValue::encode(jsUndefined());
149 return JSValue::encode(jsUndefined());
163 return JSValue::encode(description);
177 return JSValue::encode(names);
191 return JSValue::encode(keys);
287 return JSValue::encode(jsNull())
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebGestureEvent.cpp 46 void WebGestureEvent::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::WebGestureEvent
48 WebEvent::encode(encoder);
50 encoder->encode(m_position);
51 encoder->encode(m_globalPosition);
WebKeyboardEvent.cpp 48 void WebKeyboardEvent::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::WebKeyboardEvent
50 WebEvent::encode(encoder);
52 encoder->encode(CoreIPC::In(m_text, m_unmodifiedText, m_keyIdentifier, m_windowsVirtualKeyCode, m_nativeVirtualKeyCode, m_macCharCode));
53 encoder->encode(CoreIPC::In(m_isAutoRepeat, m_isKeypad, m_isSystemKey));
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 41 encoder->encode(requestIsPresent);
47 encode(encoder, dictionary.get());
76 encoder->encode(responseIsPresent);
82 encode(encoder, dictionary.get());
116 encoder->encode(errorIsNull);
124 encoder->encode(domain);
127 encoder->encode(code);
140 encoder->encode(stringUserInfoMap);
144 encoder->encode(PlatformCertificateInfo((CFArrayRef)peerCertificateChain));
  /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/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-http/src/org/apache/commons/codec/
Encoder.java 35 * @param pObject An object ot encode
43 Object encode(Object pObject) throws EncoderException; method in interface:Encoder
StringEncoder.java 30 * @param pString a String to encode
37 String encode(String pString) throws EncoderException; method in interface:StringEncoder
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
iri2uri.py 53 def encode(c): function
60 retval = "".join(["%%%2X" % ord(o) for o in c.encode('utf-8')])
67 passed in a unicode strings. That is, do not utf-8 encode
71 authority = authority.encode('idna')
73 # 1. encode as utf-8
74 # 2. then %-encode each octet of that utf-8
76 uri = "".join([encode(c) for c in uri])
106 self.assertNotEqual("/fred?bar=%E2%98%9A#%E2%98%84", iri2uri(u"/fred?bar=\N{BLACK LEFT POINTING INDEX}#\N{COMET}".encode('utf-8')))
  /external/doclava/src/com/google/doclava/
CodeTagInfo.java 20 private static String encode(String t) { method in class:CodeTagInfo
30 //super("@code", "@code", encode(text), sp);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/boolean/
der_encode_boolean.c 15 ASN.1 DER, encode a BOOLEAN, Tom St Denis
23 @param in The boolean to encode
  /external/dropbear/libtomcrypt/src/pk/asn1/der/utctime/
der_length_utctime.c 32 /* we encode as YYMMDDhhmmssZ */
35 /* we encode as YYMMDDhhmmss{+|-}hh'mm' */
  /external/qemu/android/protocol/
fb-updates-proxy.h 45 * Gets number of bits used to encode a single pixel.
49 * Number of bits used to encode a single pixel.
  /external/webkit/LayoutTests/fast/encoding/resources/
char-encoding-utils.js 1 function encode(charset, unicode) function
18 shouldBe("encode('" + charsets[i] + "', '" + unicodes[i] + "')", "'" + expectedResults[i] + "'");
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentCoder.h 37 static void encode(ArgumentEncoder* encoder, const T& t) function in struct:CoreIPC::ArgumentCoder
39 t.encode(encoder);
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.cpp 122 void NPVariantData::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::NPVariantData
124 encoder->encode(m_type);
131 encoder->encode(boolValue());
134 encoder->encode(int32Value());
137 encoder->encode(doubleValue());
140 encoder->encode(stringValue());
143 encoder->encode(localNPObjectIDValue());
146 encoder->encode(remoteNPObjectIDValue());
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
AttachmentLoaderTests.java 32 // We don't encode the four characters after abc
34 // We don't re-encode escaped characters

Completed in 453 milliseconds

1 2 3 45 6 7 8 91011>>