/external/clang/test/SemaCXX/ |
access-control-check.cpp | 4 int iM;
|
/external/clang/test/CodeGenCXX/ |
nested-base-member-access.cpp | 6 M(int i){ iM = i; } 7 int iM; 8 void MPR() { printf("iM = %d\n", iM); } 41 printf("iM = %d\n", iM);
|
destructor-calls.cpp | 14 M() : iM(++val) { printf("M()\n"); } 15 int iM; 16 ~M() { printf("~M(%d)\n", iM); --val; }
|
constructor-init.cpp | 9 M(int i) { iM = i; printf("M(%d)\n", i); } 10 int iM; 11 void MPR() {printf("iM = %d\n", iM); }; 43 printf("iM = %d\n", iM); 48 printf("iM = %d\n", this->iM);
|
copy-constructor-synthesis.cpp | 8 int iM; 9 M() : iM(init++) {} 30 printf("iM = %d iN = %d, m1.iM = %d\n", iM, iN, m1.iM); 31 printf("im = %d p0.iP = %d, p1.iP = %d\n", iP, p0.iP, p1.iP);
|
/external/opencv3/modules/cudawarping/test/ |
test_warp_affine.cpp | 173 cv::Mat iM; 174 cv::invertAffineTransform(M, iM); 175 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
|
test_warp_perspective.cpp | 176 cv::Mat iM; 177 cv::invert(M, iM); 178 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfHuf.cpp | 259 // - codes outside the range [im-iM] have a null length (unused values); 274 int* im, // o: min frq index 275 int* iM) // o: max frq index 288 // frq[im] != 0, and frq[i] == 0 for all i < im 289 // frq[iM] != 0, and frq[i] == 0 for all i > iM 301 *im = 0; 303 while (!frq[*im]) 1015 int im, iM; local 1051 int im = readUInt (compressed); local [all...] |
/external/libvorbis/lib/ |
psy.c | [all...] |
/external/opencv3/modules/java/src/ |
imgproc.cpp | 882 // void invertAffineTransform(Mat M, Mat& iM) 894 Mat& iM = *((Mat*)iM_nativeObj); 895 cv::invertAffineTransform( M, iM ); [all...] |
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |