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

1 2 3

  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 130 final ImageView im = new ImageView(this); local
131 im.setTranslationZ(20);
132 im.setScaleX(0);
133 im.setScaleY(0);
136 im.setImageDrawable(platlogo);
137 im.setBackground(makeRipple());
138 im.setClickable(true);
143 im.getOverlay().add(highlight);
144 im.setOnClickListener(new View.OnClickListener() {
148 im.animate(
    [all...]
  /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...]
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCase.java 125 IInputMethodManager im = IInputMethodManager.Stub.asInterface(ServiceManager local
127 List<InputMethodInfo> infos = im.getInputMethodList();
138 im.setInputMethod(null, id);
  /development/perftests/panorama/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...]
  /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...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
ImDataItem.java 23 import android.provider.ContactsContract.CommonDataKinds.Im;
27 * Represents an IM data item, wrapping the columns in
28 * {@link ContactsContract.CommonDataKinds.Im}.
45 final ImDataItem im = new ImDataItem(new ContentValues(item.getContentValues()), true); local
46 im.setMimeType(Im.CONTENT_ITEM_TYPE);
47 return im;
54 return getContentValues().getAsString(Im.DATA);
59 return getContentValues().getAsString(Im.LABEL);
63 * Values are one of Im.PROTOCOL
    [all...]
  /packages/apps/LegacyCamera/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/chromium_org/chrome/browser/ui/webui/
fileicon_source.cc 99 IconManager* im = g_browser_process->icon_manager(); local
100 gfx::Image* icon = im->LookupIconFromFilepath(path, icon_size);
117 im->LoadIcon(path,
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_dft.c 68 double im = sin(phase); local
70 im = -im;
75 im /= nfft;
78 ansr += in[k].r * re - in[k].i * im;
79 ansi += in[k].r * im + in[k].i * re;
  /external/clang/test/CodeGenCXX/
ptr-to-member-function.cpp 51 B1(int i) : pmf(&A::foo), im(i) {
52 ((A*)this->*pmf)(&im);
55 int im; member in struct:B1
  /external/libopus/celt/tests/
test_unit_dft.c 68 double im = sin(phase); local
70 im = -im;
75 im /= nfft;
78 ansr += in[k].r * re - in[k].i * im;
79 ansi += in[k].r * im + in[k].i * re;
  /frameworks/base/core/java/android/os/
PatternMatcher.java 124 int ip = 0, im = 0; local
126 while ((ip<NP) && (im<NM)) {
152 if (match.charAt(im) == nextChar) {
155 im++;
156 } while (im < NM);
157 if (im == NM) {
164 im++;
168 if (match.charAt(im) != c) {
171 im++;
172 } while (im < NM)
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Manifest.java 191 ManifestReader im = new ManifestReader(buf, mainAttributes); local
192 mainEnd = im.getEndOfMainSection();
193 im.readEntries(entries, chunks);
JarVerifier.java 310 ManifestReader im = new ManifestReader(sfBytes, attributes); local
311 im.readEntries(entries, null);
  /external/chromium_org/third_party/opus/src/celt/
mdct.c 173 kiss_fft_scalar re, im, yr, yi; local
175 im = yp[1];
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
264 kiss_fft_scalar re, im, yr, yi; local
267 im = yp0[1];
271 yr = S_MUL(re,t0) - S_MUL(im,t1);
272 yi = S_MUL(im,t0) + S_MUL(re,t1);
274 im = yp1[1];
282 yr = S_MUL(re,t0) - S_MUL(im,t1)
    [all...]
  /external/iproute2/lib/
ll_map.c 52 struct ll_cache *im, **imp; local
67 for (imp = &idx_head[h]; (im=*imp)!=NULL; imp = &im->idx_next)
68 if (im->index == ifi->ifi_index)
71 if (im == NULL) {
72 im = malloc(sizeof(*im));
73 if (im == NULL)
75 im->idx_next = *imp;
76 im->index = ifi->ifi_index
98 const struct ll_cache *im; local
121 const struct ll_cache *im; local
133 const struct ll_cache *im; local
147 const struct ll_cache *im; local
169 struct ll_cache *im; local
    [all...]
  /external/libopus/celt/
mdct.c 173 kiss_fft_scalar re, im, yr, yi; local
175 im = yp[1];
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
264 kiss_fft_scalar re, im, yr, yi; local
267 im = yp0[1];
271 yr = S_MUL(re,t0) - S_MUL(im,t1);
272 yi = S_MUL(im,t0) + S_MUL(re,t1);
274 im = yp1[1];
282 yr = S_MUL(re,t0) - S_MUL(im,t1)
    [all...]
  /external/opencv/cxcore/src/
_cxcore.h 102 float re, im; member in struct:CvComplex32f
105 CvComplex32f( float _re, float _im=0 ) : re(_re), im(_im) {}
107 //CvComplex32f( const CvComplex32f& v ) : re(v.re), im(v.im) {}
108 //CvComplex32f& operator = (const CvComplex32f& v ) { re = v.re; im = v.im; return *this; }
114 double re, im; member in struct:CvComplex64f
117 CvComplex64f( double _re, double _im=0 ) : re(_re), im(_im) {}
119 //CvComplex64f( const CvComplex64f& v ) : re(v.re), im(v.im) {}
    [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Segment.h 63 CJBig2_Image *im; member in union:CJBig2_Segment::__anon12301
  /external/stlport/src/
complex.cpp 169 _Tp im = z._M_im; local
170 _Tp mag = ::hypot(re, im);
177 result._M_im = im/result._M_re/2.f;
180 if (im < 0.f)
182 result._M_re = im/result._M_im/2.f;
  /ndk/sources/cxx-stl/stlport/src/
complex.cpp 169 _Tp im = z._M_im; local
170 _Tp mag = ::hypot(re, im);
177 result._M_im = im/result._M_re/2.f;
180 if (im < 0.f)
182 result._M_re = im/result._M_im/2.f;
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
ContactsUtilsTests.java 23 import android.provider.ContactsContract.CommonDataKinds.Im;
80 // Custom IM types have encoded authority. We send the imto Intent here, because
83 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
84 values.put(Im.TYPE, Im.TYPE_HOME);
85 values.put(Im.PROTOCOL, Im.PROTOCOL_CUSTOM);
86 values.put(Im.CUSTOM_PROTOCOL, TEST_PROTOCOL);
87 values.put(Im.DATA, TEST_ADDRESS)
88 final ImDataItem im = (ImDataItem) DataItem.createFrom(values); local
110 final ImDataItem im = (ImDataItem) DataItem.createFrom(values); local
129 final ImDataItem im = (ImDataItem) DataItem.createFrom(values); local
151 final ImDataItem im = (ImDataItem) DataItem.createFrom(values); local
175 final ImDataItem im = ImDataItem.createFromEmail( local
    [all...]
  /external/chromium_org/third_party/opus/src/src/
opus_compare.c 126 float im; local
129 re=im=0;
132 im-=s[ti]*x[ci*_window_sz+xk];
137 im*=_downsample;
138 _ps[(xi*ps_sz+xj)*_nchannels+ci]=re*re+im*im+100000;
347 float im; local
349 im=re-log(re)-1;
352 if(xj>=79&&xj<=81)im*=0.1F;
353 if(xj==80)im*=0.1F
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
RealSchur.h 240 void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector);
241 void performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace);
314 Index im; local
315 initFrancisQRStep(il, iu, shiftInfo, im, firstHouseholderVector);
316 performFrancisQRStep(il, im, iu, computeU, firstHouseholderVector, workspace);
439 /** \internal Compute index im at which Francis QR step starts and the first Householder vector. */
441 inline void RealSchur<MatrixType>::initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector)
446 for (im = iu-2; im >= il; --im)
    [all...]
  /external/libopus/src/
opus_compare.c 126 float im; local
129 re=im=0;
132 im-=s[ti]*x[ci*_window_sz+xk];
137 im*=_downsample;
138 _ps[(xi*ps_sz+xj)*_nchannels+ci]=re*re+im*im+100000;
347 float im; local
349 im=re-log(re)-1;
352 if(xj>=79&&xj<=81)im*=0.1F;
353 if(xj==80)im*=0.1F
    [all...]

Completed in 954 milliseconds

1 2 3