reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
633 llvm::Error error = globals.SetItem("__builtins__", builtins); 637 PyObject *o = PyRun_String("lambda x : x", Py_eval_input, globals.get(), 638 globals.get()); 649 PyObject *o = PyRun_String("lambda x,y=0: x", Py_eval_input, globals.get(), 650 globals.get()); 662 globals.get(), globals.get()); 662 globals.get(), globals.get()); 673 PyObject *o = PyRun_String("lambda x,y,*a: x", Py_eval_input, globals.get(), 674 globals.get()); 687 globals.get(), globals.get()); 687 globals.get(), globals.get()); 718 PyRun_String(script, Py_file_input, globals.get(), globals.get()); 718 PyRun_String(script, Py_file_input, globals.get(), globals.get()); 722 auto bar_bound = As<PythonCallable>(globals.GetItem("bar_bound")); 730 auto bar_unbound = As<PythonCallable>(globals.GetItem("bar_unbound")); 738 auto bar_class = As<PythonCallable>(globals.GetItem("bar_class")); 745 auto bar_static = As<PythonCallable>(globals.GetItem("bar_static")); 752 auto obj = As<PythonCallable>(globals.GetItem("obj"));