HomeSort by relevance Sort by last modified time
    Searched refs:modname (Results 26 - 50 of 103) sorted by null

12 3 4 5

  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
__init__.py 97 modname = "%s.%s.%s" % ( __name__, package, py_file[:-3] )
99 if modname in sys.modules:
101 reload(__import__(modname))
103 __import__(modname)
  /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,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
__init__.py 93 for modname in modnames:
94 if not modname or '.' in modname:
99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
151 _aliases[alias] = modname
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
__init__.py 93 for modname in modnames:
94 if not modname or '.' in modname:
99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
151 _aliases[alias] = modname
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11dyn.c 92 #define SDL_X11_MODULE(modname)
108 #define SDL_X11_MODULE(modname) int SDL_X11_HAVE_##modname = 1;
141 #define SDL_X11_MODULE(modname) SDL_X11_HAVE_##modname = 1;
178 #define SDL_X11_MODULE(modname) thismod = &SDL_X11_HAVE_##modname;
  /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);
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 11 if stmt.modname == "__future__":
53 if node.modname != "__future__":
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 11 if stmt.modname == "__future__":
53 if node.modname != "__future__":
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
__init__.py 57 for modname in find_package_modules(package, mask):
58 if modname.split(".")[-1] in exclude:
59 skipped.append(modname)
61 print >> sys.stderr, "Skipped %s: excluded" % modname
64 mod = __import__(modname, globals(), locals(), ['*'])
66 skipped.append(modname)
68 print >> sys.stderr, "Skipped %s: %s" % (modname, detail)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
__init__.py 57 for modname in find_package_modules(package, mask):
58 if modname.split(".")[-1] in exclude:
59 skipped.append(modname)
61 print >> sys.stderr, "Skipped %s: excluded" % modname
64 mod = __import__(modname, globals(), locals(), ['*'])
66 skipped.append(modname)
68 print >> sys.stderr, "Skipped %s: %s" % (modname, detail)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imputil.py 263 def _import_one(self, parent, modname, fqname):
273 result = self.get_code(parent, modname, fqname)
281 setattr(parent, modname, module)
370 def get_code(self, parent, modname, fqname):
376 modname specifies a single module (not dotted) within the parent.
380 down to the modname.
381 If there is no parent, then modname==fqname.
505 def get_code(self, parent, modname, fqname):
511 if imp.is_builtin(modname):
513 elif imp.is_frozen(modname)
    [all...]
pkgutil.py 205 modname = inspect.getmodulename(fn)
206 if modname=='__init__' or modname in yielded:
212 if not modname and os.path.isdir(path) and '.' not in fn:
213 modname = fn
227 if modname and '.' not in modname:
228 yielded[modname] = 1
229 yield prefix + modname, ispkg
352 modname = inspect.getmodulename(fn[0]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
__init__.py 52 modname = "json.tests." + fn[:-3]
53 __import__(modname)
54 module = sys.modules[modname]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imputil.py 263 def _import_one(self, parent, modname, fqname):
273 result = self.get_code(parent, modname, fqname)
281 setattr(parent, modname, module)
370 def get_code(self, parent, modname, fqname):
376 modname specifies a single module (not dotted) within the parent.
380 down to the modname.
381 If there is no parent, then modname==fqname.
505 def get_code(self, parent, modname, fqname):
511 if imp.is_builtin(modname):
513 elif imp.is_frozen(modname)
    [all...]
pkgutil.py 205 modname = inspect.getmodulename(fn)
206 if modname=='__init__' or modname in yielded:
212 if not modname and os.path.isdir(path) and '.' not in fn:
213 modname = fn
227 if modname and '.' not in modname:
228 yielded[modname] = 1
229 yield prefix + modname, ispkg
352 modname = inspect.getmodulename(fn[0]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
__init__.py 52 modname = "json.tests." + fn[:-3]
53 __import__(modname)
54 module = sys.modules[modname]
  /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...]
  /external/elfutils/0.153/libdwfl/
dwfl_build_id_find_debuginfo.c 57 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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
gensuitemodule.py 474 code, modname, precompinfo = compiler.precompilesuite()
478 suiteinfo = suite, pathname, modname
479 suitelist.append((code, modname))
494 for code, modname in suitelist:
495 fp.write("import %s\n" % modname)
497 for code, modname in suitelist:
498 fp.write(" '%s' : %s,\n"%(ascii(code), modname))
501 for code, modname in suitelist:
502 fp.write(" '%s' : ('%s.%s', '%s'),\n"%(ascii(code), packagename, modname, modname))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_trace.py 23 modname = os.path.splitext(os.path.basename(__file__))[0]
24 return fix_ext_py(__file__), modname
316 modname = 'test.tracedmodules.testmod'
318 if modname in sys.modules:
319 del sys.modules[modname]
331 modname = trace.fullmodname(sys.modules[modname].__file__)
332 self.assertIn(modname, coverage)
333 self.assertEqual(coverage[modname], (5, 100))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_trace.py 23 modname = os.path.splitext(os.path.basename(__file__))[0]
24 return fix_ext_py(__file__), modname
316 modname = 'test.tracedmodules.testmod'
318 if modname in sys.modules:
319 del sys.modules[modname]
331 modname = trace.fullmodname(sys.modules[modname].__file__)
332 self.assertIn(modname, coverage)
333 self.assertEqual(coverage[modname], (5, 100))

Completed in 732 milliseconds

12 3 4 5