/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_importhooks.py | 247 m = __import__(mname, globals(), locals(), ["__dummy__"])
|
test_pkg.py | 65 exec(textwrap.dedent(code), globals(), {"self": self})
|
test_tools.py | 363 test_support.run_unittest(*[obj for obj in globals().values()
|
test_compile.py | 106 g = globals() 117 exec 'z = globals()' in g, m 126 self.fail('Did not validate globals as a real dict')
|
test_doctest.py | 296 >>> globs = {} # globals to run the test in. [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 507 def runctx(self, cmd, globals=None, locals=None): 508 if globals is None: globals = {} 513 exec cmd in globals, locals
|
rexec.py | 16 - r_exec etc. with explicit globals/locals? (Use rexec("exec ... in ...")?) 338 def r_import(self, mname, globals={}, locals={}, fromlist=[]): 347 return self.importer.import_module(mname, globals, locals, fromlist)
|
/external/chromium_org/remoting/tools/build/ |
remoting_localize.py | 26 Globals: 703 env.globals['IsRtlLanguage'] = IsRtlLanguage 704 env.globals['SelectLanguage'] = message_map.MakeSelectLanguage()
|
/external/chromium_org/third_party/jinja2/ |
ext.py | 169 environment.globals['_'] = _gettext_alias 201 self.environment.globals.update( 208 self.environment.globals.pop(key, None)
|
/external/chromium_org/third_party/libxml/src/win32/ |
Makefile | 110 $(XML_INTDIR)\globals.obj\ 155 $(XML_INTDIR_A)\globals.obj\ 200 $(XML_INTDIR_A_DLL)\globals.obj\
|
Makefile.msvc | 110 $(XML_INTDIR)\globals.obj\ 155 $(XML_INTDIR_A)\globals.obj\ 200 $(XML_INTDIR_A_DLL)\globals.obj\
|
/external/grub/netboot/ |
natsemi.c | 185 /* Globals */ 239 * globals required by other routines, and initializes the NIC, making it 259 /* initialize some commonly used globals */
|
/external/llvm/include/llvm/ExecutionEngine/ |
ExecutionEngine.h | 181 /// \param GVsWithCode - Allocating globals with code breaks 294 /// for use in dynamic compilation scenarios to move globals. 606 /// to false. Allocating globals with code breaks freeMachineCodeForFunction
|
/external/netperf/ |
nettest_unix.c | 798 /* variables, so set the globals based on the values in the request. */ 800 /* based on the updated value of those globals. raj 7/94 */ 913 /* the socket parms from the globals */ [all...] |
nettest_sctp.c | [all...] |
/external/valgrind/unittest/ |
posix_tests.cc | 656 // Worker1 locks the globals for writing for a long time. 657 // Worker2 tries to write to globals twice: without a writer lock and with it. 658 // Worker3 tries to read from globals twice: without a reader lock and with it.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
rexec.py | 16 - r_exec etc. with explicit globals/locals? (Use rexec("exec ... in ...")?) 338 def r_import(self, mname, globals={}, locals={}, fromlist=[]): 347 return self.importer.import_module(mname, globals, locals, fromlist)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_compile.py | 106 g = globals() 117 exec 'z = globals()' in g, m 126 self.fail('Did not validate globals as a real dict')
|
test_doctest.py | 296 >>> globs = {} # globals to run the test in. [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
MemRegion.h | 262 /// globals, we invalidate the whole parent region). 279 /// \brief The region containing globals which are defined in system/external 296 /// \brief The region containing globals which are considered not to be modified 299 /// this region. This region also includes most system globals since they have 316 /// \brief The region containing globals which can be modified by calls to [all...] |
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngine.cpp | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
pycodegen.py | 138 self.globals = misc.Set() 145 for elt in self.globals.elements(): 155 self.globals.add(name) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
pycodegen.py | 138 self.globals = misc.Set() 145 for elt in self.globals.elements(): 155 self.globals.add(name) [all...] |
/external/llvm/docs/ |
Passes.rst | 72 A basic alias analysis pass that implements identities (two different globals 166 ``-globalsmodref-aa``: Simple mod/ref analysis for globals 567 This transform is designed to eliminate unreachable internal globals from the 568 program. It uses an aggressive algorithm, searching out globals that are known 569 to be alive. After it finds all of the globals which are needed, it deletes 577 taken. If obviously true, it marks read/write globals as constant, deletes [all...] |
/external/llvm/lib/CodeGen/ |
TargetLoweringObjectFileImpl.cpp | 511 // If the user declared multiple globals with different section flags, we need 568 // Put zero initialized globals with strong external linkage in the 573 // Put zero initialized globals with local linkage in __DATA,__bss directive
|