HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 26 - 50 of 1875) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentCoders.h 47 static bool decode(ArgumentDecoder* decoder, T& t) function in struct:CoreIPC::SimpleArgumentCoder
60 static bool decode(ArgumentDecoder* decoder, std::pair<T, U>& pair) function in struct:CoreIPC::ArgumentCoder
63 if (!decoder->decode(first))
67 if (!decoder->decode(second))
86 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector) function in struct:CoreIPC::VectorArgumentCoder
95 if (!decoder->decode(element))
116 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector) function in struct:CoreIPC::VectorArgumentCoder
135 if (!decoder->decode(element))
155 static bool decode(ArgumentDecoder* decoder, Vector<uint8_t>& vector) function in struct:CoreIPC::ArgumentCoder
171 static bool decode(ArgumentDecoder* decoder, HashMapType& hashMap function in struct:CoreIPC::ArgumentCoder
212 static bool decode(ArgumentDecoder* decoder, CString& result) function in struct:CoreIPC::ArgumentCoder
254 static bool decode(ArgumentDecoder* decoder, String& result) function in struct:CoreIPC::ArgumentCoder
288 static bool decode(ArgumentDecoder* decoder, AtomicString& atomicString) function in struct:CoreIPC::ArgumentCoder
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeSchedule3.td 19 // two source operands are read during the decode stage and the result is
23 , InstrStage<1,[ID]> // one cycle in decode stage
33 // two source operands are read during the decode stage and the result is
37 , InstrStage<1,[ID]> // one cycle in decode stage
46 // source operands are read during the decode stage and the result is ready
50 , InstrStage<1,[ID]> // one cycle in decode stage
60 // are read during the decode stage and the result is ready after the execute
64 , InstrStage<1,[ID]> // one cycle in decode stage
72 // read during the decode stage.
75 , InstrStage<1,[ID]> // one cycle in decode stag
    [all...]
MBlazeSchedule5.td 19 // two source operands are read during the decode stage and the result is
23 , InstrStage<1,[ID]> // one cycle in decode stage
34 // pipeline stages. The two source operands are read during the decode stage
38 , InstrStage<1,[ID]> // one cycle in decode stage
49 // source operands are read during the decode stage and the result is ready
53 , InstrStage<1,[ID]> // one cycle in decode stage
64 // The two source operands are read during the decode stage and the result is
68 , InstrStage<1,[ID]> // one cycle in decode stage
78 // read during the decode stage.
81 , InstrStage<1,[ID]> // one cycle in decode stag
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLDecoderTest.java 38 * @tests java.net.URLDecoder#decode(java.lang.String)
44 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
46 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
48 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
53 * @tests java.net.URLDecoder#decode(java.lang.String, java.lang.String)
58 URLDecoder.decode("", "");
  /external/v8/src/
disassembler.h 39 // Decode instructions in the the interval [begin, end) and print the
42 static int Decode(FILE* f, byte* begin, byte* end);
44 // Decode instructions in code.
45 static void Decode(FILE* f, Code* code);
47 // Decode instruction at pc and print disassembled instruction into f.
51 static int Decode(FILE* f, byte* pc, int* char_count);
  /external/webkit/Source/WebKit2/Shared/
WebBackForwardListItem.cpp 72 PassRefPtr<WebBackForwardListItem> WebBackForwardListItem::decode(CoreIPC::ArgumentDecoder& decoder) function in class:WebKit::WebBackForwardListItem
75 if (!decoder.decode(originalURL))
79 if (!decoder.decode(url))
83 if (!decoder.decode(title))
87 if (!decoder.decode(itemID))
91 if (!decoder.decode(data))
DictionaryPopupInfo.cpp 48 bool DictionaryPopupInfo::decode(CoreIPC::ArgumentDecoder* decoder, DictionaryPopupInfo& result) function in class:WebKit::DictionaryPopupInfo
50 if (!decoder->decode(result.origin))
52 if (!decoder->decode(result.fontInfo))
57 if (!CoreIPC::decode(decoder, result.options))
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.cpp 44 bool Plugin::Parameters::decode(CoreIPC::ArgumentDecoder* decoder, Parameters& parameters) function in class:WebKit::Plugin::Parameters
47 if (!decoder->decode(urlString))
52 if (!decoder->decode(parameters.names))
54 if (!decoder->decode(parameters.values))
56 if (!decoder->decode(parameters.mimeType))
58 if (!decoder->decode(parameters.loadManually))
  /libcore/luni/src/main/java/java/net/
URLDecoder.java 25 * This class is used to decode a string which is encoded in the {@code
41 * @deprecated use {@link #decode(String, String)} instead.
44 public static String decode(String s) { method in class:URLDecoder
45 return UriCodec.decode(s, true, Charset.defaultCharset());
66 public static String decode(String s, String encoding) throws UnsupportedEncodingException { method in class:URLDecoder
67 return UriCodec.decode(s, true, Charset.forName(encoding));
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetDecoderTest.java 67 * @tests java.nio.charset.CharsetDecoder#decode(java.nio.ByteBuffer)
76 // decoder.decode(bb);
81 // CharBuffer charbuf = Charset.forName("UTF-16").decode(buf);
84 // charbuf = Charset.forName("UTF-16BE").decode(buf);
87 // charbuf = Charset.forName("UTF-16LE").decode(buf);
96 decoder2.decode(in);
104 * Test malfunction decode(ByteBuffer)
111 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
122 fail("Assert 1: Charset.decode should throw CoderMalfunctionError"); // NON-NLS-
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
CdmaSmsTest.java 116 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
123 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
130 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
137 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
153 BearerData revBearerData = BearerData.decode(encodedSms);
161 revBearerData = BearerData.decode(BearerData.encode(bearerData));
164 revBearerData = BearerData.decode(BearerData.encode(bearerData));
167 revBearerData = BearerData.decode(BearerData.encode(bearerData));
183 BearerData revBearerData = BearerData.decode(encodedSms);
191 revBearerData = BearerData.decode(BearerData.encode(bearerData))
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
14 blx r2 @ decode and handle the mem op
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
15 blx r2 @ decode and handle the mem op
  /external/chromium/webkit/glue/media/
audio_decoder.h 14 // Decode in-memory audio file data.
  /external/dbus/test/
.gitignore 22 decode-gcov
  /external/dropbear/libtomcrypt/
TODO 11 - add CPP macros like OpenSSL has for ASN1 (e.g. encode/decode functions, etc) shameless ripoff :-)
  /external/iptables/include/linux/netfilter_ipv4/
ipt_LOG.h 10 #define IPT_LOG_MACDECODE 0x20 /* Decode MAC header */
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_LOG.h 10 #define IP6T_LOG_MACDECODE 0x20 /* Decode MAC header */
  /external/libvpx/
usage_cx.dox 3 The vpx_codec_encode() function is at the core of the decode loop. It
  /external/webkit/Source/WebKit2/Shared/Plugins/
PluginProcessCreationParameters.cpp 49 bool PluginProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, PluginProcessCreationParameters& result) function in class:WebKit::PluginProcessCreationParameters
51 if (!decoder->decode(result.pluginPath))
55 if (!decoder->decode(result.parentProcessName))
57 if (!decoder->decode(result.acceleratedCompositingPort))
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.AAC.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G711.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.G722.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G726.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G729.decode

Completed in 567 milliseconds

12 3 4 5 6 7 8 91011>>