HomeSort by relevance Sort by last modified time
    Searched refs:byteLimit (Results 1 - 13 of 13) sorted by null

  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 240 * @param byteLimit The binary size limit, in bytes
243 public PduPart getResizedImageAsPart(int widthLimit, int heightLimit, int byteLimit) {
247 widthLimit, heightLimit, byteLimit, mUri, mContext);
269 * @param byteLimit The binary size limit, in bytes
273 int widthLimit, int heightLimit, int byteLimit, Uri uri, Context context) {
286 ", hlimit=" + heightLimit + ", sizeLimit=" + byteLimit +
346 (os != null && os.size() > byteLimit)) {
380 if (jpgFileSize > byteLimit) {
381 quality = (quality * byteLimit) / jpgFileSize; // watch for int division!
415 resultTooBig = os == null || os.size() > byteLimit;
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedInputByteBufferNano.java 471 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
476 public int pushLimit(int byteLimit) throws InvalidProtocolBufferNanoException {
477 if (byteLimit < 0) {
480 byteLimit += bufferPos;
482 if (byteLimit > oldLimit) {
485 currentLimit = byteLimit;
  /packages/apps/Mms/src/com/android/mms/model/
ImageModel.java 186 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
214 if (size != 0 && size <= byteLimit &&
227 byteLimit);
MediaModel.java 305 * If the attached media is resizeable, resize it to fit within the byteLimit. Save the
307 * @param byteLimit the max size of the media attachment
310 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 631 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
644 public int pushLimit(int byteLimit) throws InvalidProtocolBufferException {
645 if (byteLimit < 0) {
648 byteLimit += totalBytesRetired + bufferPos;
650 if (byteLimit > oldLimit) {
653 currentLimit = byteLimit;
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 576 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
589 public int pushLimit(int byteLimit) throws InvalidProtocolBufferException {
590 if (byteLimit < 0) {
593 byteLimit += totalBytesRetired + bufferPos;
595 if (byteLimit > oldLimit) {
598 currentLimit = byteLimit;
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 528 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
533 public int pushLimit(int byteLimit) throws InvalidProtocolBufferMicroException {
534 if (byteLimit < 0) {
537 byteLimit += totalBytesRetired + bufferPos;
539 if (byteLimit > oldLimit) {
542 currentLimit = byteLimit;
  /external/chromium_org/third_party/skia/src/core/
SkScaledImageCache.cpp 299 SkScaledImageCache::SkScaledImageCache(size_t byteLimit) {
301 fTotalByteLimit = byteLimit;
498 size_t byteLimit;
503 byteLimit = SK_MaxU32; // no limit based on bytes
506 byteLimit = fTotalByteLimit;
514 if (bytesUsed < byteLimit && countUsed < countLimit) {
SkScaledImageCache.h 90 * byteLimit, purging automatically when a new image is added to the cache
94 SkScaledImageCache(size_t byteLimit);
  /external/skia/src/core/
SkScaledImageCache.cpp 299 SkScaledImageCache::SkScaledImageCache(size_t byteLimit) {
301 fTotalByteLimit = byteLimit;
498 size_t byteLimit;
503 byteLimit = SK_MaxU32; // no limit based on bytes
506 byteLimit = fTotalByteLimit;
514 if (bytesUsed < byteLimit && countUsed < countLimit) {
SkScaledImageCache.h 90 * byteLimit, purging automatically when a new image is added to the cache
94 SkScaledImageCache(size_t byteLimit);
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 

Completed in 439 milliseconds