Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 66) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Drlcompleter.py87 self.matches = self.attr_matches(text)
89 self.matches = self.global_matches(text)
91 return self.matches[state]
108 matches = []
112 matches.append(word)
116 matches.append(self._callable_postfix(val, word))
117 return matches
149 matches = []
155 matches.append(word)
156 return matches
Dcsv.py213 matches = []
219 matches = regexp.findall(data)
220 if matches:
223 if not matches:
229 for m in matches:
Ddifflib.py41 def _calculate_ratio(matches, length): argument
43 return 2.0 * matches / length
658 matches = reduce(lambda sum, triple: sum + triple[-1],
660 return _calculate_ratio(matches, len(self.a) + len(self.b))
680 availhas, matches = avail.__contains__, 0
688 matches = matches + 1
689 return _calculate_ratio(matches, len(self.a) + len(self.b))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
Dworld120 matches = []
125 matches.append(code)
127 if not matches:
130 if len(matches) == 1:
131 code = matches[0]
134 print regexp, 'matches %d countries:' % len(matches)
135 for code in matches:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dfind-uname.py32 matches = [(y,x) for (x,y) in unicode_names
34 if matches:
36 for match in matches:
/device/google/coral/pwrstats_util/
DCstateResidencyDataProvider.cpp33 std::smatch matches; in getImpl() local
40 if (std::regex_search(line, matches, searchExpr)) { in getImpl()
42 residency->set_entity_name(matches[1]); in getImpl()
43 residency->set_state_name(matches[2]); in getImpl()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcsv.py217 matches = []
223 matches = regexp.findall(data)
224 if matches:
227 if not matches:
233 for m in matches:
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
DLzmaEnc.c358 UInt32 matches[LZMA_MATCH_LEN_MAX * 2 + 2 + 1]; member
871 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches); in ReadMatchDistances()
879 printf("%2u %6u | ", p->matches[i], p->matches[i + 1]); in ReadMatchDistances()
885 lenRes = p->matches[numPairs - 2]; in ReadMatchDistances()
894 ptrdiff_t dif = (ptrdiff_t)-1 - p->matches[numPairs - 1]; in ReadMatchDistances()
988 UInt32 *matches; in GetOptimum() local
1051 matches = p->matches; in GetOptimum()
1054 *backRes = matches[numPairs - 1] + LZMA_NUM_REPS; in GetOptimum()
1138 while (len > matches[offs]) in GetOptimum()
1143 UInt32 distance = matches[offs + 1]; in GetOptimum()
[all …]
/device/generic/goldfish/input-mt/
Dvirtio_input_multi_touch_2.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_3.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_4.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_5.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
/device/generic/goldfish/input/
Dvirtio_input_multi_touch_10.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_5.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_6.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_7.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_8.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_11.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_2.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_3.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_4.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
Dvirtio_input_multi_touch_9.idc9 # This displayID matches the unique ID of the virtual display created for Emulator.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dreadline.c68 on_completion_display_matches_hook(char **matches,
756 on_completion_display_matches_hook(char **matches, in on_completion_display_matches_hook() argument
768 s = PyString_FromString(matches[i+1]); in on_completion_display_matches_hook()
776 "sOi", matches[0], m, max_length); in on_completion_display_matches_hook()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Dtokenize.py285 matches = cookie_re.findall(line_string)
286 if not matches:
288 encoding = _get_normal_name(matches[0])
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Donigposix.h155 ONIG_EXTERN int regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, i…

123