Home
last modified time | relevance | path

Searched refs:flist (Results 1 – 25 of 39) sorted by relevance

12

/external/python/cpython2/Lib/idlelib/
DStackViewer.py11 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 …]
DmacosxSupport.py91 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)
DClassBrowser.py27 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 …]
DGrepDialog.py13 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)
DOutputWindow.py102 edit = self.flist.open(filename)
133 def __init__(self, flist): argument
134 self.flist = flist
143 self.owin = owin = OutputWindow(self.flist)
DFileList.py114 flist = FileList(root)
117 flist.open(filename)
119 flist.new()
120 if flist.inversedict:
DPathBrowser.py12 def __init__(self, flist, _htest=False): argument
17 self.init(flist)
96 flist = PyShellFileList(parent)
97 PathBrowser(flist, _htest=True)
DPyShell.py133 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 …]
DDebugger.py126 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)
DEditorWindow.py131 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 …]
DScriptBinding.py54 self.flist = self.editwin.flist
87 self.shell = shell = self.flist.open_shell()
DIOBinding.py199 flist = self.editwin.flist
201 if flist:
218 flist.open(filename, self.loadfile)
220 flist.open(filename)
581 self.flist = None
Drun.py365 flist = None
367 flist = self.rpchandler.get_remote_proxy(flist_oid)
372 item = StackViewer.StackTreeItem(flist, tb)
/external/toybox/scripts/
Dmkflags.c149 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/autotest/cli/
Dtopic_common_unittest.py46 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 …]
Dtopic_common.py235 flist = getattr(options, self.filename_option)
237 for line in open(flist).readlines():
240 raise CliError("Empty file %s" % flist)
245 raise CliError("Could not open file %s" % flist)
/external/python/cpython2/Lib/
Dcompileall.py132 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/
Dobjgraph.py89 flist = file2undef.keys()
90 flist.sort()
91 for filename in flist:
138 flist = undefs[ext]
139 flist.sort()
140 for filename in flist:
/external/e2fsprogs/contrib/
Dfsstress.c126 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/
Dfsstress.c99 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/
Dia64-test-dyn1.c99 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()
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DCountersTable.java98 void appendBtoFList(NodeSetDTM flist, NodeSetDTM blist) in appendBtoFList() argument
105 flist.addElement(blist.item(i)); in appendBtoFList()
/external/libxml2/python/
Dgenerator.py942 flist = function_classes["None"]
943 flist = sorted(flist, key=cmp_to_key(functionCompare))
945 for info in flist:
1076 flist = function_classes[classname]
1077 flist = sorted(flist, key=cmp_to_key(functionCompare))
1079 for info in flist:
/external/python/cpython2/Lib/logging/
Dconfig.py113 flist = cp.get("formatters", "keys")
114 if not len(flist):
116 flist = flist.split(",")
117 flist = _strip_spaces(flist)
119 for form in flist:
/external/toybox/toys/posix/
Dcut.c32 char *flist;
239 list = TT.flist; in cut_main()

12