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

  /external/chromium_org/third_party/skia/src/core/
SkScaledImageCache.h 50 SkScaledImageCache(size_t byteLimit);
SkScaledImageCache.cpp 155 SkScaledImageCache::SkScaledImageCache(size_t byteLimit) {
164 fByteLimit = byteLimit;
310 size_t byteLimit = fByteLimit;
315 if (bytesUsed < byteLimit) {
  /external/skia/src/core/
SkScaledImageCache.h 50 SkScaledImageCache(size_t byteLimit);
SkScaledImageCache.cpp 155 SkScaledImageCache::SkScaledImageCache(size_t byteLimit) {
164 fByteLimit = byteLimit;
310 size_t byteLimit = fByteLimit;
315 if (bytesUsed < byteLimit) {
  /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 306 * If the attached media is resizeable, resize it to fit within the byteLimit. Save the
308 * @param byteLimit the max size of the media attachment
311 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;

Completed in 3411 milliseconds