HomeSort by relevance Sort by last modified time
    Searched defs:bitmap_info (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
cursor_unittest.cc 56 BITMAP bitmap_info; local
57 EXPECT_TRUE(GetObject(scoped_color, sizeof(bitmap_info), &bitmap_info));
59 int width = bitmap_info.bmWidth;
60 int height = bitmap_info.bmHeight;
cursor.cc 131 BITMAP bitmap_info; local
132 if (!GetObject(scoped_mask, sizeof(bitmap_info), &bitmap_info)) {
138 int width = bitmap_info.bmWidth;
139 int height = bitmap_info.bmHeight;
  /external/chromium_org/android_webview/native/
java_browser_view_renderer_helper.cc 151 AndroidBitmapInfo bitmap_info; local
152 if (AndroidBitmap_getInfo(env, jbitmap.obj(), &bitmap_info) < 0) {
166 SkImageInfo::MakeN32Premul(bitmap_info.width, bitmap_info.height);
168 bitmap.installPixels(info, pixels, bitmap_info.stride);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
carbonvideorenderer.cc 80 CGBitmapInfo bitmap_info = kCGBitmapByteOrderDefault; local
83 color_space_ref, bitmap_info, provider,
  /external/chromium_org/ui/views/corewm/
cursor_height_provider_win.cc 86 BITMAPINFO bitmap_info = {0}; local
87 bitmap_info.bmiHeader.biSize = sizeof(bitmap_info.bmiHeader);
88 if (GetDIBits(hdc, icon.hbmMask, 0, 0, NULL, &bitmap_info, DIB_RGB_COLORS) ==
96 (bitmap_info.bmiHeader.biWidth % kBitsPeruint32);
103 (bitmap_info.bmiHeader.biWidth + kBitsPeruint32 - 1) / kBitsPeruint32;
104 PixelData data(GetBitmapData(icon.hbmMask, bitmap_info, hdc));
110 int i = std::max(0, static_cast<int>(bitmap_info.bmiHeader.biHeight) -
112 for (; i < bitmap_info.bmiHeader.biHeight; ++i) {
118 return bitmap_info.bmiHeader.biHeight - i - icon.yHotspot
    [all...]
  /external/chromium_org/ui/gfx/
icon_util_unittest.cc 320 BITMAPINFO bitmap_info; local
321 ::ZeroMemory(&bitmap_info, sizeof(BITMAPINFO));
322 bitmap_info.bmiHeader.biSize = sizeof(BITMAPINFO);
329 &bitmap_info,
332 EXPECT_EQ(bitmap_info.bmiHeader.biWidth, kSmallIconWidth);
333 EXPECT_EQ(bitmap_info.bmiHeader.biHeight, kSmallIconHeight);
334 EXPECT_EQ(bitmap_info.bmiHeader.biPlanes, 1);
335 EXPECT_EQ(bitmap_info.bmiHeader.biBitCount, 32);
icon_util.cc 309 BITMAP bitmap_info = { 0 }; local
314 if (!::GetObject(icon_info.hbmMask, sizeof(bitmap_info), &bitmap_info))
317 gfx::Size icon_size(bitmap_info.bmWidth, bitmap_info.bmHeight);
  /external/jemalloc/include/jemalloc/internal/
arena.h 268 bitmap_info_t bitmap_info; member in struct:arena_bin_info_s
    [all...]

Completed in 267 milliseconds