HomeSort by relevance Sort by last modified time
    Searched full:compress (Results 251 - 275 of 1230) sorted by null

<<11121314151617181920>>

  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 80 bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 245 * Helper method to compress the given bitmap as a JPEG and return the resulting byte array.
249 final boolean compressed = b.compress(Bitmap.CompressFormat.JPEG, quality, baos);
255 throw new IOException("Unable to compress image");
286 // thumbnail often, so we can compress stronger
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/
ShareMockupAction.java 55 mockup.compress(Bitmap.CompressFormat.PNG, 100, bytes);
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/
.classpath 8 <classpathentry exported="true" kind="lib" path="libs/commons-compress-1.0.jar"/>
  /build/core/
dynamic_binary.mk 71 ## Compress
87 @echo "target Compress Symbols: $(PRIVATE_MODULE) ($@)"
  /external/chromium_org/media/filters/
audio_renderer_algorithm.h 8 // playback rate, and the AudioRendererAlgorithm will stretch or compress the
16 // stretch and compress audio data to meet playback speeds less than and
  /external/chromium_org/net/tools/flip_server/
spdy_interface.h 152 uint32 flags, bool compress) OVERRIDE;
171 SpdyDataFlags flags, bool compress);
  /external/chromium_org/sync/internal_api/public/base/
