HomeSort by relevance Sort by last modified time
    Searched defs:cn (Results 176 - 200 of 363) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragController.java 342 ComponentName cn = dragInfo.getTargetComponent(); local
343 if (cn != null && matcher.matches(dragInfo, cn)) {
  /packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetails.java 297 ComponentName cn = dpm.getProfileOwnerAsUser(userInfo.id); local
298 if (cn != null && cn.getPackageName().equals(packageName)) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
  /external/opencv/cv/src/
cvcalibinit.cpp 1993 int type, cn, line_type; local
    [all...]
cvfundam.cpp 1038 int i, dims, count, depth, cn, abc_dims, abc_count, abc_depth, abc_cn; local
    [all...]
cvimgwarp.cpp 210 int cn, int xmax, \
220 dsize.width *= cn; \
221 xmax *= cn; \
255 _buf[dx] = mul_one_macro(t) + fx*(_src[sx+cn] - t); \
289 arrtype* dst, int dststep, CvSize dsize, int cn, \
300 dsize.width *= cn; \
326 int cn, const CvDecimateAlpha* xofs, \
334 dsize.width *= cn; \
338 if( cn == 1 ) \
345 else if( cn == 2 )
639 int type, depth, cn; local
1085 int k, type, depth, cn, *ofs = 0; local
1361 int type, depth, cn; local
1803 int cn = CV_MAT_CN(src->type); local
1989 int type, depth, cn; local
    [all...]
  /external/opencv/cxcore/src/
cxmatmul.cpp 1611 int i, j, type, cn, dst_cn; local
    [all...]
  /external/opencv3/modules/calib3d/src/
calibinit.cpp 1807 int type, cn, line_type; local
    [all...]
  /external/opencv3/modules/core/src/
array.cpp 1463 int cn = CV_MAT_CN( type ); local
1536 int cn = CV_MAT_CN( flags ); local
2542 int total_width, new_rows, cn; local
    [all...]
matrix.cpp 958 int cn = channels(); local
961 if( dims > 2 && new_rows == 0 && new_cn != 0 && size[dims-1]*cn % new_cn == 0 )
965 hdr.size[dims-1] = hdr.size[dims-1]*cn / new_cn;
972 new_cn = cn;
974 int total_width = cols * cn;
1038 int i, depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
1039 CV_Assert(cn <= 4);
1045 for(i = 0; i < cn; i++)
1048 buf[i] = buf[i-cn];
1054 for(i = 0; i < cn; i++
    [all...]
  /external/opencv3/modules/core/test/
test_mat.cpp 1184 int cn = 0; local
    [all...]
  /external/opencv3/modules/imgproc/src/
drawing.cpp 2539 int cn = CV_MAT_CN( type ); variable
    [all...]
imgwarp.cpp 1708 int dy, cn = src.channels(); local
1779 int cn = src.channels(); local
1860 int cn, step; member in class:cv::ResizeAreaFastVec_SIMD_8u
1910 int cn, step; member in class:cv::ResizeAreaFastVec_SIMD_16u
1960 int cn, step; member in class:cv::ResizeAreaFastVec_SIMD_16s
2008 int cn; member in struct:cv::ResizeAreaFastVec_SIMD_32f
2109 int cn; member in class:cv::ResizeAreaFastVec_SIMD_8u
2197 int cn; member in class:cv::ResizeAreaFastVec_SIMD_16u
2283 int cn; member in class:cv::ResizeAreaFastVec_SIMD_16s
2338 int cn; member in struct:cv::ResizeAreaFastVec_SIMD_32f
2401 int cn; member in struct:cv::ResizeAreaFastVec
2422 int cn = src.channels(); local
2532 int cn = dst->channels(); local
    [all...]
morph.cpp 102 int operator()(const uchar* src, uchar* dst, int width, int cn) const
107 cn *= ESZ;
108 int i, k, _ksize = ksize*cn;
109 width = (width & -4)*cn;
115 for( k = cn; k < _ksize; k += cn )
126 for( k = cn; k < _ksize; k += cn )
144 int operator()(const uchar* src, uchar* dst, int width, int cn) const
149 int i, k, _ksize = ksize*cn;
1268 int type = src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
1346 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), esz = CV_ELEM_SIZE(type); local
1504 cn = CV_MAT_CN(type), esz = CV_ELEM_SIZE(type); local
    [all...]
  /external/opencv3/modules/imgproc/test/
test_color.cpp 123 int depth, cn; local
139 cn = (cvtest::randInt(rng) & 1) + 3;
142 types[INPUT][0] = CV_MAKETYPE(depth, cn);
145 types[OUTPUT][1] = types[REF_OUTPUT][1] = CV_MAKETYPE(depth, cn);
147 inplace = cn == 3 && cvtest::randInt(rng) % 2 != 0;
210 int cn = src.channels(), dst_cn = dst.channels(); local
218 assert( (cn == 3 || cn == 4) && (dst_cn == 3 || dst_cn == 1) );
231 src_buf[j*3] = src_row[j*cn + blue_idx]*c8u;
232 src_buf[j*3+1] = src_row[j*cn + 1]*c8u
305 int src_cn = dst.channels(), cn = dst2.channels(); local
441 int cn = CV_MAT_CN(types[INPUT][0]); local
1290 int cn = CV_MAT_CN(types[INPUT][0]); local
1341 int depth = src.depth(), cn = src.channels(); local
1427 int depth = src.depth(), cn = dst.channels(); local
1898 int cn = reference.channels(); local
2166 int cn = reference.channels(); local
    [all...]
test_imgwarp.cpp 103 int cn = cvtest::randInt(rng) % 3 + 1; local
106 cn += cn == 2;
108 types[INPUT][0] = types[INPUT_OUTPUT][0] = types[REF_INPUT_OUTPUT][0] = CV_MAKETYPE(depth, cn);
127 int type = img.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
130 vector<float> buffer(img.cols*cn);
142 switch( cn )
179 for( j = 0; j < cols*cn; j++ )
183 for( j = 0; j < cols*cn; j++ )
187 for( j = 0; j < cols*cn; j++
348 int depth = src.depth(), cn = src.channels(); local
1108 int cn = dst.channels(); local
1276 int cn = cvtest::randInt(rng) % 2 ? 3 : 1; local
1571 int cn = src.channels(); local
1607 int type = types[i], depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
1642 int cn = rng.uniform(1, 10); local
    [all...]
  /external/opencv3/modules/objdetect/test/
test_cascadeandhog.cpp 1199 int cn = img.channels(); local
    [all...]
  /external/opencv3/modules/videoio/src/
cap_ffmpeg_impl.hpp 214 int cn; member in struct:Image_FFMPEG
233 bool retrieveFrame(int, unsigned char** data, int* step, int* width, int* height, int* cn);
642 frame.cn = 3;
733 bool CvCapture_FFMPEG::retrieveFrame(int, unsigned char** data, int* step, int* width, int* height, int* cn)
778 *cn = frame.cn;
1002 bool writeFrame( const unsigned char* data, int step, int width, int height, int cn, int origin );
    [all...]
  /external/selinux/checkpolicy/
policy_define.c 3811 cond_node_t cn, *cn_old; local
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine.cc 674 bool cn = options.aecm_generate_comfort_noise.value_or(false); local
675 if (voep->SetAecmMode(aecm_mode, cn) != 0) {
676 LOG_RTCERR2(SetAecmMode, aecm_mode, cn);
    [all...]
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 1223 ComponentName cn = ComponentName.unflattenFromString(pkg); local
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 1657 final ComponentName cn = ComponentName.unflattenFromString(flat); local
1665 final ComponentName cn = ComponentName.unflattenFromString(flat); local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java 295 ComponentName cn = new ComponentName("com.android.test" + packageIndex, local
303 rti.baseIntent.setComponent(cn);
670 * @param cn The component name of the activity.
673 public ActivityInfo getActivityInfo(ComponentName cn, int userId) {
678 return mIpm.getActivityInfo(cn, PackageManager.GET_META_DATA, userId);
688 * @param cn The component name of the activity.
690 public ActivityInfo getActivityInfo(ComponentName cn) {
695 return mPm.getActivityInfo(cn, PackageManager.GET_META_DATA);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java 1024 ComponentName cn = t.getComponent(); local
    [all...]

Completed in 1621 milliseconds

1 2 3 4 5 6 78 91011>>