/external/python/cpython3/Lib/idlelib/ |
D | stackviewer.py | 10 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 | 127 def addOpenEventSupport(root, flist): argument 134 flist.open(fn) 148 def overrideRootMenu(root, flist): argument 214 root.instance_dict = flist.inversedict 226 if flist: 227 root.bind('<<close-all-windows>>', flist.close_all_callback) 232 root.createcommand('exit', flist.close_all_callback) 262 def setupApp(root, flist): argument 280 overrideRootMenu(root, flist) 281 addOpenEventSupport(root, flist)
|
D | grep.py | 20 def grep(text, io=None, flist=None): argument 33 engine._grepdialog = GrepDialog(root, engine, flist) 46 def __init__(self, root, engine, flist): argument 58 self.flist = flist 110 sys.stdout = OutputWindow(self.flist) 184 flist = PyShellFileList(top) 192 grep(text, flist=flist)
|
D | outwin.py | 157 self.flist.gotofileline(filename, lineno) 169 def __init__(self, flist): argument 170 self.flist = flist 179 self.owin = owin = OutputWindow(self.flist)
|
D | pyshell.py | 132 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 461 self.rpcclt.register("flist", self.tkconsole.flist) 868 def __init__(self, flist=None): argument 874 if flist is None: 878 flist = PyShellFileList(root) 880 OutputWindow.__init__(self, flist, None, None) 1032 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/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)
|
D | EditorWindow.py | 131 def __init__(self, flist=None, filename=None, key=None, root=None): argument 160 self.flist = flist 161 root = root or flist.root 169 if flist: 170 self.tkinter_vars = flist.vars 173 self.top.instance_dict = flist.inversedict 249 if flist: 250 flist.inversedict[self] = key 252 flist.dict[key] = self 254 text.bind("<<close-all-windows>>", self.flist.close_all_callback) [all …]
|
/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/toybox/scripts/ |
D | mkflags.c | 169 struct flag *flist, *aflist, *offlist; in main() local 199 flist = digest(flags); in main() 229 if (flist && flist->lopt && in main() 230 !strcmp(flist->lopt->command, aflist->lopt->command)) enabled++; in main() 235 if (flist && flist->command && *aflist->command == *flist->command) in main() 241 if (enabled) flist = flist->next; in main()
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_filelist.py | 25 flist = filelist.FileList(self.root) 26 self.assertEqual(flist.root, self.root) 27 e = flist.new() 28 self.assertEqual(type(e), flist.EditorWindow)
|
/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 …]
|
/external/libunwind/tests/ |
D | ia64-test-dyn1.c | 99 void *flist[2]; in main() local 192 flist[0] = add3_0; in main() 193 flist[1] = add1; in main() 196 ret = (*add3_1) (13, flist); in main()
|