HomeSort by relevance Sort by last modified time
    Searched defs:codec (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 17 package org.apache.commons.codec.binary;
19 import org.apache.commons.codec.BinaryDecoder;
20 import org.apache.commons.codec.BinaryEncoder;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
Base64.java 17 package org.apache.commons.codec.binary;
19 import org.apache.commons.codec.BinaryDecoder;
20 import org.apache.commons.codec.BinaryEncoder;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
  /external/apache-http/src/org/apache/commons/codec/net/
QCodec.java 17 package org.apache.commons.codec.net;
22 import org.apache.commons.codec.DecoderException;
23 import org.apache.commons.codec.EncoderException;
24 import org.apache.commons.codec.StringDecoder;
25 import org.apache.commons.codec.StringEncoder;
254 + " cannot be encoded using Q codec");
278 + " cannot be decoded using Q codec");
URLCodec.java 17 package org.apache.commons.codec.net;
23 import org.apache.commons.codec.BinaryDecoder;
24 import org.apache.commons.codec.BinaryEncoder;
25 import org.apache.commons.codec.DecoderException;
26 import org.apache.commons.codec.EncoderException;
27 import org.apache.commons.codec.StringDecoder;
28 import org.apache.commons.codec.StringEncoder;
40 * This codec is meant to be a replacement for standard Java classes
QuotedPrintableCodec.java 17 package org.apache.commons.codec.net;
22 import org.apache.commons.codec.BinaryDecoder;
23 import org.apache.commons.codec.BinaryEncoder;
24 import org.apache.commons.codec.DecoderException;
25 import org.apache.commons.codec.EncoderException;
26 import org.apache.commons.codec.StringDecoder;
27 import org.apache.commons.codec.StringEncoder;
31 * Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>.
47 * does not lend itself well into the byte[] oriented codec framework. Complete the codec once the steamable code
    [all...]
  /external/harfbuzz/tests/linebreaking/
main.cpp 192 QTextCodec *codec = QTextCodec::codecForMib(2259); local
193 QString txt = codec->toUnicode(QByteArray("\xca\xc7\xd1\xca\xb4\xd5\xa4\xc3\xd1\xba\x20\xb9\xd5\xe8\xe0\xbb\xe7\xb9\xa1\xd2\xc3\xb7\xb4\xca\xcd\xba\xb5\xd1\xc7\xe0\xcd\xa7"));
  /external/libvpx/examples/
decoder_tmpl.c 47 vpx_codec_ctx_t codec; local
encoder_tmpl.c 111 vpx_codec_ctx_t codec; local
162 while( (pkt = vpx_codec_get_cx_data(&codec, &iter)) ) {
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CreateBitmap.java 59 private static Bitmap codec(Bitmap src, Bitmap.CompressFormat format, method in class:CreateBitmap.SampleView
102 mJPEG[i] = codec(mBitmaps[i], Bitmap.CompressFormat.JPEG, 80);
103 mPNG[i] = codec(mBitmaps[i], Bitmap.CompressFormat.PNG, 0);
  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
Soundex.java 17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
DoubleMetaphone.java 17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
    [all...]
  /external/bluetooth/hcidump/parser/
avdtp.c 117 static char *codec2str(uint8_t type, uint8_t codec)
121 switch (codec) {
137 switch (codec) {
172 return "Media Codec";
218 uint8_t type, codec, tmp; local
221 codec = get_u8(frm);
223 printf("%s - %s\n", cat2str(cat), codec2str(type, codec));
225 switch (codec) {
  /external/chromium/chrome/browser/bookmarks/
bookmark_storage.cc 69 BookmarkCodec codec; local
71 codec.Decode(details_->bb_node(), details_->other_folder_node(),
74 details_->set_computed_checksum(codec.computed_checksum());
75 details_->set_stored_checksum(codec.stored_checksum());
76 details_->set_ids_reassigned(codec.ids_reassigned());
203 BookmarkCodec codec; local
204 scoped_ptr<Value> value(codec.Encode(model_));
  /external/skia/samplecode/
SampleEncode.cpp 137 SkImageEncoder* codec = SkImageEncoder::Create(gTypes[j]); local
138 if (NULL == codec ||
139 !codec->encodeFile(path.c_str(), fBitmaps[i], 100)) {
143 delete codec;
  /external/skia/src/images/
SkImageDecoder.cpp 258 SkImageDecoder* codec = SkImageDecoder::Factory(stream); local
260 if (NULL != codec) {
261 success = codec->decode(stream, bm, pref, mode);
263 *format = codec->getFormat();
265 delete codec;
  /frameworks/av/cmds/stagefright/
recordvideo.cpp 45 fprintf(stderr, " -v video codec: [0] AVC [1] M4V [2] H263 (default: 0)\n");
163 int codec = 0; local
229 codec = atoi(optarg);
230 if (codec < 0 || codec > 2) {
253 switch (codec) {
codec.cpp 18 #define LOG_TAG "codec"
138 sp<MediaCodec> codec = state->mCodec; local
140 CHECK_EQ((status_t)OK, codec->start());
142 CHECK_EQ((status_t)OK, codec->getInputBuffers(&state->mInBuffers));
143 CHECK_EQ((status_t)OK, codec->getOutputBuffers(&state->mOutBuffers));
  /frameworks/base/voip/java/android/net/rtp/
AudioGroup.java 148 AudioCodec codec = stream.getCodec(); local
149 String codecSpec = String.format("%d %s %s", codec.type,
150 codec.rtpmap, codec.fmtp);
  /external/stlport/test/unit/
codecvt_test.cpp 309 eater_codecvt codec(1);
310 locale loc(locale::classic(), &codec); local
343 generator_codecvt codec(1);
344 locale loc(locale::classic(), &codec);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp 249 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
250 if (!codec)
253 SkAutoTDelete<SkImageDecoder> ad(codec);
254 codec->setPrefConfigTable(gPrefConfigTable);
255 if (!codec->decode(&stream, &tmp, SkImageDecoder::kDecodeBounds_Mode))
289 codec->setSampleSize(sampleSize);
291 if (!codec->decode(&stream, &tmp,
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/src/
LCML_DspCodec.c 1575 LCML_DSP_INTERFACE *codec; local
1633 LCML_DSP_INTERFACE *codec; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
codecvt_test.cpp 310 eater_codecvt codec(1);
311 locale loc(locale::classic(), &codec); local
345 generator_codecvt codec(1);
346 locale loc(locale::classic(), &codec);
  /ndk/tests/device/test-stlport/unit/
codecvt_test.cpp 310 eater_codecvt codec(1);
311 locale loc(locale::classic(), &codec); local
345 generator_codecvt codec(1);
346 locale loc(locale::classic(), &codec);

Completed in 1143 milliseconds

12 3 4 5