/third_party/python/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 37 engine._grepdialog = GrepDialog(root, engine, flist) 71 def __init__(self, root, engine, flist): argument 86 self.flist = flist 147 sys.stdout = OutputWindow(self.flist) 202 flist = PyShellFileList(top) 210 grep(text, flist=flist)
|
D | outwin.py | 155 self.flist.gotofileline(filename, lineno) 167 def __init__(self, flist): argument 168 self.flist = flist 177 self.owin = owin = OutputWindow(self.flist)
|
D | pyshell.py | 134 self.text.bind("<<open-python-shell>>", self.flist.open_shell) 179 debug = self.flist.pyshell.interp.debugger 207 debug = self.flist.pyshell.interp.debugger 222 debug = self.flist.pyshell.interp.debugger 473 self.rpcclt.register("flist", self.tkconsole.flist) 862 def __init__(self, flist=None): argument 868 if flist is None: 872 flist = PyShellFileList(root) 874 OutputWindow.__init__(self, flist, None, None) 1034 self.flist.pyshell = None [all …]
|
D | iomenu.py | 81 flist = self.editwin.flist 83 if flist: 100 flist.open(filename, self.loadfile) 102 flist.open(filename) 390 if self.editwin.flist: 403 self.flist = None
|
D | filelist.py | 122 flist = FileList(root) 123 flist.new() 124 if flist.inversedict:
|
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)
|
D | editor.py | 72 def __init__(self, flist=None, filename=None, key=None, root=None): argument 105 self.flist = flist 106 root = root or flist.root 110 if flist: 111 self.tkinter_vars = flist.vars 114 self.top.instance_dict = flist.inversedict 198 if flist: 199 flist.inversedict[self] = key 201 flist.dict[key] = self 203 text.bind("<<close-all-windows>>", self.flist.close_all_callback) [all …]
|
D | runscript.py | 42 self.flist = self.editwin.flist 80 self.shell = shell = self.flist.open_shell()
|
D | browser.py | 98 flist = (pyshell.flist if not (self._htest or self._utest) 100 file_open = flist.open
|
/third_party/pulseaudio/src/tests/ |
D | flist-test.c | 35 static pa_flist *flist; variable 56 if (b && (text = pa_flist_pop(flist))) in thread_func() 68 if (pa_flist_push(flist, text) < 0) { in thread_func() 77 if (pa_flist_push(flist, s) < 0) in thread_func() 85 flist = pa_flist_new(0); in main() 98 pa_flist_free(flist, pa_xfree); in main()
|
/third_party/pulseaudio/src/pulsecore/ |
D | flist.c | 71 static pa_flist_elem *stack_pop(pa_flist *flist, pa_atomic_t *list) { in stack_pop() argument 80 popped = &flist->table[idx & flist->index_mask]; in stack_pop() 87 static void stack_push(pa_flist *flist, pa_atomic_t *list, pa_flist_elem *new_elem) { in stack_push() argument 91 tag = pa_atomic_inc(&flist->current_tag); in stack_push() 92 newindex = new_elem - flist->table; in stack_push() 93 pa_assert(newindex >= 0 && newindex < (int) flist->size); in stack_push() 94 newindex |= (tag << flist->tag_shift) & flist->tag_mask; in stack_push()
|
D | flist.h | 48 pa_flist *volatile flist; \ 52 name##_flist.flist = \ 57 return name##_flist.flist; \ 63 if (name##_flist.flist) \ 64 pa_flist_free(name##_flist.flist, (free_cb)); \
|
/third_party/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()
|
/third_party/python/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)
|
D | test_outwin.py | 110 w.flist = mock.Mock() 111 gfl = w.flist.gotofileline = Func() 133 del w.flist.gotofileline, w.showerror
|
D | test_macosx.py | 93 flist = FileList(root) 97 macosx.setupApp(root, flist)
|
/third_party/python/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:
|
/third_party/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 …]
|
/third_party/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 …]
|
/third_party/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()
|
/third_party/openssl/tools/ |
D | c_rehash.in | 135 my @flist = sort readdir(DIR); 139 foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) { 146 FILE: foreach $fname (grep {/\.(pem)|(crt)|(cer)|(crl)$/} @flist) {
|
/third_party/python/Lib/ |
D | compileall.py | 406 if args.flist: 408 with (sys.stdin if args.flist=='-' else open(args.flist)) as f: 413 print("Error reading file list {}".format(args.flist))
|
/third_party/libxml2/python/ |
D | generator.py | 943 flist = function_classes["None"] 944 flist = sorted(flist, key=cmp_to_key(functionCompare)) 946 for info in flist: 1077 flist = function_classes[classname] 1078 flist = sorted(flist, key=cmp_to_key(functionCompare)) 1080 for info in flist:
|