/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_suite.py | 319 class Module(object): 324 Module.wasSetUp = True 327 Module.wasTornDown = True 329 Test.__module__ = 'Module' 330 sys.modules['Module'] = Module 331 self.addCleanup(sys.modules.pop, 'Module') 339 self.assertFalse(Module.wasSetUp) 340 self.assertFalse(Module.wasTornDown)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 2 # This module should be kept compatible with Python 2.2, see PEP 291. 51 class Module: 58 # The set of global names that are assigned to in the module. 62 # The set of starimports this module did that could not be 63 # resolved, ie. a starimport from a non-Python module. 67 s = "Module(%r" % (self.__name__,) 193 self.msgout(4, "raise ImportError: No module named", qname) 194 raise ImportError, "No module named " + qname 206 self.msgout(4, "raise ImportError: No module named", mname) 207 raise ImportError, "No module named " + mnam [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 39 'test.foo', 'test-not-a-module.py', 'another_dir'], 55 loader._get_module_from_name = lambda path: path + ' module' 56 loader.loadTestsFromModule = lambda module: module + ' tests' 62 expected = [name + ' module tests' for name in 64 expected.extend([('test_dir.%s' % name) + ' module tests' for name in 92 class Module(object): 111 loader._get_module_from_name = lambda name: Module(name) 112 def loadTestsFromModule(module, use_load_tests): 115 return module.path + ' module tests [all...] |
test_result.py | 534 class Module(object): 539 Foo.__module__ = 'Module' 540 sys.modules['Module'] = Module 541 self.addCleanup(sys.modules.pop, 'Module') 553 class Module(object): 558 Foo.__module__ = 'Module' 559 sys.modules['Module'] = Module 560 self.addCleanup(sys.modules.pop, 'Module') [all...] |
test_setups.py | 239 Test1.__module__ = Test2.__module__ = 'Module' 241 sys.modules['Module'] = Module1 267 class Module(object): 271 Module.moduleSetup += 1 278 Test.__module__ = 'Module' 279 sys.modules['Module'] = Module 282 self.assertEqual(Module.moduleSetup, 1) 287 class Module(object): 292 Module.moduleSetup += [all...] |
test_suite.py | 319 class Module(object): 324 Module.wasSetUp = True 327 Module.wasTornDown = True 329 Test.__module__ = 'Module' 330 sys.modules['Module'] = Module 331 self.addCleanup(sys.modules.pop, 'Module') 339 self.assertFalse(Module.wasSetUp) 340 self.assertFalse(Module.wasTornDown)
|
/external/chromium_org/chrome/browser/ |
enumerate_modules_model_win.h | 26 // A helper class that implements the enumerate module functionality on the File 30 // What type of module we are dealing with. Loaded modules are modules we 40 // The blacklist status of the module. Suspected Bad modules have been 46 // blacklist and the module does not match the current entry in the 49 // The module is not on the blacklist. Assume it is good. 51 // Module is a suspected bad module. 53 // Module is a bad bad dog. 75 struct Module { 76 // The type of module foun [all...] |
/external/clang/lib/Lex/ |
HeaderSearch.cpp | 112 std::string HeaderSearch::getModuleFileName(Module *Module) { 113 // If we don't have a module cache path, we can't do anything. 119 llvm::sys::path::append(Result, Module->getTopLevelModule()->Name + ".pcm"); 124 // If we don't have a module cache path, we can't do anything. 134 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) { 135 // Look in the module map to determine if there is a module by this name. 136 Module *Module = ModMap.findModule(ModuleName) [all...] |
/external/smack/src/org/apache/harmony/javax/security/auth/login/ |
LoginContext.java | 83 private Module[] modules; 168 modules = new Module[entries.length]; 170 modules[i] = new Module(entries[i]); 266 for (Module module : modules) { 268 // if a module fails during Class.forName(), then it breaks overall 270 module.create(subject, callbackHandler, sharedState); 272 if (module.module.login()) { 273 ++total[module.getFlag()] 492 LoginModule module; field in class:LoginContext.Module [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
input.py | 9 from compiler.ast import Module 162 assert isinstance(ast, Module) 861 # python module and then calls that module's DoMain() function, 875 "module (%s): %s" % (parsed_contents[0], e)) [all...] |
/external/llvm/include/llvm/IR/ |
Module.h | 1 //===-- llvm/Module.h - C++ class to represent a VM module ------*- C++ -*-===// 11 /// Module.h This file contains the declarations for the Module class. 36 : public SymbolTableListTraits<Function, Module> { 54 : public SymbolTableListTraits<GlobalVariable, Module> { 69 : public SymbolTableListTraits<GlobalAlias, Module> { 101 /// A Module instance is used to store all the information related to an 102 /// LLVM module. Modules are the top level container of all other LLVM 103 /// Intermediate Representation (IR) objects. Each module directly contains [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 953 class Module(Node): 966 return "Module(%s, %s)" % (repr(self.doc), repr(self.node)) [all...] |
pycodegen.py | 41 mod = Module(buf, filename) 59 gen = Module(source, filename) 107 class Module(AbstractCompileMode): [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 953 class Module(Node): 966 return "Module(%s, %s)" % (repr(self.doc), repr(self.node)) [all...] |
pycodegen.py | 41 mod = Module(buf, filename) 59 gen = Module(source, filename) 107 class Module(AbstractCompileMode): [all...] |
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 58 class Module; 112 /// \brief The module we're currently writing, if any. 113 Module *WritingModule; 412 llvm::DenseMap<Module *, unsigned> SubmoduleIDs; 414 /// \brief Retrieve or create a submodule ID for this module. 415 unsigned getSubmoduleID(Module *Mod); 435 void WriteSubmodules(Module *WritingModule); 480 Module *WritingModule); 493 /// \param WritingModule The module that we are writing. If null, we are 500 Module *WritingModule, StringRef isysroot [all...] |
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | 245 // Set up the module path, including the hash for the 246 // module-creation options. 752 /// \brief Helper function that executes the module-generating action under 777 /// \brief Compile a module file for the given module, using the options 781 Module *Module, 794 // We're responsible for building the module ourselves. Do so below. 798 // Someone else is responsible for building the module. Wait for them to 807 // Construct a compiler invocation for creating this module [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
Python-ast.h | 45 } Module; 163 identifier module; member in struct:_stmt::__anon63088::__anon63105 375 #define Module(a0, a1) _Py_Module(a0, a1) 433 stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
Python-ast.h | 45 } Module; 163 identifier module; member in struct:_stmt::__anon63211::__anon63228 375 #define Module(a0, a1) _Py_Module(a0, a1) 433 stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
|
/external/chromium_org/v8/tools/profviz/ |
gnuplot-4.6.3-emscripten.js | 51 var Module = { 64 this['Module'] = Module; 65 Module.test; 67 this['Module'] = Module = {}; 69 // The environment setup code below is customized to use Module. 75 if (typeof module === "object") { 76 module.exports = Module; [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm.ml | 20 module TypeKind = struct 39 module Linkage = struct 58 module Visibility = struct 65 module CallConv = struct 73 module Attribute = struct 103 module Icmp = struct 117 module Fcmp = struct 137 module Opcode = struct 208 module ValueKind = struct [all...] |
/external/chromium_org/tools/win/split_link/viz.js/ |
viz.js | 2 var Module = {}; 3 Module["return"] = ""; 4 Module["print"] = function(text) { 5 Module["return"] += text + "\n"; 10 this['Module'] = Module; 12 this['Module'] = Module = {}; 14 // The environment setup code below is customized to use Module. 23 Module['print'] = function(x) [all...] |
/external/clang/lib/CodeGen/ |
CGObjCGNU.cpp | 1 //===------- CGObjCGNU.cpp - Emit LLVM Code from ASTs for a Module --------===// 33 #include "llvm/IR/Module.h" 45 /// types and the function declaration into a module if they're not used, and 104 /// The LLVM module into which output is inserted 105 llvm::Module &TheModule; 290 /// module. 295 /// emitting the / module. 312 /// string. Selector references are all done via the module's selector table, [all...] |
/external/clang/lib/Sema/ |
SemaDeclAttr.cpp | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_descr.py | 303 @test_support.impl_detail("the module 'xxsubtype' is internal") 347 @test_support.impl_detail("the module 'xxsubtype' is internal") 646 # Testing Python subclass of module... 671 class Module(types.ModuleType, str): [all...] |