/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
rexec.py | 54 return getattr(self.mod, self.name).%s(*args) 59 def __init__(self, mod, name): 60 self.mod = mod
|
DocXMLRPCServer.py | 67 def docroutine(self, object, name, mod=None,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_py3kwarn.py | 396 mod = __import__(path_mod) 397 reset_module_registry(mod) 399 mod.walk("crashers", dumbo, None)
|
regrtest.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
regrtest.py | [all...] |
/external/chromium_org/chrome_frame/ |
utils.cc | 392 HMODULE mod = GetModuleHandle(NULL); local 393 GetModuleFileName(mod, exe_path, arraysize(exe_path) - 1); 400 if (GetModuleVersion(mod, &high, &low)) { 507 HMODULE mod = ::GetModuleHandleA("ieframe.dll"); local 508 if (!mod) 509 mod = ::GetModuleHandleA("shdocvw.dll"); 511 if (!mod) { 518 ::GetProcAddress(mod, "DoFileDownload")); [all...] |
/external/clang/lib/Serialization/ |
ModuleManager.cpp | 162 if (Module *mod = modMap->findModule(ModuleName)) { 163 mod->setASTFile(0);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar | |
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysevents.cc | 337 it seems SDL_PrivateKeyboard() changes mod value 339 keysym.mod = KMOD_NONE; 369 keysym.mod = KMOD_NONE; /* FIX THIS? */
|
/external/qemu/distrib/sdl-1.2.15/src/video/svga/ |
SDL_svgaevents.c | 341 keysym->mod = KMOD_NONE; 384 keysym->mod = KMOD_NONE;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_fixers.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_fixers.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
pycodegen.py | 41 mod = Module(buf, filename) 43 mod.compile(display) 48 mod.dump(f) 910 mod = name.split(".")[0] 915 self.storeName(mod) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
pycodegen.py | 41 mod = Module(buf, filename) 43 mod.compile(display) 48 mod.dump(f) 910 mod = name.split(".")[0] 915 self.storeName(mod) [all...] |
/external/dropbear/libtommath/ |
bn.tex | 24 \def\mod{{\mathit\ mod\ }} 25 \renewcommand{\pmod}[1]{\ ({\rm mod\ }{#1})} 362 mp_div(&a, &b, &c, &d); /* c = [a/b], d = a mod b */ 370 mp_div(&a, &b, &a, &c); /* a = [a/b], c = a mod b */ [all...] |
/art/compiler/utils/x86/ |
assembler_x86.h | 51 uint8_t mod() const { function in class:art::x86::Operand 92 void SetModRM(int mod, Register rm) { 93 CHECK_EQ(mod & ~3, 0); 94 encoding_[0] = (mod << 6) | rm;
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathParser.cpp | 123 // (* (multiply), div, and, or, mod) in the [32] Operator rule 338 if (name == "mod")
|
/external/chromium_org/third_party/jinja2/ |
sandbox.py | 202 '%': operator.mod
|
/external/guava/guava/src/com/google/common/math/ |
IntMath.java | 306 * Returns {@code x mod m}. This differs from {@code x % m} in that it always returns a 311 * mod(7, 4) == 3 312 * mod(-7, 4) == 1 313 * mod(-1, 4) == 3 314 * mod(-8, 4) == 0 315 * mod(8, 4) == 0}</pre> 319 public static int mod(int x, int m) { method
|
/external/llvm/include/llvm/ADT/ |
APFloat.h | 300 opStatus mod(const APFloat &, roundingMode);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
SDL_atarievents.c | 221 keysym->mod = KMOD_NONE;
|
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_events.c | 195 keysym->mod = KMOD_NONE; /* FIXME */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
DocXMLRPCServer.py | 67 def docroutine(self, object, name, mod=None,
|
/external/qemu/tcg/i386/ |
tcg-target.c | 419 int mod, len; local 459 mod = 0, len = 4, rm = 5; 461 mod = 0, len = 0; 463 mod = 0x40, len = 1; 465 mod = 0x80, len = 4; 473 tcg_out8(s, mod | (LOWREGMASK(r) << 3) | LOWREGMASK(rm)); 487 tcg_out8(s, mod | (LOWREGMASK(r) << 3) | 4); [all...] |
/frameworks/compile/mclinker/tools/llvm-mcld/ |
llvm-mcld.cpp | 1361 Module &mod = *M.get(); local [all...] |