HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 151 - 175 of 577) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Stream.cpp 47 uint32_t width, uint32_t height, size_t maxSize, int format) :
51 mMaxSize(maxSize),
63 if (format == HAL_PIXEL_FORMAT_BLOB && maxSize == 0) {
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java 317 final int maxSize = account.settings.getMaxAttachmentSize();
320 if (attachment.size == -1 || attachment.size > maxSize) {
324 + attachment.size) > maxSize) {
  /external/chromium/chrome/browser/extensions/
browser_action_apitest.cc 166 gfx::Size maxSize = BrowserActionTestUtil::GetMaxPopupSize();
169 ASSERT_GT(minSize.height() + growFactor * 2, maxSize.height());
170 ASSERT_GT(minSize.width() + growFactor * 2, maxSize.width());
184 EXPECT_EQ(maxSize, actions_bar.GetPopupBounds().size());
  /external/chromium_org/chrome/browser/devtools/
devtools_file_system_indexer.cc 245 size_t maxSize = 0;
248 if (index_[i].size() > maxSize)
249 maxSize = index_[i].size();
254 LOG(ERROR) << " - max file count per trigram: " << maxSize;
  /external/chromium_org/ipc/
file_descriptor_set_posix_unittest.cc 67 TEST(FileDescriptorSet, MaxSize) {
  /external/chromium_org/third_party/WebKit/Source/core/page/
Performance.idl 46 void webkitSetResourceTimingBufferSize(unsigned long maxSize);
  /external/chromium_org/third_party/skia/src/xml/
SkJS.cpp 67 size_t strftime(char *strDest, size_t maxsize, const char *format,
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
parser.c 152 yylval.extop.maxsize);
re.h 11 int maxsize; member in struct:extop
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 68 MaxSize = MatrixType::MaxRowsAtCompileTime,
69 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : MaxSize - 1
268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
  /external/llvm/utils/TableGen/
SetTheory.cpp 153 unsigned MaxSize = 0;
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
159 for (unsigned n = 0; n != MaxSize; ++n)
  /external/skia/src/xml/
SkJS.cpp 67 size_t strftime(char *strDest, size_t maxsize, const char *format,
  /frameworks/base/libs/hwui/
LayerCache.h 78 void setMaxSize(uint32_t maxSize);
RenderBufferCache.h 68 void setMaxSize(uint32_t maxSize);
TextDropShadowCache.h 153 void setMaxSize(uint32_t maxSize);
TextureCache.h 97 void setMaxSize(uint32_t maxSize);
GradientCache.cpp 107 void GradientCache::setMaxSize(uint32_t maxSize) {
108 mMaxSize = maxSize;
TextureCache.cpp 91 void TextureCache::setMaxSize(uint32_t maxSize) {
92 mMaxSize = maxSize;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_scanstring.py 105 self.json.decoder.scanstring(b"xxx", sys.maxsize+1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_format.py 6 maxsize = test_support.MAX_Py_ssize_t variable
293 if maxsize == 2**31-1:
296 "%*d"%(maxsize, -127)
300 raise TestFailed, '"%*d"%(maxsize, -127) should fail'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_scanstring.py 105 self.json.decoder.scanstring(b"xxx", sys.maxsize+1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_format.py 6 maxsize = test_support.MAX_Py_ssize_t variable
293 if maxsize == 2**31-1:
296 "%*d"%(maxsize, -127)
300 raise TestFailed, '"%*d"%(maxsize, -127) should fail'
  /bionic/libc/bionic/
wchar.cpp 227 size_t wcsftime(wchar_t* wcs, size_t maxsize, const wchar_t* format, const struct tm* timptr) {
228 return strftime(reinterpret_cast<char*>(wcs), maxsize, reinterpret_cast<const char*>(format), timptr);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 304 int maxSize = mSettings.getDefaultFontSize();
306 assertTrue(maxSize > defaultSize);
311 assertTrue(minSize < maxSize);
322 int maxSize = mSettings.getDefaultFixedFontSize();
324 assertTrue(maxSize > defaultSize);
329 assertTrue(minSize < maxSize);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 644 int[] maxSize = new int[1];
646 glGetIntegerv(GL_MAX_TEXTURE_SIZE, maxSize, 0);
651 if(frame.width() > maxSize[0] || frame.height() > maxSize[0]) {
656 maxSize[0] + "x" + maxSize[0]);

Completed in 1412 milliseconds

1 2 3 4 5 67 8 91011>>