/external/python/cpython3/Lib/idlelib/ |
D | stackviewer.py | 11 def StackBrowser(root, flist=None, tb=None, top=None): argument 16 item = StackTreeItem(flist, tb) 23 def __init__(self, flist=None, tb=None): argument 24 self.flist = flist 55 item = FrameTreeItem(info, self.flist) 62 def __init__(self, info, flist): argument 64 self.flist = flist 88 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist) 90 item = VariablesTreeItem("<globals>", frame.f_globals, self.flist) 95 if self.flist: [all …]
|
D | macosx.py | 93 def addOpenEventSupport(root, flist): argument 100 flist.open(fn) 114 def overrideRootMenu(root, flist): argument 180 root.instance_dict = flist.inversedict 192 if flist: 193 root.bind('<<close-all-windows>>', flist.close_all_callback) 198 root.createcommand('exit', flist.close_all_callback) 228 def setupApp(root, flist): argument 246 overrideRootMenu(root, flist) 247 addOpenEventSupport(root, flist)
|
D | browser.py | 27 def __init__(self, flist, name, path, _htest=False): argument 35 file_open = pyshell.flist.open 39 self.init(flist) 45 def init(self, flist): argument 46 self.flist = flist 50 self.top = top = ListedToplevel(flist.root) 55 (flist.root.winfo_rootx(), flist.root.winfo_rooty() + 200)) 98 pyshell.flist.open(self.file) 229 flist = pyshell.PyShellFileList(parent) 231 file_open = flist.open [all …]
|
D | grep.py | 14 def grep(text, io=None, flist=None): argument 18 engine._grepdialog = GrepDialog(root, engine, flist) 29 def __init__(self, root, engine, flist): argument 31 self.flist = flist 72 sys.stdout = OutputWindow(self.flist) 141 flist = PyShellFileList(top) 147 grep(text, flist=flist)
|
D | outwin.py | 100 edit = self.flist.open(filename) 131 def __init__(self, flist): argument 132 self.flist = flist 141 self.owin = owin = OutputWindow(self.flist)
|
D | pathbrowser.py | 12 def __init__(self, flist, _htest=False): argument 17 self.init(flist) 102 flist = PyShellFileList(parent) 103 PathBrowser(flist, _htest=True)
|
D | filelist.py | 120 flist = FileList(root) 123 flist.open(filename) 125 flist.new() 126 if flist.inversedict:
|
D | pyshell.py | 121 self.text.bind("<<open-python-shell>>", self.flist.open_shell) 165 debug = self.flist.pyshell.interp.debugger 193 debug = self.flist.pyshell.interp.debugger 208 debug = self.flist.pyshell.interp.debugger 450 self.rpcclt.register("flist", self.tkconsole.flist) 850 def __init__(self, flist=None): argument 856 if flist is None: 860 flist = PyShellFileList(root) 862 OutputWindow.__init__(self, flist, None, None) 1009 self.flist.pyshell = None [all …]
|
D | debugger.py | 131 self.flist = pyshell.flist 259 self.flist.gotofileline(filename, lineno) 294 self.stackviewer = sv = StackViewer(self.fstack, self.flist, self) 367 for editwin in self.pyshell.flist.inversedict: 377 def __init__(self, master, flist, gui): argument 385 self.flist = flist 453 edit = self.flist.open(filename)
|
/external/toybox/scripts/ |
D | mkflags.c | 149 struct flag *flist, *aflist, *offlist; in main() local 177 flist = digest(flags); in main() 203 if (flist && flist->lopt && in main() 204 !strcmp(flist->lopt->command, aflist->lopt->command)) in main() 206 sprintf(out, "#define FLAG_%s (1%s<<%d)\n", flist->lopt->command, in main() 208 flist->lopt = flist->lopt->next; in main() 215 if (flist) flist = flist->next; in main() 219 if (flist && flist->command && *aflist->command == *flist->command) { in main() 223 flist = flist->next; in main()
|
/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 11 def StackBrowser(root, flist=None, tb=None, top=None): argument 16 item = StackTreeItem(flist, tb) 22 def __init__(self, flist=None, tb=None): argument 23 self.flist = flist 54 item = FrameTreeItem(info, self.flist) 60 def __init__(self, info, flist): argument 62 self.flist = flist 86 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist) 88 item = VariablesTreeItem("<globals>", frame.f_globals, self.flist) 93 if self.flist: [all …]
|
D | macosxSupport.py | 91 def addOpenEventSupport(root, flist): argument 98 flist.open(fn) 112 def overrideRootMenu(root, flist): argument 173 root.instance_dict = flist.inversedict 185 if flist: 186 root.bind('<<close-all-windows>>', flist.close_all_callback) 191 root.createcommand('exit', flist.close_all_callback) 217 def setupApp(root, flist): argument 236 overrideRootMenu(root, flist) 237 addOpenEventSupport(root, flist)
|
D | ClassBrowser.py | 27 def __init__(self, flist, name, path, _htest=False): argument 35 file_open = PyShell.flist.open 39 self.init(flist) 45 def init(self, flist): argument 46 self.flist = flist 50 self.top = top = ListedToplevel(flist.root) 55 (flist.root.winfo_rootx(), flist.root.winfo_rooty() + 200)) 98 PyShell.flist.open(self.file) 229 flist = PyShell.PyShellFileList(parent) 231 file_open = flist.open [all …]
|
D | GrepDialog.py | 13 def grep(text, io=None, flist=None): argument 17 engine._grepdialog = GrepDialog(root, engine, flist) 28 def __init__(self, root, engine, flist): argument 30 self.flist = flist 74 sys.stdout = OutputWindow(self.flist) 141 flist = PyShellFileList(root) 147 grep(text, flist=flist)
|
D | OutputWindow.py | 102 edit = self.flist.open(filename) 133 def __init__(self, flist): argument 134 self.flist = flist 143 self.owin = owin = OutputWindow(self.flist)
|
D | FileList.py | 114 flist = FileList(root) 117 flist.open(filename) 119 flist.new() 120 if flist.inversedict:
|
D | PathBrowser.py | 12 def __init__(self, flist, _htest=False): argument 17 self.init(flist) 96 flist = PyShellFileList(parent) 97 PathBrowser(flist, _htest=True)
|
D | PyShell.py | 133 self.text.bind("<<open-python-shell>>", self.flist.open_shell) 176 debug = self.flist.pyshell.interp.debugger 204 debug = self.flist.pyshell.interp.debugger 219 debug = self.flist.pyshell.interp.debugger 468 self.rpcclt.register("flist", self.tkconsole.flist) 880 def __init__(self, flist=None): argument 886 if flist is None: 890 flist = PyShellFileList(root) 892 OutputWindow.__init__(self, flist, None, None) 1031 self.flist.pyshell = None [all …]
|
D | Debugger.py | 126 self.flist = pyshell.flist 254 self.flist.gotofileline(filename, lineno) 289 self.stackviewer = sv = StackViewer(self.fstack, self.flist, self) 362 pyshell_edit_windows = self.pyshell.flist.inversedict.keys() 373 def __init__(self, master, flist, gui): argument 381 self.flist = flist 450 edit = self.flist.open(filename)
|
/external/autotest/cli/ |
D | topic_common_unittest.py | 46 os.unlink(options.flist) 79 os.unlink(options.flist) 94 flist = './does_not_exist' variable in item_parse_info_unittest.test_file_list_wrong_file.opt 101 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_empty_file.opt 108 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_ok.opt 115 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_one_line_space.opt 122 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_one_line_comma.opt 129 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_one_line_mix.opt 137 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_one_line_comma_space.opt 145 flist = flist_obj.name variable in item_parse_info_unittest.test_file_list_line_end_comma_space.opt [all …]
|
/external/python/cpython2/Lib/ |
D | compileall.py | 132 def expand_args(args, flist): argument 135 if flist: 137 if flist == '-': 140 fd = open(flist) 147 print "Error reading file list %s" % flist 187 flist = None 196 if o == '-i': flist = a 203 if args or flist: 205 if flist: 206 args = expand_args(args, flist)
|
/external/python/cpython2/Tools/scripts/ |
D | objgraph.py | 89 flist = file2undef.keys() 90 flist.sort() 91 for filename in flist: 138 flist = undefs[ext] 139 flist.sort() 140 for filename in flist:
|
/external/python/cpython3/Tools/scripts/ |
D | objgraph.py | 89 flist = sorted(file2undef.keys()) 90 for filename in flist: 135 flist = sorted(undefs[ext]) 136 for filename in flist:
|
/external/e2fsprogs/contrib/ |
D | fsstress.c | 126 typedef struct flist { struct 227 flist_t flist[FT_nft] = { variable 573 flist[i].nslots = 0; in main() 574 flist[i].nfiles = 0; in main() 575 free(flist[i].fents); in main() 576 flist[i].fents = NULL; in main() 589 ftp = &flist[ft]; in add_to_flist() 730 if (i >= 0 && (fep = &flist[FT_DIR].fents[i])->id == dirid) in dcache_lookup() 740 if (*dcp >= 0 && flist[FT_DIR].fents[*dcp].id == dirid) in dcache_purge() 748 ftp = &flist[ft]; in del_from_flist() [all …]
|
/external/ltp/testcases/kernel/fs/fsstress/ |
D | fsstress.c | 99 typedef struct flist { struct 200 flist_t flist[FT_nft] = { variable 546 flist[i].nslots = 0; in main() 547 flist[i].nfiles = 0; in main() 548 free(flist[i].fents); in main() 549 flist[i].fents = NULL; in main() 562 ftp = &flist[ft]; in add_to_flist() 703 if (i >= 0 && (fep = &flist[FT_DIR].fents[i])->id == dirid) in dcache_lookup() 713 if (*dcp >= 0 && flist[FT_DIR].fents[*dcp].id == dirid) in dcache_purge() 721 ftp = &flist[ft]; in del_from_flist() [all …]
|