HomeSort by relevance Sort by last modified time
    Searched defs:im (Results 1 - 25 of 33) sorted by null

1 2

  /bootable/recovery/tools/ota/
convert-to-bmp.py 16 im = Image.open(infile) variable
17 if im.mode == 'RGB':
18 im.save(outfile)
19 elif im.mode == 'RGBA':
50 im.size[0] * im.size[1] * 4),
56 im.size[0],
57 im.size[1],
70 data = im.tostring()
71 for j in range(im.size[1]-1, -1, -1): # rows bottom-to-to
    [all...]
  /external/chromium/chrome/browser/ui/webui/
fileicon_source.cc 43 IconManager* im = g_browser_process->icon_manager(); local
44 gfx::Image* icon = im->LookupIcon(escaped_filepath, IconLoader::NORMAL);
53 IconManager::Handle h = im->LoadIcon(escaped_filepath,
59 cancelable_consumer_.SetClientData(im, h, request_id);
70 IconManager* im = g_browser_process->icon_manager(); local
71 int request_id = cancelable_consumer_.GetClientData(im, handle);
downloads_dom_handler.cc 160 IconManager* im = g_browser_process->icon_manager(); local
161 gfx::Image* icon = im->LookupIcon(file->GetUserVerifiedFilePath(),
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities.cpp 23 float** db_SetupImageReferences_f(float *im,int w,int h)
27 assert(im);
31 img[i]=im+w*i;
36 unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h)
41 assert(im);
46 img[i]=im+w*i;
52 float **img,*im; local
54 im=new float [w*h+over_allocation];
55 img=db_SetupImageReferences_f(im,w,h);
62 unsigned char **img,*im; local
    [all...]
  /external/clang/test/CodeGenCXX/
ptr-to-member-function.cpp 52 B1(int i) : pmf(&A::foo), im(i) {
53 ((A*)this->*pmf)(&im);
56 int im; member in struct:B1