/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | rlcompleter.py | 87 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
|
D | csv.py | 213 matches = [] 219 matches = regexp.findall(data) 220 if matches: 223 if not matches: 229 for m in matches:
|
D | difflib.py | 41 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/ |
D | world | 120 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:
|
D | README | 26 united matches 6 countries:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/ |
D | find-uname.py | 32 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/ |
D | csv.py | 217 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/ |
D | LzmaEnc.c | 358 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/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | readline.c | 68 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/ |
D | tokenize.py | 285 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/ |
D | onigposix.h | 155 ONIG_EXTERN int regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, i…
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | deflate.h | 246 uInt matches; /* number of string matches in current block */ member
|
D | trees.c | 423 s->last_lit = s->matches = 0; 1033 s->matches++; 1059 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
|
D | algorithm.txt | 30 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/MdePkg/Library/BaseLib/Ia32/ |
D | Thunk16.asm | 82 ; The order of saved registers on the stack matches the order they appears
|
D | Thunk16.nasm | 81 ; The order of saved registers on the stack matches the order they appears
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/ |
D | Thunk16.asm | 81 ; The order of saved registers on the stack matches the order they appears
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | deflate.h | 249 uInt matches; /* number of string matches in current block */ member
|
D | trees.c | 421 s->last_lit = s->matches = 0; 1021 s->matches++; 1047 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
|
D | algorithm.txt | 30 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/ |
D | test_pytree.py | 474 matches = list(pytree.generate_matches([pr], [root])) 475 self.assertEqual(len(matches), 1) 476 c, r = matches[0]
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ |
D | ScanMem.asm | 74 beq L50 ; If it matches exit found
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | lnotab_notes.txt | 111 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/ |
D | lnotab_notes.txt | 111 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/ |
D | Thunk16.S | 77 # The order of saved registers on the stack matches the order they appears
|