HomeSort by relevance Sort by last modified time
    Searched refs:mod (Results 101 - 125 of 717) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scriptpackages.py 13 mod = __import__(package)
15 klass = getattr(mod, package)
20 obj = mod.application(0)
  /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)) {
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxevents.c 127 keysym -> mod = KMOD_NONE ;
131 GR_KEYMOD mod = keystroke -> modifiers ; local
133 if (mod & MWKMOD_LSHIFT)
134 keysym -> mod |= KMOD_LSHIFT ;
135 if (mod & MWKMOD_RSHIFT)
136 keysym -> mod |= KMOD_RSHIFT ;
137 if (mod & MWKMOD_LCTRL)
138 keysym -> mod |= KMOD_LCTRL ;
139 if (mod & MWKMOD_RCTRL)
140 keysym -> mod |= KMOD_RCTRL
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_blind.c 123 BIGNUM *mod; /* just a reference */ member in struct:bn_blinding_st
137 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod)
141 bn_check_top(mod);
158 /* save a copy of mod in the BN_BLINDING structure */
159 if ((ret->mod = BN_dup(mod)) == NULL) goto err;
160 if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0)
161 BN_set_flags(ret->mod, BN_FLG_CONSTTIME);
182 if (r->mod != NULL) BN_free(r->mod);
    [all...]
  /external/elfutils/libdwfl/
find-debuginfo.c 93 validate (Dwfl_Module *mod, int fd, bool check, GElf_Word debuglink_crc)
96 if (mod->build_id_len > 0)
101 mod->debug.elf = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, NULL);
102 if (likely (__libdwfl_find_build_id (mod, false, mod->debug.elf) == 2))
104 mod->debug.valid = true;
108 elf_end (mod->debug.elf);
109 mod->debug.elf = NULL;
110 mod->debug.valid = false;
113 return mod->debug.valid
    [all...]
