/third_party/python/Lib/idlelib/ |
H A D | stackviewer.py | 10 def StackBrowser(root, flist=None, tb=None, top=None): 16 item = StackTreeItem(flist, tb) 23 def __init__(self, flist=None, tb=None): 24 self.flist = flist 55 item = FrameTreeItem(info, self.flist) 62 def __init__(self, info, flist): 64 self.flist = flist 88 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist) [all...] |
H A D | macosx.py | 120 def addOpenEventSupport(root, flist): 127 flist.open(fn) 141 def overrideRootMenu(root, flist): 207 root.instance_dict = flist.inversedict 219 if flist: 220 root.bind('<<close-all-windows>>', flist.close_all_callback) 225 root.createcommand('exit', flist.close_all_callback) 255 def setupApp(root, flist): 273 overrideRootMenu(root, flist) 274 addOpenEventSupport(root, flist) [all...] |
H A D | grep.py | 20 def grep(text, io=None, flist=None): 32 flist: filelist.FileList instance for OutputWindow parent. 37 engine._grepdialog = GrepDialog(root, engine, flist) 71 def __init__(self, root, engine, flist): 78 flist: filelist.Filelist instance for OutputWindow parent. 86 self.flist = flist 147 sys.stdout = OutputWindow(self.flist) 202 flist = PyShellFileList(top) 210 grep(text, flist [all...] |
H A D | outwin.py | 155 self.flist.gotofileline(filename, lineno) 167 def __init__(self, flist): 168 self.flist = flist 177 self.owin = owin = OutputWindow(self.flist)
|
H A D | debugger.py | 131 self.flist = pyshell.flist 260 self.flist.gotofileline(filename, lineno) 295 self.stackviewer = sv = StackViewer(self.fstack, self.flist, self) 368 for editwin in self.pyshell.flist.inversedict: 378 def __init__(self, master, flist, gui): 386 self.flist = flist 454 edit = self.flist.open(filename)
|
H A D | filelist.py | 122 flist = FileList(root) 123 flist.new() 124 if flist.inversedict:
|
H A D | iomenu.py | 78 flist = self.editwin.flist 80 if flist: 86 # If editFile is valid and already open, flist.open will 90 # pass self.loadfile to flist.open so it will load the file 97 flist.open(filename, self.loadfile) 99 flist.open(filename) 393 if self.editwin.flist: 406 self.flist = None
|
H A D | pyshell.py | 138 self.text.bind("<<open-python-shell>>", self.flist.open_shell) 183 debug = self.flist.pyshell.interp.debugger 211 debug = self.flist.pyshell.interp.debugger 226 debug = self.flist.pyshell.interp.debugger 483 self.rpcclt.register("flist", self.tkconsole.flist) 644 oid = self.rpcclt.remotequeue("exec", "stackviewer", ("flist",), {}) 882 def __init__(self, flist=None): 888 if flist is None: 892 flist [all...] |
H A D | editor.py | 74 def __init__(self, flist=None, filename=None, key=None, root=None): 117 self.flist = flist 118 root = root or flist.root 122 if flist: 123 self.tkinter_vars = flist.vars 124 #self.top.instance_dict makes flist.inversedict available to 126 self.top.instance_dict = flist.inversedict 210 if flist: 211 flist [all...] |
H A D | browser.py | 23 # Normally pyshell.flist.open, but there is no pyshell.flist for htest. 107 flist = (pyshell.flist if not (self._htest or self._utest) 109 file_open = flist.open
|
H A D | runscript.py | 42 self.flist = self.editwin.flist 80 self.shell = shell = self.flist.open_shell()
|
H A D | run.py | 627 flist = None 629 flist = self.rpchandler.get_remote_proxy(flist_oid) 634 item = stackviewer.StackTreeItem(flist, tb)
|
/third_party/pulseaudio/src/tests/ |
H A D | flist-test.c | 28 #include <pulsecore/flist.h> 35 static pa_flist *flist; variable 55 /* Allocate some memory, if possible take it from the flist */ in thread_func() 56 if (b && (text = pa_flist_pop(flist))) in thread_func() 67 /* Give it back to the flist if possible */ 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/ |
H A D | flist.c | 36 #include "flist.h" 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 in stack_push() [all...] |
H A D | flist.h | 34 /* Name string is copied and added to flist structure. The original is 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/ |
H A 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 in main() [all...] |
/third_party/python/Lib/idlelib/idle_test/ |
H A 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)
|
H A D | test_outwin.py | 110 w.flist = mock.Mock() 111 gfl = w.flist.gotofileline = Func() 133 del w.flist.gotofileline, w.showerror
|
H A D | test_macosx.py | 102 flist = FileList(root) 106 macosx.setupApp(root, flist)
|
H A D | mock_idle.py | 43 def __init__(self, flist=None, filename=None, key=None, root=None,
|
/third_party/python/Tools/scripts/ |
H A 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/ltp/testcases/kernel/fs/fsstress/ |
H A D | fsstress.c | 100 typedef struct flist { struct 201 flist_t flist[FT_nft] = { variable 547 flist[i].nslots = 0; in main() 548 flist[i].nfiles = 0; in main() 549 free(flist[i].fents); in main() 550 flist[i].fents = NULL; in main() 563 ftp = &flist[ft]; in add_to_flist() 704 if (i >= 0 && (fep = &flist[FT_DIR].fents[i])->id == dirid) in dcache_lookup() 714 if (*dcp >= 0 && flist[FT_DIR].fents[*dcp].id == dirid) in dcache_purge() 722 ftp = &flist[f in del_from_flist() [all...] |
/third_party/libunwind/libunwind/tests/ |
H A 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/python/Lib/logging/ |
H A D | config.py | 115 flist = cp["formatters"]["keys"] 116 if not len(flist): 118 flist = flist.split(",") 119 flist = _strip_spaces(flist) 121 for form in flist:
|
/third_party/python/Lib/ |
H A D | compileall.py | 351 parser.add_argument('-i', metavar='FILE', dest='flist', 406 # if flist is provided then load it 407 if args.flist: 409 with (sys.stdin if args.flist=='-' else 410 open(args.flist, encoding="utf-8")) as f: 415 print("Error reading file list {}".format(args.flist))
|