HomeSort by relevance Sort by last modified time
    Searched refs:modname (Results 1 - 25 of 38) sorted by null

1 2

  /external/lldb/examples/customization/import-python/
importcmd.py 10 def do_import(debugger,modname):
11 if (len(modname) > 4 and modname[-4:] == '.pyc'):
12 modname = modname[:-4]
13 if (len(modname) > 3 and modname[-3:] == '.py'):
14 modname = modname[:-3]
15 debugger.HandleCommand("script import " + modname)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
codeunit.py 60 n = modname = morf.__name__
70 modname = None
72 self.modname = modname
97 if self.modname:
98 return self.modname.replace('.', '_')
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
wrap_yasm.py 20 def mk_tao(CPPFLAGS = "", CPP = "gcc -E", modname = '_yasm', oname = None, YASM_DIR = ".", **options):
22 oname = modname+'.pyx'
36 unit = WorkUnit(files,modname,oname,False,mark_cb=cb,extradefs=extradefs,
work_unit.py 32 def __init__(self, files, modname, filename,
37 self.modname = modname
121 decls = self.node.pyx_decls(self.files, self.modname, macros = self.macros, func_cb = func_cb, names={}, cprefix="" )
  /external/iproute2/include/
xt-internal.h 50 extern int xtables_insmod(const char *modname, const char *modprobe, int quiet);
iptables_common.h 30 extern int iptables_insmod(const char *modname, const char *modprobe);
ip6tables.h 139 extern int ip6tables_insmod(const char *modname, const char *modprobe);
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py 276 modname = None # name of current module
286 modname = mobj.group(1)
290 self.module_list.append(modname)
291 self.modules.setdefault(modname, [])
292 modlist = self.modules[modname]
325 modname = None # name of current module
338 modname = mobj.group(1)
342 self.module_list.append(modname)
343 self.modules.setdefault(modname, [])
344 modlist = self.modules[modname]
    [all...]
  /external/chromium_org/third_party/python_gflags/
gflags2man.py 276 modname = None # name of current module
286 modname = mobj.group(1)
290 self.module_list.append(modname)
291 self.modules.setdefault(modname, [])
292 modlist = self.modules[modname]
325 modname = None # name of current module
338 modname = mobj.group(1)
342 self.module_list.append(modname)
343 self.modules.setdefault(modname, [])
344 modlist = self.modules[modname]
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
loadlib.c 419 static int loadfunc (lua_State *L, const char *filename, const char *modname) {
422 modname = luaL_gsub(L, modname, ".", LUA_OFSEP);
423 mark = strchr(modname, *LUA_IGMARK);
426 funcname = lua_pushlstring(L, modname, mark - modname);
430 modname = mark + 1; /* else go ahead and try old-style name */
432 funcname = lua_pushfstring(L, LUA_POF"%s", modname);
570 static void modinit (lua_State *L, const char *modname) {
574 lua_pushstring(L, modname);
586 const char *modname = luaL_checkstring(L, 1); local
    [all...]
lauxlib.c 810 LUALIB_API void luaL_pushmodule (lua_State *L, const char *modname,
813 lua_getfield(L, -1, modname); /* get _LOADED[modname] */
818 if (luaL_findtable(L, 0, modname, sizehint) != NULL)
819 luaL_error(L, "name conflict for module " LUA_QS, modname);
821 lua_setfield(L, -3, modname); /* _LOADED[modname] = new table */
886 LUALIB_API void luaL_requiref (lua_State *L, const char *modname,
889 lua_pushstring(L, modname); /* argument to open function */
893 lua_setfield(L, -2, modname); /* _LOADED[modname] = module *
    [all...]
lauxlib.h 98 LUALIB_API void (luaL_requiref) (lua_State *L, const char *modname,
200 LUALIB_API void (luaL_pushmodule) (lua_State *L, const char *modname,
  /external/elfutils/0.153/libdwfl/
dwfl_build_id_find_debuginfo.c 57 const char *modname __attribute__ ((unused)),
libdwfl.h 69 const char *modname, Dwarf_Addr base,
73 const char *modname, Dwarf_Addr base,
84 const char *modname, Dwarf_Addr base,
linux-kernel-modules.c 804 const char *modname, Dwarf_Addr base __attribute__ ((unused)),
810 if (asprintf (&sysfile, SECADDRDIRFMT "%s", modname, secname) < 0)
845 modname, &secname[1]) < 0)
860 modname, secname);
914 char modname[128]; local
922 modname, &modsz, &modaddr) == 3)
924 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, modname,
dwfl_build_id_find_elf.c 144 const char *modname __attribute__ ((unused)),
find-debuginfo.c 274 const char *modname __attribute__ ((unused)),
offline.c 62 const char *modname __attribute__ ((unused)),
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 155 char * modname; local
202 modname = xmalloc((size_t)((cp2-cp) + 1));
203 strncpy(modname, cp, (size_t)((cp2-cp)));
204 modname[cp2-cp] = '\0';
206 mod = opd_find_module_by_name(modname);
208 free(modname);
  /external/chromium_org/tools/telemetry/build/
update_docs.py 60 for _, modname, _ in pkgutil.walk_packages(
62 if modname.endswith('_unittest'):
63 logging.debug("skipping %s due to being a unittest", modname)
66 module = __import__(modname, fromlist=[""])
  /external/elfutils/elfutils/
libdwfl.h 69 const char *modname, Dwarf_Addr base,
73 const char *modname, Dwarf_Addr base,
84 const char *modname, Dwarf_Addr base,
  /external/chromium_org/third_party/cython/src/pyximport/
pyxbuild.py 33 modname, extension = os.path.splitext(name)
37 ext = Extension(name=modname, sources=[filename])
pyximport.py 22 def make_ext(modname, pyxfilename):
24 return Extension(name = modname,
87 def get_distutils_extension(modname, pyxfilename, language_level=None):
93 # modname = modname + extra
94 extension_mod,setup_args = handle_special_build(modname, pyxfilename)
101 extension_mod = Extension(name = modname, sources=[pyxfilename])
106 def handle_special_build(modname, pyxfilename):
114 # ext = locs["make_ext"](modname, pyxfilename)
118 ext = make_ext(modname, pyxfilename
    [all...]
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 349 modname = os.path.splitext(os.path.basename(rel_filename))[0]
351 name = dirname.replace('/', '.') + '.' + modname
353 name = modname
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ObjectHandling.c 785 PyObject *qualname, PyObject *modname); /*proto*/
792 PyObject *qualname, PyObject *modname) {
796 if (PyDict_SetItem(dict, PYIDENT("__module__"), modname) < 0)
823 PyObject *mkw, PyObject *modname, PyObject *doc); /*proto*/
832 PyObject *qualname, PyObject *mkw, PyObject *modname, PyObject *doc) {
859 if (unlikely(PyObject_SetItem(ns, PYIDENT("__module__"), modname) < 0)) goto bad;
    [all...]

Completed in 2681 milliseconds

1 2