Searched defs:sort_key (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dmanifest_data_source.py18 def sort_key(item): function in function:_ListifyAndSortDocs
58 return sorted(features.values(), key=sort_key)
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_country.cc969 std::string sort_key = GetSortKey(*collator, local
974 localized_names.insert(std::make_pair(sort_key, country_code));
992 std::string sort_key = GetSortKey(*collator, local
1000 localized_names.find(sort_key);
/external/opencv/cvaux/src/
H A Dcvbgfg_gaussmix.cpp73 static void icvInsertionSortGaussians( CvGaussBGPoint* g_point, double* sort_key, CvGaussBGStatModelParams *bg_model_params );
110 static void icvGetSortKey( const int nChannels, double* sort_key, const CvGaussBGPoint* g_point,
284 double sort_key[CV_BGFG_MOG_MAX_NGAUSSIANS]; local
310 icvGetSortKey( nChannels, sort_key, g_point, &bg_model_params );
311 icvInsertionSortGaussians( g_point, sort_key, (CvGaussBGStatModelParams *)&bg_model_params );
355 static void icvInsertionSortGaussians( CvGaussBGPoint* g_point, double* sort_key, CvGaussBGStatModelParams *bg_model_params ) argument
360 double index = sort_key[i];
361 for( j = i; j > 0 && sort_key[j-1] < index; j-- ) //sort decending order
363 double temp_sort_key = sort_key[j];
364 sort_key[
553 icvGetSortKey( const int nChannels, double* sort_key, const CvGaussBGPoint* g_point, const CvGaussBGStatModelParams *bg_model_params ) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dsom.h111 unsigned int sort_key :8; /* for linker */ member in struct:space_dictionary_record
134 unsigned int sort_key :8; member in struct:subspace_dictionary_record
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-lock.c236 static const char *sort_key = "acquired"; variable
261 if (!strcmp(keys[i].name, sort_key)) {
267 pr_err("Unknown compare key: %s\n", sort_key);
936 OPT_STRING('k', "key", &sort_key, "acquired",
H A Dbuiltin-kvm.c95 const char *sort_key; member in struct:perf_kvm_stat
624 if (!strcmp(keys[i].name, kvm->sort_key)) {
630 pr_err("Unknown compare key:%s\n", kvm->sort_key);
1351 OPT_STRING('k', "key", &kvm->sort_key, "sort-key",
1448 OPT_STRING('k', "key", &kvm->sort_key, "sort-key",
1581 .sort_key = "sample",

Completed in 174 milliseconds