Searched defs:mod (Results 226 - 250 of 395) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/
H A DCtClass.java553 * @param mod modifiers encoded by
557 public void setModifiers(int mod) { argument
H A DCtClassType.java420 public void setModifiers(int mod) { argument
422 if (Modifier.isStatic(mod)) {
425 mod = mod & ~Modifier.STATIC;
431 cf.setAccessFlags(AccessFlag.of(mod));
1237 int mod = f.getModifiers();
1238 if (Modifier.isStatic(mod) && Modifier.isFinal(mod))
1321 int mod = m.getModifiers();
1323 m.setModifiers(mod | Modifie
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java790 int mod = m.getModifiers();
791 if (!Modifier.isFinal(mod) && !Modifier.isStatic(mod)
792 && isVisible(mod, basename, m) && (filter == null || filter.isHandled(m))) {
911 int mod = meth.getModifiers();
952 int mod = c.getModifiers();
953 if (!Modifier.isFinal(mod) && !Modifier.isPrivate(mod)
954 && isVisible(mod, basename, c)) {
988 * @param mod th
990 isVisible(int mod, String from, Member meth) argument
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal.h602 pszind_t mod = ((((psz-1) & delta_inverse_mask) >> lg_delta)) & local
605 pszind_t ind = grp + mod;
616 size_t mod = pind & ((ZU(1) << LG_SIZE_CLASS_GROUP) - 1); local
624 size_t mod_size = (mod+1) << lg_delta;
687 szind_t mod = ((((size-1) & delta_inverse_mask) >> lg_delta)) & local
690 szind_t index = NTBINS + grp + mod;
728 size_t mod = reduced_index & ((ZU(1) << LG_SIZE_CLASS_GROUP) - local
737 size_t mod_size = (mod+1) << lg_delta;
/external/kmod/tools/
H A Dmodprobe.c210 struct kmod_module *mod; local
211 int err = kmod_module_new_from_path(ctx, filename, &mod);
217 err = kmod_module_get_versions(mod, &list);
221 kmod_module_unref(mod);
231 kmod_module_unref(mod);
290 static int rmmod_do_remove_module(struct kmod_module *mod) argument
292 const char *modname = kmod_module_get_name(mod);
296 SHOW("rmmod %s\n", kmod_module_get_name(mod));
304 err = kmod_module_remove_module(mod, flags);
312 deps = kmod_module_get_dependencies(mod);
344 rmmod_do_module(struct kmod_module *mod, bool do_dependencies) argument
434 struct kmod_module *mod = kmod_module_get_module(l); local
520 struct kmod_module *mod = kmod_module_get_module(l); local
[all...]
/external/libxkbcommon/xkbcommon/src/
H A Dstate.c811 * mod is locked, not just effective; otherwise it won't be lit.
1103 const struct xkb_mod *mod; local
1110 xkb_mods_enumerate(i, mod, &keymap->mods)
1112 mask |= mod->mapping;
/external/llvm/tools/lto/
H A Dlto.cpp289 void lto_module_dispose(lto_module_t mod) { delete unwrap(mod); } argument
291 const char* lto_module_get_target_triple(lto_module_t mod) { argument
292 return unwrap(mod)->getTargetTriple().c_str();
295 void lto_module_set_target_triple(lto_module_t mod, const char *triple) { argument
296 return unwrap(mod)->setTargetTriple(triple);
299 unsigned int lto_module_get_num_symbols(lto_module_t mod) { argument
300 return unwrap(mod)->getSymbolCount();
303 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) { argument
304 return unwrap(mod)
307 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index) argument
312 lto_module_get_linkeropts(lto_module_t mod) argument
344 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) argument
348 lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod) argument
508 lto_module_is_thinlto(lto_module_t mod) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_lowering_nv50.cpp503 af->getInsn()->src(0).mod = Modifier(NV50_IR_MOD_ABS);
504 bf->getInsn()->src(0).mod = Modifier(NV50_IR_MOD_ABS);
559 NV50LegalizeSSA::handleMOD(Instruction *mod) argument
561 if (mod->dType != TYPE_U32 && mod->dType != TYPE_S32)
563 bld.setPosition(mod, false);
568 bld.mkOp2(OP_DIV, mod->dType, q, mod->getSrc(0), mod->getSrc(1));
571 bld.setPosition(mod, fals
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_inspect.py16 from test import inspect_fodder as mod namespace
35 modfile = mod.__file__
46 git = mod.StupidGit()
81 self.istest(inspect.iscode, 'mod.spam.func_code')
83 self.istest(inspect.isfunction, 'mod.spam')
84 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
86 self.istest(inspect.ismodule, 'mod')
103 self.assertTrue(inspect.isroutine(mod.spam))
107 self.istest(inspect.isclass, 'mod.StupidGit')
160 self.istest(inspect.isframe, 'mod
[all...]
/external/python/cpython2/Modules/
H A D_lsprof.c180 PyObject *mod = fn->m_module; local
182 if (mod && PyString_Check(mod)) {
183 modname = PyString_AS_STRING(mod);
185 else if (mod && PyModule_Check(mod)) {
186 modname = PyModule_GetName(mod);
H A Dzipimport.c314 PyObject *code, *mod, *dict; local
326 mod = PyImport_AddModule(fullname);
327 if (mod == NULL) {
331 dict = PyModule_GetDict(mod);
333 /* mod.__loader__ = self */
362 mod = PyImport_ExecCodeModuleEx(fullname, code, modpath);
367 return mod;
370 Py_DECREF(mod);
699 time, # mod time of file (in dos format)
700 date, # mod dat
1304 PyObject *mod; local
[all...]
/external/python/cpython2/Objects/
H A Dcomplexobject.c602 Py_complex div, mod; local
618 mod = c_diff(a, c_prod(b, div));
620 return PyComplex_FromCComplex(mod);
627 Py_complex div, mod; local
644 mod = c_diff(a, c_prod(b, div));
646 m = PyComplex_FromCComplex(mod);
/external/python/cpython2/Python/
H A Dmarshal.c1412 PyObject *mod = Py_InitModule3("marshal", marshal_methods, local
1414 if (mod == NULL)
1416 PyModule_AddIntConstant(mod, "version", Py_MARSHAL_VERSION);
H A Dsymtable.c219 PySymtable_Build(mod_ty mod, const char *filename, PyFutureFeatures *future) argument
230 !symtable_enter_block(st, top, ModuleBlock, (void *)mod, 0)) {
238 switch (mod->kind) {
240 seq = mod->v.Module.body;
247 if (!symtable_visit_expr(st, mod->v.Expression.body))
251 seq = mod->v.Interactive.body;
262 if (!symtable_exit_block(st, (void *)mod)) {
271 (void) symtable_exit_block(st, (void *)mod);
/external/python/cpython3/Lib/test/
H A Dtest_ast.py258 mod = ast.parse("from __future__ import division")
259 self.assertIsInstance(mod.body[0], ast.ImportFrom)
260 mod.body[0].module = " __future__ ".strip()
261 compile(mod, "<test>", "exec")
389 for mod in mods:
392 ast2 = mod.loads(mod.dumps(ast, protocol))
548 mod = ast.Module(body)
550 compile(mod, 'test', 'exec')
558 mod
567 def mod(self, mod, msg=None, mode="exec", *, exc=ValueError): member in class:ASTValidatorTests
[all...]
/external/python/cpython3/Modules/
H A D_lsprof.c170 PyObject *mod = fn->m_module; local
172 if (mod != NULL) {
173 if (PyUnicode_Check(mod)) {
174 modname = mod;
177 else if (PyModule_Check(mod)) {
178 modname = PyModule_GetNameObject(mod);
H A Dsignalmodule.c537 PyObject *mod; local
565 mod = PyImport_ImportModuleNoBlock("_socket");
566 if (mod == NULL)
568 Py_DECREF(mod);
H A Dzipimport.c461 PyObject *code = NULL, *mod, *dict; local
476 mod = PyImport_AddModuleObject(fullname);
477 if (mod == NULL)
479 dict = PyModule_GetDict(mod);
481 /* mod.__loader__ = self */
510 mod = PyImport_ExecCodeModuleObject(fullname, code, modpath, NULL);
512 if (mod == NULL)
519 return mod;
881 time, # mod time of file (in dos format)
882 date, # mod dat
1552 PyObject *mod; local
[all...]
/external/python/cpython3/Objects/
H A Dobject.c1001 PyObject *mod_name, *mod, *attr; local
1006 mod = PyImport_Import(mod_name);
1007 if (mod == NULL)
1009 attr = PyObject_GetAttrString(mod, name);
1010 Py_DECREF(mod);
/external/python/cpython3/Python/
H A D_warnings.c149 PyObject *tmp_item, *action, *msg, *cat, *mod, *ln_obj; local
160 /* Python code: action, msg, cat, mod, ln = item */
165 mod = PyTuple_GET_ITEM(tmp_item, 3);
174 good_mod = check_matched(mod, module);
H A Dcodecs.c1512 PyObject *mod; local
1540 mod = PyImport_ImportModuleNoBlock("encodings");
1541 if (mod == NULL) {
1544 Py_DECREF(mod);
H A Dpythonrun.c155 mod_ty mod; local
212 mod = PyParser_ASTFromFileObject(fp, filename, enc,
218 if (mod == NULL) {
233 v = run_mod(mod, filename, d, d, flags, arena);
890 mod_ty mod; local
902 mod = PyParser_ASTFromStringObject(str, filename, start, flags, arena);
903 if (mod != NULL)
904 ret = run_mod(mod, filename, globals, locals, flags, arena);
914 mod_ty mod; local
926 mod
972 run_mod(mod_ty mod, PyObject *filename, PyObject *globals, PyObject *locals, PyCompilerFlags *flags, PyArena *arena) argument
1027 mod_ty mod; local
1072 mod_ty mod; local
1110 mod_ty mod; local
1140 mod_ty mod; local
1155 mod_ty mod; local
1188 mod_ty mod; local
[all...]
H A Dsymtable.c240 PySymtable_BuildObject(mod_ty mod, PyObject *filename, PyFutureFeatures *future) argument
272 !symtable_enter_block(st, top, ModuleBlock, (void *)mod, 0, 0)) {
278 switch (mod->kind) {
280 seq = mod->v.Module.body;
287 if (!symtable_visit_expr(st, mod->v.Expression.body))
291 seq = mod->v.Interactive.body;
302 if (!symtable_exit_block(st, (void *)mod)) {
312 (void) symtable_exit_block(st, (void *)mod);
318 PySymtable_Build(mod_ty mod, const char *filename_str, PyFutureFeatures *future) argument
325 st = PySymtable_BuildObject(mod, filenam
[all...]
/external/skia/tests/
H A DMathTest.cpp585 T div, mod; local
586 SkTDivMod(numer, denom, &div, &mod);
588 REPORTER_ASSERT(r, numer%denom == mod);
598 T div, mod; local
599 SkTDivMod(numer, denom, &div, &mod);
601 REPORTER_ASSERT(r, numer%denom == mod);
/external/skqp/tests/
H A DMathTest.cpp585 T div, mod; local
586 SkTDivMod(numer, denom, &div, &mod);
588 REPORTER_ASSERT(r, numer%denom == mod);
598 T div, mod; local
599 SkTDivMod(numer, denom, &div, &mod);
601 REPORTER_ASSERT(r, numer%denom == mod);

Completed in 1413 milliseconds

1234567891011>>