| /external/chromium_org/cc/test/ | 
| skia_common.h | 26 void CreateBitmap(const gfx::Size& size, const char* uri, SkBitmap* bitmap); 
 | 
| skia_common.cc | 29 void CreateBitmap(const gfx::Size& size, const char* uri, SkBitmap* bitmap) { 
 | 
| /external/chromium_org/ui/gfx/image/ | 
| image_unittest_util.cc | 55 const SkBitmap CreateBitmap(int width, int height) { 63   return gfx::ImageSkia::CreateFrom1xBitmap(CreateBitmap(width, height));
 67   SkBitmap bitmap = CreateBitmap(edge_size, edge_size);
 78   return gfx::Image::CreateFrom1xBitmap(CreateBitmap(width, height));
 179   const SkBitmap bitmap(CreateBitmap(25, 25));
 
 | 
| image_unittest_util.h | 28 const SkBitmap CreateBitmap(int width, int height); 
 | 
| image_unittest.cc | 173   image_skia.AddRepresentation(gfx::ImageSkiaRep(gt::CreateBitmap( 217   SkBitmap bitmap_1x = gt::CreateBitmap(kSize1x, kSize1x);
 221   image_skia.AddRepresentation(gfx::ImageSkiaRep(gt::CreateBitmap(
 313       gt::CreateBitmap(25, 25));
 629       gt::CreateBitmap(kWidth1x, kHeight1x),
 632       gt::CreateBitmap(kWidth2x, kHeight2x),
 655       gt::CreateBitmap(kWidth2x, kHeight2x), 2.0f));
 670     SkBitmap bitmap(gt::CreateBitmap(10, 10));
 
 | 
| /external/chromium_org/skia/ext/ | 
| pixel_ref_utils_unittest.cc | 25 void CreateBitmap(gfx::Size size, const char* uri, SkBitmap* bitmap); 30     CreateBitmap(gfx::Size(50, 50), "discardable", &bitmap_);
 34     CreateBitmap(gfx::Size(50, 50), "discardable", &bitmap_);
 64 void CreateBitmap(gfx::Size size, const char* uri, SkBitmap* bitmap) {
 383   CreateBitmap(gfx::Size(50, 50), "discardable", &first);
 385   CreateBitmap(gfx::Size(50, 50), "discardable", &second);
 387   CreateBitmap(gfx::Size(50, 50), "discardable", &third);
 389   CreateBitmap(gfx::Size(50, 1), "discardable", &fourth);
 391   CreateBitmap(gfx::Size(10, 10), "discardable", &fifth);
 444   CreateBitmap(gfx::Size(50, 50), "discardable", &first)
 [all...]
 | 
| /external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/ | 
| ViESurfaceRenderer.java | 107     public Bitmap CreateBitmap(int width, int height) { 117         bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
 128             bitmap = CreateBitmap(width, height);
 
 | 
| /external/chromium_org/cc/resources/ | 
| picture_pile_impl_unittest.cc | 219   CreateBitmap(gfx::Size(128, 128), "notdiscardable", &non_discardable_bitmap); 289   CreateBitmap(gfx::Size(32, 32), "discardable", &discardable_bitmap[0][0]);
 290   CreateBitmap(gfx::Size(32, 32), "discardable", &discardable_bitmap[1][0]);
 291   CreateBitmap(gfx::Size(32, 32), "discardable", &discardable_bitmap[1][1]);
 399   CreateBitmap(gfx::Size(32, 32), "discardable", &discardable_bitmap[0][0]);
 400   CreateBitmap(gfx::Size(32, 32), "discardable", &discardable_bitmap[0][1]);
 401   CreateBitmap(gfx::Size(32, 32), "discardable", &discardable_bitmap[1][1]);
 530   CreateBitmap(gfx::Size(512, 512), "notdiscardable", &non_discardable_bitmap);
 533   CreateBitmap(gfx::Size(128, 128), "discardable", &discardable_bitmap[0][0]);
 534   CreateBitmap(gfx::Size(128, 128), "discardable", &discardable_bitmap[0][1])
 [all...]
 | 
| picture_unittest.cc | 133         CreateBitmap( 233         CreateBitmap(
 356         CreateBitmap(
 
 | 
| resource_provider.h | 133   ResourceId CreateBitmap(const gfx::Size& size, GLint wrap_mode); 
 | 
| resource_provider.cc | 451       return CreateBitmap(size, wrap_mode); 477       return CreateBitmap(size, wrap_mode);
 512 ResourceProvider::ResourceId ResourceProvider::CreateBitmap(
 [all...]
 | 
| /external/chromium_org/chrome/browser/history/ | 
| history_backend_unittest.cc | 349   SkBitmap CreateBitmap(SkColor color, int edge_size) { [all...]
 | 
| top_sites_impl_unittest.cc | 208   gfx::Image CreateBitmap(SkColor color) { 580   gfx::Image thumbnail(CreateBitmap(SK_ColorWHITE));
 615   gfx::Image thumbnail(CreateBitmap(SK_ColorRED));
 653   gfx::Image thumbnail(CreateBitmap(SK_ColorWHITE));
 718   gfx::Image tmp_bitmap(CreateBitmap(SK_ColorBLUE));
 784   gfx::Image red_thumbnail(CreateBitmap(SK_ColorRED));
 839   gfx::Image asdf_thumbnail(CreateBitmap(SK_ColorRED));
 875   gfx::Image google_thumbnail(CreateBitmap(SK_ColorBLUE));
 898   gfx::Image weewar_bitmap(CreateBitmap(SK_ColorYELLOW));
 [all...]
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/ | 
| CreateBitmap.java | 26 public class CreateBitmap extends GraphicsActivity { 77             mBitmaps[0] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
 79             mBitmaps[1] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
 81             mBitmaps[2] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
 85             mBitmaps[3] = Bitmap.createBitmap(WIDTH, HEIGHT,
 87             mBitmaps[4] = Bitmap.createBitmap(WIDTH, HEIGHT,
 89             mBitmaps[5] = Bitmap.createBitmap(WIDTH, HEIGHT,
 
 | 
| /external/chromium_org/ui/message_center/views/ | 
| notification_view_unittest.cc | 52     return gfx::Image::CreateFrom1xBitmap(CreateBitmap(width, height)); 55   const SkBitmap CreateBitmap(int width, int height) {
 
 | 
| /external/chromium_org/chrome/browser/ui/toolbar/ | 
| back_forward_menu_model_unittest.cc | 37 SkBitmap CreateBitmap(SkColor color) { 512   SkBitmap new_icon_bitmap(CreateBitmap(SK_ColorRED));
 
 | 
| /external/chromium_org/ui/gfx/ | 
| icon_util.cc | 219   HBITMAP mono_bitmap = ::CreateBitmap(bitmap.width(), bitmap.height(), 1, 1, 356       CreateBitmap(icon_size.width(),
 
 | 
| /external/chromium_org/pdf/pdfium/ | 
| pdfium_engine.h | 332   FPDF_BITMAP CreateBitmap(const pp::Rect& rect, 
 | 
| pdfium_engine.cc | [all...] | 
| /external/chromium_org/chrome/browser/history/android/ | 
| android_provider_backend_unittest.cc | 59 SkBitmap CreateBitmap() { 264   std::vector<SkBitmap> bitmaps(1u, CreateBitmap());
 402   std::vector<SkBitmap> bitmaps(1u, CreateBitmap());
 [all...]
 | 
| /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/ | 
| wmesa.c | 501       bmp=CreateBitmap(n, 1,  1, 32, bgra); [all...]
 | 
| /external/mesa3d/src/mesa/drivers/windows/gdi/ | 
| wmesa.c | 501       bmp=CreateBitmap(n, 1,  1, 32, bgra); [all...]
 | 
| /external/chromium_org/ui/native_theme/ | 
| native_theme_win.cc | [all...] | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar |  |