Searched refs:sizes (Results 1 - 25 of 294) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLinkElementSizesAttributeTest.cpp20 Vector<IntSize> sizes; local
21 HTMLLinkElement::parseSizesAttribute(sizesAttribute, sizes);
22 ASSERT_EQ(1U, sizes.size());
23 EXPECT_EQ(32, sizes[0].width());
24 EXPECT_EQ(33, sizes[0].height());
28 sizes.clear();
29 HTMLLinkElement::parseSizesAttribute(sizesAttribute, sizes);
30 ASSERT_EQ(1U, sizes.size());
31 EXPECT_EQ(32, sizes[0].width());
32 EXPECT_EQ(33, sizes[
[all...]
/external/chromium_org/chrome/common/extensions/api/notifications/
H A Dnotification_style.cc15 NotificationBitmapSizes sizes; local
16 sizes.image_size =
19 sizes.icon_size = gfx::Size(message_center::kNotificationIconSize,
21 sizes.button_icon_size =
25 sizes.app_icon_mask_size = gfx::Size(message_center::kSmallImageSize,
27 return sizes;
/external/chromium_org/third_party/skia/tests/
H A DImageGeneratorTest.cpp13 SkISize sizes[3]; local
14 sizes[0] = SkISize::Make(200, 200);
15 sizes[1] = SkISize::Make(100, 100);
16 sizes[2] = SkISize::Make( 50, 50);
22 ig.getYUV8Planes(sizes, NULL, NULL, &colorSpace);
23 ig.getYUV8Planes(sizes, NULL, NULL, NULL);
24 ig.getYUV8Planes(sizes, planes, NULL, NULL);
25 ig.getYUV8Planes(sizes, NULL, rowBytes, NULL);
26 ig.getYUV8Planes(sizes, planes, rowBytes, NULL);
27 ig.getYUV8Planes(sizes, plane
[all...]
/external/chromium_org/chrome/renderer/
H A Dweb_apps_unittest.cc45 std::vector<gfx::Size> sizes; local
47 base::ASCIIToUTF16(data[i].input), &sizes, &is_any);
51 ASSERT_EQ(data[i].expected_size_count, sizes.size());
52 if (!sizes.empty()) {
53 ASSERT_EQ(data[i].width1, sizes[0].width());
54 ASSERT_EQ(data[i].height1, sizes[0].height());
56 if (sizes.size() > 1) {
57 ASSERT_EQ(data[i].width2, sizes[1].width());
58 ASSERT_EQ(data[i].height2, sizes[1].height());
H A Dweb_apps.h23 // on success, false on errors. On success either all the sizes specified in
24 // the attribute are added to sizes, or is_any is set to true.
27 bool ParseIconSizes(const base::string16& text, std::vector<gfx::Size>* sizes,
/external/chromium_org/v8/test/mjsunit/
H A Dlarge-object-literal.js28 // Test that we can create object literals of various sizes.
49 // The sizes to test.
50 var sizes = [0, 1, 2, 100, 200, 400, 1000]; variable
53 for (var i = 0; i < sizes.length; i++) {
54 testLiteral(sizes[i]);
H A Dobject-literal-gc.js59 // The sizes to test.
60 var sizes = [0, 1, 2, 100, 200, 400, 1000]; variable
63 for (var i = 0; i < sizes.length; i++) {
64 testLiteral(sizes[i]);
H A Dbig-array-literal.js86 // The sizes to test.
87 var sizes = [1, 2, 100, 200, 300]; variable
90 for (var i = 0; i < sizes.length; i++) {
91 testLiteral(sizes[i], false);
92 testLiteral(sizes[i], true);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1401.js31 var sizes = new Array();
34 sizes[i] = 0;
39 var t = (sizes[++bottom] = size);
/external/chromium_org/third_party/skia/src/core/
H A DSkImageGenerator.cpp60 bool SkImageGenerator::getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], argument
63 // In all cases, we need the sizes array
64 SkASSERT(sizes);
79 // If we do have planes information, make sure all sizes are non 0
82 ((sizes[0].fWidth >= 0) &&
83 (sizes[0].fHeight >= 0) &&
84 (sizes[1].fWidth >= 0) &&
85 (sizes[1].fHeight >= 0) &&
86 (sizes[2].fWidth >= 0) &&
87 (sizes[
96 onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3]) argument
100 onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], SkYUVColorSpace* colorSpace) argument
[all...]
/external/chromium_org/components/favicon/core/
H A Dfavicon_url.cc14 const std::vector<gfx::Size>& sizes)
15 : icon_url(url), icon_type(type), icon_sizes(sizes) {
12 FaviconURL(const GURL& url, favicon_base::IconType type, const std::vector<gfx::Size>& sizes) argument
H A Dfavicon_url.h21 const std::vector<gfx::Size>& sizes);
/external/chromium_org/content/public/common/
H A Dfavicon_url.cc15 const std::vector<gfx::Size>& sizes)
16 : icon_url(url), icon_type(type), icon_sizes(sizes) {}
13 FaviconURL(const GURL& url, IconType type, const std::vector<gfx::Size>& sizes) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
H A Dstacktrace.h52 // "result", and the corresponding stack frame sizes in "sizes".
53 // Returns the number of values recorded in "result"/"sizes".
60 // int sizes[10];
61 // int depth = GetStackFrames(result, sizes, 10, 1);
71 // And corresponding stack frame sizes will also be recorded:
72 // sizes[0] 16
73 // sizes[1] 16
74 // (Stack frame sizes of 16 above are just for illustration purposes.)
75 // Stack frame sizes o
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_with_context.cc51 int GetStackFramesWithContext(void** pcs, int* sizes, int max_depth, argument
53 return GetStackFrames(pcs, sizes, max_depth, skip_count + 1);
H A Dstacktrace_generic-inl.h57 // int* sizes: the size of each stack frame, as an array
59 // int max_depth: the size of the result (and sizes) array(s)
78 // No implementation for finding out the stack frame sizes yet.
79 memset(sizes, 0, sizeof(*sizes) * result_count);
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
H A Dstacktrace.h52 // "result", and the corresponding stack frame sizes in "sizes".
53 // Returns the number of values recorded in "result"/"sizes".
60 // int sizes[10];
61 // int depth = GetStackFrames(result, sizes, 10, 1);
71 // And corresponding stack frame sizes will also be recorded:
72 // sizes[0] 16
73 // sizes[1] 16
74 // (Stack frame sizes of 16 above are just for illustration purposes.)
75 // Stack frame sizes o
[all...]
/external/llvm/unittests/DebugInfo/
H A DDWARFFormValueTest.cpp21 ArrayRef<uint8_t> sizes = DWARFFormValue::getFixedFormSizes(4, 2); local
22 EXPECT_EQ(sizes[DW_FORM_addr], sizes[DW_FORM_ref_addr]);
23 sizes = DWARFFormValue::getFixedFormSizes(8, 2);
24 EXPECT_EQ(sizes[DW_FORM_addr], sizes[DW_FORM_ref_addr]);
25 sizes = DWARFFormValue::getFixedFormSizes(8, 3);
26 EXPECT_EQ(4, sizes[DW_FORM_ref_addr]);
27 // Check that we don't have fixed form sizes for weird address sizes
[all...]
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dpolicies.py75 A dict mapping components and their corresponding sizes.
104 sizes = dict((c, 0) for c in policy.components)
106 PolicyCommands._accumulate_malloc(dump, policy, bucket_set, sizes)
108 dump, all_pfn_dict, policy, bucket_set, sizes)
118 sizes['mmap-no-log'] = (
120 sizes['mmap-total-log'])
121 sizes['mmap-total-record'] = dump.global_stat('profiled-mmap_committed')
122 sizes['mmap-total-record-vm'] = dump.global_stat('profiled-mmap_virtual')
124 sizes['tc-no-log'] = (
126 sizes['t
[all...]
H A Dexpand.py61 sizes = {}
64 dump, policy, bucket_set, component_name, depth, sizes)
67 sizes.iteritems(), key=(lambda x: x[1]), reverse=True)
76 def _add_size(precedence, bucket, depth, committed, sizes):
84 if not stacktrace_sequence in sizes:
85 sizes[stacktrace_sequence] = 0
86 sizes[stacktrace_sequence] += committed
89 def _accumulate(dump, policy, bucket_set, component_name, depth, sizes):
109 ExpandCommand._add_size(precedence, bucket, depth, committed, sizes)
117 region[1]['committed'], sizes)
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_generic-inl.h57 // int* sizes: the size of each stack frame, as an array
59 // int max_depth: the size of the result (and sizes) array(s)
78 // No implementation for finding out the stack frame sizes yet.
79 memset(sizes, 0, sizeof(*sizes) * result_count);
/external/chromium_org/v8/src/arm64/
H A Dcpu-arm64.cc58 CacheLineSizes sizes;
59 uintptr_t dsize = sizes.dcache_line_size();
60 uintptr_t isize = sizes.icache_line_size();
61 // Cache line sizes are always a power of 2.
/external/openssl/crypto/bn/
H A Dbnspeed.c165 static int sizes[NUM_SIZES]={128,256,512,1024,2048}; variable
166 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
193 BN_rand(a,sizes[i],1,0);
196 BN_rand(b,sizes[j],1,0);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
209 BN_rand(a,sizes[i],1,0);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
221 BN_rand(a,sizes[
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIconURL.h59 IconURL(const KURL& url, const Vector<IntSize>& sizes, const String& mimeType, IconType type) argument
61 , m_sizes(sizes)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_bitstream.h54 const unsigned *sizes);

Completed in 812 milliseconds

1234567891011>>