/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/ |
__init__.py | 99 mod = __import__('encodings.' + modname, fromlist=_import_tail, 106 mod = None 109 getregentry = mod.getregentry 112 mod = None 114 if mod is None: 125 (mod.__name__, mod.__file__) 134 (mod.__name__, mod.__file__) 136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1], [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/ |
__init__.py | 99 mod = __import__('encodings.' + modname, fromlist=_import_tail, 106 mod = None 109 getregentry = mod.getregentry 112 mod = None 114 if mod is None: 125 (mod.__name__, mod.__file__) 134 (mod.__name__, mod.__file__) 136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1], [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 99 mod = __import__('encodings.' + modname, fromlist=_import_tail, 106 mod = None 109 getregentry = mod.getregentry 112 mod = None 114 if mod is None: 125 (mod.__name__, mod.__file__) 134 (mod.__name__, mod.__file__) 136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1], [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 99 mod = __import__('encodings.' + modname, fromlist=_import_tail, 106 mod = None 109 getregentry = mod.getregentry 112 mod = None 114 if mod is None: 125 (mod.__name__, mod.__file__) 134 (mod.__name__, mod.__file__) 136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1], [all...] |
/external/elfutils/tests/ |
dwfl-bug-addr-overflow.c | 63 Dwfl_Module *mod = dwfl_addrmodule (dwfl, UINT64_C (0xffffffff00010123)); local 64 assert (mod == high); 65 mod = dwfl_addrmodule (dwfl, UINT64_C (0x00010123)); 66 assert (mod == low); 67 mod = dwfl_addrmodule (dwfl, UINT64_C (0xffff00010123)); 68 assert (mod == middle);
|
/system/security/keystore/ |
keystore_main.cpp | 58 static int keymaster0_device_initialize(const hw_module_t* mod, keymaster2_device_t** dev) { 59 assert(mod->module_api_version < KEYMASTER_MODULE_API_VERSION_1_0); 60 ALOGI("Found keymaster0 module %s, version %x", mod->name, mod->module_api_version); 66 int rc = keymaster0_open(mod, &km0_device); 81 ALOGD("Wrapping keymaster0 module %s with SoftKeymasterDevice", mod->name); 101 static int keymaster1_device_initialize(const hw_module_t* mod, keymaster2_device_t** dev) { 102 assert(mod->module_api_version >= KEYMASTER_MODULE_API_VERSION_1_0); 103 ALOGI("Found keymaster1 module %s, version %x", mod->name, mod->module_api_version) 159 const hw_module_t* mod; local [all...] |
/prebuilts/misc/windows/sdl2/test/ |
checkkeys.c | 54 int mod; local 56 mod = SDL_GetModState(); 57 if (!mod) { 61 if (mod & KMOD_LSHIFT) 63 if (mod & KMOD_RSHIFT) 65 if (mod & KMOD_LCTRL) 67 if (mod & KMOD_RCTRL) 69 if (mod & KMOD_LALT) 71 if (mod & KMOD_RALT) 73 if (mod & KMOD_LGUI [all...] |
/external/elfutils/libdwfl/ |
libdwflP.h | 302 Dwfl_Module *mod; /* Pointer back to containing module. */ member in struct:dwfl_cu 336 dwfl_adjusted_address (Dwfl_Module *mod, GElf_Addr addr) 338 return addr + mod->main_bias; 342 dwfl_deadjust_address (Dwfl_Module *mod, GElf_Addr addr) 344 return addr - mod->main_bias; 348 dwfl_adjusted_dwarf_addr (Dwfl_Module *mod, Dwarf_Addr addr) 350 return dwfl_adjusted_address (mod, (addr 351 - mod->debug.address_sync 352 + mod->main.address_sync)); 356 dwfl_deadjust_dwarf_addr (Dwfl_Module *mod, Dwarf_Addr addr [all...] |
libdwfl.h | 55 int (*find_elf) (Dwfl_Module *mod, void **userdata, 59 int (*find_debuginfo) (Dwfl_Module *mod, void **userdata, 70 int (*section_address) (Dwfl_Module *mod, void **userdata, 201 extern const char *dwfl_module_info (Dwfl_Module *mod, void ***userdata, 225 *MOD is always set to the module containing ADDRESS, or to null. */ 226 extern int dwfl_addrsegment (Dwfl *dwfl, Dwarf_Addr address, Dwfl_Module **mod); 236 extern int dwfl_module_report_build_id (Dwfl_Module *mod, 249 extern int dwfl_module_build_id (Dwfl_Module *mod, 382 extern int dwfl_linux_proc_find_elf (Dwfl_Module *mod, void **userdata, 395 extern int dwfl_module_relocations (Dwfl_Module *mod); [all...] |
dwfl_getdwarf.c | 40 module_callback (Dwfl_Module *mod, void **userdata, 45 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias); 46 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
|
/external/llvm/examples/BrainF/ |
BrainFDriver.cpp | 58 void addMainFunction(Module *mod) { 60 Function *main_func = cast<Function>(mod-> 61 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()), 62 IntegerType::getInt32Ty(mod->getContext()), 64 IntegerType::getInt8Ty(mod->getContext()))), NULL)); 74 BasicBlock *bb = BasicBlock::Create(mod->getContext(), "main.0", main_func); 78 CallInst *brainf_call = CallInst::Create(mod->getFunction("brainf"), 84 ReturnInst::Create(mod->getContext(), 85 ConstantInt::get(mod->getContext(), APInt(32, 0)), bb); 127 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 Ki [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_whichdb.py | 43 mod = test.test_support.import_module(name, deprecated=True) 47 def test_whichdb_name(self, name=name, mod=mod): 49 # for databases opened with module mod. 51 f = mod.open(_fname, 'c') 55 f = mod.open(_fname, 'w')
|
test_scriptpackages.py | 13 mod = __import__(package) 15 klass = getattr(mod, package) 20 obj = mod.application(0)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_whichdb.py | 43 mod = test.test_support.import_module(name, deprecated=True) 47 def test_whichdb_name(self, name=name, mod=mod): 49 # for databases opened with module mod. 51 f = mod.open(_fname, 'c') 55 f = mod.open(_fname, 'w')
|
test_scriptpackages.py | 13 mod = __import__(package) 15 klass = getattr(mod, package) 20 obj = mod.application(0)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_whichdb.py | 43 mod = test.test_support.import_module(name, deprecated=True) 47 def test_whichdb_name(self, name=name, mod=mod): 49 # for databases opened with module mod. 51 f = mod.open(_fname, 'c') 55 f = mod.open(_fname, 'w')
|
test_scriptpackages.py | 13 mod = __import__(package) 15 klass = getattr(mod, package) 20 obj = mod.application(0)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_whichdb.py | 43 mod = test.test_support.import_module(name, deprecated=True) 47 def test_whichdb_name(self, name=name, mod=mod): 49 # for databases opened with module mod. 51 f = mod.open(_fname, 'c') 55 f = mod.open(_fname, 'w')
|
test_scriptpackages.py | 13 mod = __import__(package) 15 klass = getattr(mod, package) 20 obj = mod.application(0)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
anydbm.py | 77 mod = _defaultmod 84 mod = __import__(result) 85 return mod.open(file, flag, mode)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
anydbm.py | 77 mod = _defaultmod 84 mod = __import__(result) 85 return mod.open(file, flag, mode)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
anydbm.py | 77 mod = _defaultmod 84 mod = __import__(result) 85 return mod.open(file, flag, mode)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
anydbm.py | 77 mod = _defaultmod 84 mod = __import__(result) 85 return mod.open(file, flag, mode)
|
/external/deqp/scripts/khr_util/ |
format.py | 41 def nextMod (val, mod): 42 if val % mod == 0: 43 return val + mod 45 return int(val/mod)*mod + mod
|
/external/javassist/src/main/javassist/ |
CtNewClass.java | 93 int mod = c.getModifiers(); local 94 if (isInheritable(mod, superclazz)) { 98 cons.setModifiers(mod & (Modifier.PUBLIC | Modifier.PROTECTED | Modifier.PRIVATE)); 110 private boolean isInheritable(int mod, CtClass superclazz) { 111 if (Modifier.isPrivate(mod)) 114 if (Modifier.isPackage(mod)) {
|