Home
last modified time | relevance | path

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

12

/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:
DREADME26 united matches 6 countries:
/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/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.c319 UInt32 matches[LZMA_MATCH_LEN_MAX * 2 + 2 + 1]; member
854 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches); in ReadMatchDistances()
861 printf("%2d %6d | ", p->matches[i], p->matches[i + 1]); in ReadMatchDistances()
866 lenRes = p->matches[numPairs - 2]; in ReadMatchDistances()
870 UInt32 distance = p->matches[numPairs - 1] + 1; in ReadMatchDistances()
968 UInt32 *matches; in GetOptimum() local
1025 matches = p->matches; in GetOptimum()
1028 *backRes = matches[numPairs - 1] + LZMA_NUM_REPS; in GetOptimum()
1112 while (len > matches[offs]) in GetOptimum()
1117 UInt32 distance = matches[offs + 1]; in GetOptimum()
[all …]
/device/google/marlin/
Dvr-virtual-touchpad-1.idc21 # This displayID matches the unique ID of the virtual display created for VR.
/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…
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DThunk16.asm81 ; The order of saved registers on the stack matches the order they appears
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DThunk16.asm82 ; The order of saved registers on the stack matches the order they appears
DThunk16.nasm81 ; The order of saved registers on the stack matches the order they appears
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.h246 uInt matches; /* number of string matches in current block */ member
Dtrees.c423 s->last_lit = s->matches = 0;
1033 s->matches++;
1059 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
Dalgorithm.txt30 hash chains, the algorithm simply discards matches that are too old.
37 deflate() also defers the selection of matches with a lazy evaluation
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Ddeflate.h249 uInt matches; /* number of string matches in current block */ member
Dtrees.c421 s->last_lit = s->matches = 0;
1021 s->matches++;
1047 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
Dalgorithm.txt30 hash chains, the algorithm simply discards matches that are too old.
37 deflate() also defers the selection of matches with a lazy evaluation
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
Dtest_pytree.py474 matches = list(pytree.generate_matches([pr], [root]))
475 self.assertEqual(len(matches), 1)
476 c, r = matches[0]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlnotab_notes.txt111 instruction offset matches the offset given for the start of a line by the
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlnotab_notes.txt111 instruction offset matches the offset given for the start of a line by the
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
DThunk16.S77 # The order of saved registers on the stack matches the order they appears

12