unique_position.cc 50 return UniquePosition(Compress(proto.value()));
71 return UniquePosition(Compress(un_gzipped));
165 // We've got a large one. Compress it.
171 int result = compress(reinterpret_cast<Bytef*>(string_as_array(compressed)),
176 NOTREACHED() << "Failed to compress position: " << result;
398 : compressed_(Compress(uncompressed)),
541 std::string UniquePosition::Compress(const std::string& str) {
601 // Uncompresses strings that were compresed with UniquePosition::Compress.
unique_position.h 127 static std::string Compress(const std::string& input);
133 // algorithm. See Compress() and Uncompress() functions above.
  /external/kernel-headers/original/sound/
compress_offload.h 2 * compress_offload.h - compress offload header definations
157 * compress path ioctl definitions
  /external/qemu/android/utils/
jpeg-compress.c 16 #include "jpeg-compress.h"
190 /* Line by line compress the region. */
  /frameworks/av/media/libeffects/loudness/dsp/core/
dynamic_range_compression.cpp 78 float AdaptiveDynamicRangeCompression::Compress(float x) {
105 void AdaptiveDynamicRangeCompression::Compress(float *x1, float *x2) {
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 39 // Compress the bytes, using the passed-in dictionary (or no dictionary).
49 // If we used a dictionary to compress, check that we're asked for that same dictionary.
  /ndk/build/tools/
dev-platform-compress.sh 17 # dev-platform-compress.sh
28 "This script is used to compress an expanded platforms NDK tree
  /packages/apps/Camera2/src/com/android/camera/crop/
CropActivity.java 543 // If we only need to output to a URI, compress straight to file
546 || !crop.compress(cf, DEFAULT_COMPRESS_QUALITY, mOutStream)) {
547 Log.w(LOGTAG, "failed to compress bitmap to file: " + mOutUri.toString());
553 // Compress to byte array
555 if (crop.compress(cf, DEFAULT_COMPRESS_QUALITY, tmpOut)) {
562 "failed to compress bitmap to file: " + mOutUri.toString());
570 "failed to compress bitmap to file: "
593 Log.w(LOGTAG, "cannot compress bitmap");
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 546 // If we only need to output to a URI, compress straight to file
549 || !crop.compress(cf, DEFAULT_COMPRESS_QUALITY, mOutStream)) {
550 Log.w(LOGTAG, "failed to compress bitmap to file: " + mOutUri.toString());
556 // Compress to byte array
558 if (crop.compress(cf, DEFAULT_COMPRESS_QUALITY, tmpOut)) {
565 "failed to compress bitmap to file: " + mOutUri.toString());
573 "failed to compress bitmap to file: "
596 Log.w(LOGTAG, "cannot compress bitmap");
  /packages/apps/Tag/canon/src/com/android/apps/tagcanon/
TagCanon.java 90 photo.compress(Bitmap.CompressFormat.PNG, 100, out);
102 throw new RuntimeException("Failed to compress image", e);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
DataExporter.java 37 * Compress all files under the app data dir into a single zip file.
52 * Compress all files under the app data dir into a single zip file, and return the content://
  /external/chromium/net/spdy/
spdy_framer.h 40 void FramerSetEnableCompressionHelper(SpdyFramer* framer, bool compress);
255 // We want spdy to compress headers across the entire session. As long as
257 // can each compress frames in the same order and then compress them in that
333 bool compress);
  /external/chromium_org/courgette/
disassembler_elf_32_arm.cc 20 CheckBool DisassemblerElf32ARM::Compress(ARM_RVA type, uint32 arm_op, RVA rva,
136 // Reverses the process in the compress() method. Takes the
230 CheckBool ret = Compress(type_, Read16LittleEndian(op_pointer), rva(),
237 CheckBool ret = Compress(type_, Read32LittleEndian(op_pointer), rva(),
249 CheckBool ret = Compress(type_, pval, rva(), &c_op_, &relative_target);
  /external/tinycompress/
NOTICE 3 tinycompress library for compress audio offload in alsa
35 tinycompress library for compress audio offload in alsa
57 tinyplay command line player for compress audio offload in alsa
89 tinyplay command line player for compress audio offload in alsa
193 tinycompress library for compress audio offload in alsa
  /external/zlib/src/contrib/ada/
test.adb 316 Print_Statistic ("Generic compress", ZLib.Total_Out (Filter));
343 -- Compress to the back stream.
368 Print_Statistic ("Write compress",
400 -- Compress by reading from compression stream.
420 Print_Statistic ("Read compress",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_itertools.py 316 self.assertEqual(list(compress(data='ABCDEF', selectors=[1,0,1,0,1,1])), list('ACEF'))
317 self.assertEqual(list(compress('ABCDEF', [1,0,1,0,1,1])), list('ACEF'))
318 self.assertEqual(list(compress('ABCDEF', [0,0,0,0,0,0])), list(''))
319 self.assertEqual(list(compress('ABCDEF', [1,1,1,1,1,1])), list('ABCDEF'))
320 self.assertEqual(list(compress('ABCDEF', [1,0,1])), list('AC'))
321 self.assertEqual(list(compress('ABC', [0,1,1,1,1,1])), list('BC'))
325 self.assertEqual(list(compress(data, selectors)), [1,3,5] * n)
326 self.assertRaises(TypeError, compress, None, range(6)) # 1st arg not iterable
327 self.assertRaises(TypeError, compress, range(6), None) # 2nd arg not iterable
328 self.assertRaises(TypeError, compress, range(6)) # too few arg
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_itertools.py 316 self.assertEqual(list(compress(data='ABCDEF', selectors=[1,0,1,0,1,1])), list('ACEF'))
317 self.assertEqual(list(compress('ABCDEF', [1,0,1,0,1,1])), list('ACEF'))
318 self.assertEqual(list(compress('ABCDEF', [0,0,0,0,0,0])), list(''))
319 self.assertEqual(list(compress('ABCDEF', [1,1,1,1,1,1])), list('ABCDEF'))
320 self.assertEqual(list(compress('ABCDEF', [1,0,1])), list('AC'))
321 self.assertEqual(list(compress('ABC', [0,1,1,1,1,1])), list('BC'))
325 self.assertEqual(list(compress(data, selectors)), [1,3,5] * n)
326 self.assertRaises(TypeError, compress, None, range(6)) # 1st arg not iterable
327 self.assertRaises(TypeError, compress, range(6), None) # 2nd arg not iterable
328 self.assertRaises(TypeError, compress, range(6)) # too few arg
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
extensions.py 341 """Base class for perframe-compress and permessage-compress extension."""
420 """perframe-compress processor.
447 permessage-compress extension when the deflate method is chosen.
463 specified for permessage-compress but are specified for
590 - (When processing the permessage-compress extension) this processor
787 """permessage-compress extension processor.

Completed in 3110 milliseconds

<<11121314151617181920>>