libdwflP.h 197 Dwfl_Module *mod; /* Pointer back to containing module. */ member in struct:dwfl_cu
240 extern void __libdwfl_module_free (Dwfl_Module *mod) internal_function;
250 extern Dwfl_Error __libdwfl_relocate (Dwfl_Module *mod, Elf *file, bool debug)
255 extern Dwfl_Error __libdwfl_relocate_section (Dwfl_Module *mod, Elf *relocated,
261 MOD->dwfl->callbacks->section_address is called to determine the actual
263 extern Dwfl_Error __libdwfl_relocate_value (Dwfl_Module *mod, Elf *elf,
270 /* Ensure that MOD->ebl is set up. */
271 extern Dwfl_Error __libdwfl_module_getebl (Dwfl_Module *mod) internal_function;
276 extern Dwfl_Error __libdwfl_nextcu (Dwfl_Module *mod, struct dwfl_cu *lastcu,
280 extern Dwfl_Error __libdwfl_addrcu (Dwfl_Module *mod, Dwarf_Addr addr
    [all...]
segment.c 170 for (Dwfl_Module *mod = dwfl->modulelist; mod != NULL; mod = mod->next)
171 if (! mod->gc)
173 const GElf_Addr start = segment_start (dwfl, mod->low_addr);
174 const GElf_Addr end = segment_end (dwfl, mod->high_addr);
217 mod->segment = idx;
219 /* Put MOD in the table for each segment that's inside it. */
221 dwfl->lookup_module[idx++] = mod;
    [all...]
link_map.c 206 Dwfl_Module *mod;
207 (void) INTUSE(dwfl_addrsegment) (dwfl, vaddr, &mod);
208 if (mod == NULL)
212 Elf_Scn *scn = INTUSE(dwfl_module_address_section) (mod, &vaddr, &bias);
218 if (likely (mod->e_type != ET_REL) && mod->main.elf != NULL)
221 vaddr - mod->main.bias, minread, mod->main.elf);
378 Dwfl_Module *mod;
379 int segndx = INTUSE(dwfl_addrsegment) (dwfl, l_ld, &mod);
205 Dwfl_Module *mod; local
376 Dwfl_Module *mod; local
    [all...]
  /external/elfutils/tests/
line2addr.c 41 print_address (Dwfl_Module *mod, Dwarf_Addr address)
43 int n = dwfl_module_relocations (mod);
48 int i = dwfl_module_relocate_address (mod, &address);
53 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL,
55 const char *secname = dwfl_module_relocation_info (mod, i, NULL);
76 handle_module (Dwfl_Module *mod __attribute__ ((unused)),
87 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
98 print_address (mod, addr);
  /external/kernel-headers/original/linux/
kmod.h 36 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /external/openssl/crypto/bn/
bn_blind.c 123 BIGNUM *mod; /* just a reference */ member in struct:bn_blinding_st
137 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod)
141 bn_check_top(mod);
158 /* save a copy of mod in the BN_BLINDING structure */
159 if ((ret->mod = BN_dup(mod)) == NULL) goto err;
160 if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0)
161 BN_set_flags(ret->mod, BN_FLG_CONSTTIME);
182 if (r->mod != NULL) BN_free(r->mod);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 23 mod = globals()[t] variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 23 mod = globals()[t] variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /external/javassist/src/main/javassist/tools/reflect/
Reflection.java 228 int mod = f.getModifiers(); local
229 if ((mod & Modifier.PUBLIC) != 0 && (mod & Modifier.FINAL) == 0) {
281 int mod = m.getModifiers(); local
282 if (Modifier.isPublic(mod) && !Modifier.isAbstract(mod))
283 processMethods0(mod, clazz, m, i, dontSearch);
287 private void processMethods0(int mod, CtClass clazz,
299 if (Modifier.isNative(mod))
303 if (Modifier.isFinal(mod)) {
360 int mod = f.getModifiers(); local
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
regcache.c 211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod)
218 *mod = False;
220 *mod = True;
225 void supply_register (int n, const void *buf, Bool *mod)
229 buf, register_size (n), mod); local
231 *mod = True;
234 void supply_register_from_string (int n, const char *buf, Bool *mod)
240 bytes_register, register_size (n), mod); local
242 *mod = True;
245 void supply_register_by_name (const char *name, const void *buf, Bool *mod)
247 supply_register (find_regno (name), buf, mod); local
    [all...]
  /external/qemu/android/skin/
keyset.c 222 skin_key_symmod_to_str( int sym, int mod )
229 if ((mod & KMOD_LCTRL) != 0) {
232 if ((mod & KMOD_RCTRL) != 0) {
235 if ((mod & KMOD_LSHIFT) != 0) {
238 if ((mod & KMOD_RSHIFT) != 0) {
241 if ((mod & KMOD_LALT) != 0) {
244 if ((mod & KMOD_RALT) != 0) {
266 int mod = 0; local
270 static const struct { const char* prefix; int mod; } mods[] = member in struct:__anon24749
297 mod |= mods[nn].mod
325 int mod; member in struct:__anon24750
394 int sym, mod; local
    [all...]
keyboard.c 38 int mod; /* SDL key modifier value */ member in struct:__anon24747
140 int mod,
147 k->mod = mod;
219 int mod,
223 int mod0 = mod;
229 mod &= (KMOD_CTRL | KMOD_ALT | KMOD_SHIFT);
240 D("handling arrow (sym=%d mod=%d)", sym, mod);
247 mod = k->mod
430 int mod = ev->key.keysym.mod; local
    [all...]
  /external/elfutils/src/
addr2line.c 228 print_dwarf_function (Dwfl_Module *mod, Dwarf_Addr addr)
231 Dwarf_Die *cudie = dwfl_module_addrdie (mod, addr, &bias);
297 print_addrsym (Dwfl_Module *mod, GElf_Addr addr)
301 const char *name = dwfl_module_addrsym (mod, addr, &s, &shndx);
305 int i = dwfl_module_relocate_address (mod, &addr);
307 name = dwfl_module_relocation_info (mod, i, NULL);
320 see_one_module (Dwfl_Module *mod,
329 *result = mod;
334 find_symbol (Dwfl_Module *mod,
343 int n = dwfl_module_getsymtab (mod);
382 Dwfl_Module *mod = NULL; local
444 Dwfl_Module *mod = dwfl_addrmodule (dwfl, addr); local
    [all...]
  /external/chromium_org/v8/src/ia32/
disasm-ia32.cc 335 static void get_modrm(byte data, int* mod, int* regop, int* rm) {
336 *mod = (data >> 6) & 3;
391 int mod, regop, rm; local
392 get_modrm(*modrmp, &mod, &regop, &rm);
393 RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
395 switch (mod) {
438 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 2) : *(modrmp + 2);
448 return mod == 2 ? 6 : 3;
452 mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 1) : *(modrmp + 1);
454 return mod == 2 ? 5 : 2
491 int mod, regop, rm; local
519 int mod, regop, rm; local
548 int mod, regop, rm; local
583 int mod, regop, rm; local
973 { int mod, regop, rm; local
987 int mod, regop, rm; local
1010 int mod, regop, rm; local
1039 int mod, regop, rm; local
1063 int mod, regop, rm; local
1071 int mod, regop, rm; local
1080 int mod, regop, rm; local
1103 int mod, regop, rm; local
1120 int mod, regop, rm; local
1131 int mod, regop, rm; local
1169 int mod, regop, rm; local
1188 int mod, regop, rm; local
1214 int mod, regop, rm; local
1232 int mod, regop, rm; local
1241 int mod, regop, rm; local
1252 int mod, regop, rm; local
1262 int mod, regop, rm; local
1272 int mod, regop, rm; local
1282 int mod, regop, rm; local
1296 int mod, regop, rm; local
1309 int mod, regop, rm; local
1317 int mod, regop, rm; local
1325 int mod, regop, rm; local
1333 int mod, regop, rm; local
1341 int mod, regop, rm; local
1347 int mod, regop, rm; local
1353 int mod, regop, rm; local
1363 int mod, regop, rm; local
1374 int mod, regop, rm; local
1382 int mod, regop, rm; local
1393 int mod, regop, rm; local
1402 int mod, regop, rm; local
1408 int mod, regop, rm; local
1415 int mod, regop, rm; local
1423 int mod, regop, rm; local
1434 int mod, regop, rm; local
1442 int mod, regop, rm; local
1458 int mod, regop, rm; local
1516 int mod, regop, rm; local
1522 int mod, regop, rm; local
1528 int mod, regop, rm; local
1545 int mod, regop, rm; local
1586 int mod, regop, rm; local
1592 int mod, regop, rm; local
1598 int mod, regop, rm; local
1604 int mod, regop, rm; local
1610 int mod, regop, rm; local
1617 int mod, regop, rm; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_llvm.h 21 LLVMModuleRef mod,
  /external/kernel-headers/original/asm-x86/
alternative_32.h 22 extern void alternatives_smp_module_add(struct module *mod, char *name,
25 extern void alternatives_smp_module_del(struct module *mod);
28 static inline void alternatives_smp_module_add(struct module *mod, char *name,
31 static inline void alternatives_smp_module_del(struct module *mod) {}
  /external/mesa3d/src/gallium/drivers/r600/
r600_llvm.h 21 LLVMModuleRef mod,
  /external/llvm/include/llvm-c/
lto.h 153 lto_module_dispose(lto_module_t mod);
160 lto_module_get_target_triple(lto_module_t mod);
166 lto_module_set_target_triple(lto_module_t mod, const char *triple);
173 lto_module_get_num_symbols(lto_module_t mod);
180 lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
187 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
212 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
domreg.py 54 mod = well_known_implementations.get(name)
55 if mod:
56 mod = __import__(mod, {}, {}, ['getDOMImplementation'])
57 return mod.getDOMImplementation()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
domreg.py 54 mod = well_known_implementations.get(name)
55 if mod:
56 mod = __import__(mod, {}, {}, ['getDOMImplementation'])
57 return mod.getDOMImplementation()

Completed in 1618 milliseconds

1 2 3 45 6 7 8 91011>>