Searched defs:mod (Results 1 - 25 of 342) sorted by path

1234567891011>>

/prebuilts/devtools/tools/lib/
H A Dbcprov-jdk15on-1.48.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA org/ ...
H A Dcglib-nodep-3.1.jarMETA-INF/MANIFEST.MF LICENSE NOTICE net/sf/cglib/beans/BeanCopier$BeanCopierKey.class BeanCopier. ...
H A Dcommons-codec-1.4.jar ... lenChunksPerfectly byte[] pArray int chunkSize byte[] chunkSeparator long len long mod public static java.math.BigInteger decodeInteger (byte[]) byte ...
H A Dguava-13.0.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
H A Dguava-17.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
H A Dguava-18.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
H A Djcommon-1.0.12.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/keypoint/ org/ org/jfree/ org/jfree/base/ org/ ...
H A Djython-standalone-2.5.3.jarMETA-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE META-INF/maven/jline/ ...
H A Dlombok-ast-0.2.3.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
H A Dguava-14.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
H A Dorg.eclipse.jdt.core-3.9.1.v20130905-0837.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
H A Dorg.apache.commons.codec_1.4.0.v201209201156.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
H A DAppleScript_Suite.py496 def mod(self, _object, _attributes={}, **_arguments): member in class:AppleScript_Suite_Events
497 """mod: Remainder
503 _subcode = 'mod '
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dsmtpd.py530 mod = __import__(classname[:lastdot], globals(), locals(), [""]) variable
533 import __main__ as mod namespace
534 class_ = getattr(mod, classname)
H A Dsymtable.py239 mod = symtable(src, os.path.split(sys.argv[0])[1], "exec") variable
240 for ident in mod.get_identifiers():
241 info = mod.lookup(ident)
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_descr.py3203 mod = ModuleType("spam") variable in class:.test_set_dict.Module2
3204 verify_dict_readonly(mod)
3205 mod.__dict__["spam"] = "eggs"
3427 def __pow__(self, other, mod=None):
3428 if mod is None:
3431 return I(pow(int(self), int(other), int(mod)))
3432 def __rpow__(self, other, mod=None):
3433 if mod is None:
3434 return I(pow(int(other), int(self), mod))
3436 return I(pow(int(other), int(self), int(mod)))
[all...]
H A Dtest_inspect.py16 from test import inspect_fodder as mod namespace
32 modfile = mod.__file__
43 git = mod.StupidGit()
78 self.istest(inspect.iscode, 'mod.spam.func_code')
80 self.istest(inspect.isfunction, 'mod.spam')
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
83 self.istest(inspect.ismodule, 'mod')
100 self.assertTrue(inspect.isroutine(mod.spam))
104 self.istest(inspect.isclass, 'mod.StupidGit')
157 self.istest(inspect.isframe, 'mod
[all...]
H A Dtest_pdb.py244 mod = imp.new_module('module_to_skip') variable
245 exec 'def foo_pony(callback): x = 1; callback(); return None' in mod.__dict__
255 ... mod.foo_pony(callback)
268 -> mod.foo_pony(callback)
283 -> mod.foo_pony(callback)
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dsmtpd.py530 mod = __import__(classname[:lastdot], globals(), locals(), [""]) variable
533 import __main__ as mod namespace
534 class_ = getattr(mod, classname)
H A Dsymtable.py239 mod = symtable(src, os.path.split(sys.argv[0])[1], "exec") variable
240 for ident in mod.get_identifiers():
241 info = mod.lookup(ident)
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_descr.py3203 mod = ModuleType("spam") variable in class:.test_set_dict.Module2
3204 verify_dict_readonly(mod)
3205 mod.__dict__["spam"] = "eggs"
3427 def __pow__(self, other, mod=None):
3428 if mod is None:
3431 return I(pow(int(self), int(other), int(mod)))
3432 def __rpow__(self, other, mod=None):
3433 if mod is None:
3434 return I(pow(int(other), int(self), mod))
3436 return I(pow(int(other), int(self), int(mod)))
[all...]
H A Dtest_inspect.py16 from test import inspect_fodder as mod namespace
32 modfile = mod.__file__
43 git = mod.StupidGit()
78 self.istest(inspect.iscode, 'mod.spam.func_code')
80 self.istest(inspect.isfunction, 'mod.spam')
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
83 self.istest(inspect.ismodule, 'mod')
100 self.assertTrue(inspect.isroutine(mod.spam))
104 self.istest(inspect.isclass, 'mod.StupidGit')
157 self.istest(inspect.isframe, 'mod
[all...]
H A Dtest_pdb.py244 mod = imp.new_module('module_to_skip') variable
245 exec 'def foo_pony(callback): x = 1; callback(); return None' in mod.__dict__
255 ... mod.foo_pony(callback)
268 -> mod.foo_pony(callback)
283 -> mod.foo_pony(callback)
/prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/testdata/
H A Dlibmach8db.c81 uchar mod; /* bits 6-7 of mod r/m field */ member in struct:Instr
82 uchar reg; /* bits 3-5 of mod r/m field */
171 RMR, /* R/M register only (mod = 11) */
172 RMM, /* R/M memory only (mod = 0/1/2) */
1268 getdisp(Map *map, Instr *ip, int mod, int rm, int code, int pcrel) argument
1273 if (mod > 2)
1275 if (mod == 1) {
1282 } else if (mod == 2 || rm == code) {
1286 if (mod
1305 uchar rm, mod; local
[all...]
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/testdata/
H A Dlibmach8db.c81 uchar mod; /* bits 6-7 of mod r/m field */ member in struct:Instr
82 uchar reg; /* bits 3-5 of mod r/m field */
171 RMR, /* R/M register only (mod = 11) */
172 RMM, /* R/M memory only (mod = 0/1/2) */
1268 getdisp(Map *map, Instr *ip, int mod, int rm, int code, int pcrel) argument
1273 if (mod > 2)
1275 if (mod == 1) {
1282 } else if (mod == 2 || rm == code) {
1286 if (mod
1305 uchar rm, mod; local
[all...]

Completed in 960 milliseconds

1234567891011>>