HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 76 - 100 of 706) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/
DragImage.cpp 212 void DragImage::fitToMaxSize(const IntSize& srcSize, const IntSize& maxSize)
219 if (srcSize.width() > maxSize.width()) {
220 widthResizeRatio = maxSize.width() / static_cast<float>(srcSize.width());
224 if (srcSize.height() > maxSize.height()) {
225 heightResizeRatio = maxSize.height() / static_cast<float>(srcSize.height());
DragImage.h 50 void fitToMaxSize(const IntSize& srcSize, const IntSize& maxSize);
  /frameworks/base/core/java/android/net/http/
HttpResponseCache.java 177 * @param maxSize the maximum size of the cache in bytes.
183 public static HttpResponseCache install(File directory, long maxSize) throws IOException {
190 && installedCache.getMaxSize() == maxSize
200 new com.android.okhttp.HttpResponseCache(directory, maxSize);
216 * this cache. This may be greater than the {@link #maxSize} if a background
227 public long maxSize() {
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_sign_in_container.mm 116 - (void)constrainSizeToMinimum:(NSSize)minSize maximum:(NSSize)maxSize {
118 maxSize_ = maxSize;
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
tote.h 27 int MaxSize() const {return kMaxSize_;}
65 int MaxSize() const {return kMaxSize_;}
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/util/
utility.c 115 int maxSize)
126 strncpy(stringParam, argv[n], maxSize);
  /external/smack/src/org/jivesoftware/smackx/muc/
ConnectionDetachedPacketCollector.java 59 public ConnectionDetachedPacketCollector(int maxSize) {
60 this.resultQueue = new ArrayBlockingQueue<Packet>(maxSize);
  /external/svox/pico/lib/
picoos.h 102 void picoos_get_sep_part_str (picoos_char string[], picoos_int32 stringlen, picoos_int32 * ind, picoos_char sepCh, picoos_char part[], picoos_int32 maxsize, picoos_uint8 * done);
238 void picoos_emGetExceptionMessage(picoos_ExceptionManager this, picoos_char * msg, picoos_uint16 maxsize);
247 void picoos_emGetWarningMessage(picoos_ExceptionManager this, picoos_uint8 warnNum, picoos_char * msg, picoos_uint16 maxsize);
344 picoos_bool picoos_Name(picoos_File f, picoos_char name[], picoos_uint32 maxsize);
518 * 'maxsize' is the maximal size of 'part' including a byte for the terminating NULLC! */
521 picoos_char part[], picoos_int32 maxsize, picoos_uint8 * done);
525 * fromStr is assumed to be NULLC terminated and toStr is forced to be NULLC terminated within maxsize.
529 picoos_uint8 picoos_get_str (picoos_char * fromStr, picoos_uint32 * pos, picoos_char * toStr, picoos_objsize_t maxsize);
  /frameworks/base/libs/hwui/
RenderBufferCache.cpp 70 void RenderBufferCache::setMaxSize(uint32_t maxSize) {
72 mMaxSize = maxSize;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SizeClustering.java 105 String maxSize = getSizeString(i + 1);
107 res.getString(R.string.size_between), minSize, maxSize);
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglarray.h 41 EGLint MaxSize;
  /external/deqp/framework/opengl/
gluFboRenderContext.cpp 197 int maxSize = 0;
198 gl.getIntegerv(GL_MAX_RENDERBUFFER_SIZE, &maxSize);
200 width = (width == glu::RenderConfig::DONT_CARE) ? maxSize : width;
201 height = (height == glu::RenderConfig::DONT_CARE) ? maxSize : height;
  /external/libcxx/include/
ctime 40 size_t strftime(char* restrict s, size_t maxsize, const char* restrict format,
  /external/mesa3d/src/egl/main/
eglarray.h 41 EGLint MaxSize;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 144 private long maxSize;
181 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
188 this.maxSize = maxSize;
197 * @param maxSize the maximum number of bytes this cache should use to store
200 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
202 if (maxSize <= 0) {
203 throw new IllegalArgumentException("maxSize <= 0");
222 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
238 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegProcessor.h 79 size_t findJpegSize(uint8_t* jpegBuffer, size_t maxSize);
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3DummyStream.cpp 31 /*maxSize*/0, DUMMY_FORMAT) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 246 private int makeChildMeasureSpec(int maxSize, int childDimen) {
252 size = maxSize;
256 size = maxSize;
260 size = Math.min(maxSize, childDimen);
  /frameworks/ex/variablespeed/jni/
decode_buffer.h 31 DecodeBuffer(size_t sizeOfOneBuffer, size_t maxSize);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 93 * @param maxSize The maximum size (either width or height)
97 final int maxSize) {
108 opts.inSampleSize = Math.max(bounds.x / maxSize, bounds.y / maxSize);
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.h 48 virtual Encode_Status getMaxOutSize(uint32_t *maxSize) {return ENCODE_SUCCESS;}
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.h 38 int loc_eng_nmea_put_checksum(char *pNmea, int maxSize);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.h 38 int loc_eng_nmea_put_checksum(char *pNmea, int maxSize);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
ctime 40 size_t strftime(char* restrict s, size_t maxsize, const char* restrict format,
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWidget.java 158 int[] maxSize = new int[2];
159 maxSize[0] = i.getWidth() - mOriginalImagePadding.left - mOriginalImagePadding.right;
160 maxSize[1] = i.getHeight() - mOriginalImagePadding.top;
161 return maxSize;

Completed in 1462 milliseconds

1 2 34 5 6 7 8 91011>>