HomeSort by relevance Sort by last modified time
    Searched full:globals (Results 251 - 275 of 2456) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 54 globals()["anonymous"] = func
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
import.h 19 PyObject *globals, PyObject *locals, PyObject *fromlist, int level);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 54 globals()["anonymous"] = func
  /toolchain/binutils/binutils-2.25/gold/testsuite/
pie_copyrelocs_test.cc 23 // Check if copy relocs are used to access globals below when -fpie is
  /toolchain/binutils/binutils-2.25/ld/emultempl/
solaris2.em 82 struct bfd_elf_version_expr *globals = NULL, *locals = NULL;
90 globals = lang_new_vers_pattern (globals, *sym, NULL, TRUE);
95 basever = lang_new_vers_node (globals, locals);
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 50 DeleteFn("delete", cl::desc("Delete specified Globals from Module"));
77 // ExtractGlobals - The globals to extract from the module.
82 // ExtractRegExpGlobals - The globals, matched via regular expression, to
158 // Figure out which globals we should extract.
169 // Extract globals via regular expression matching.
178 for (auto &GV : M->globals()) {
262 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
symbols.py 21 self.globals = {}
58 self.globals[name] = 1
70 d.update(self.globals)
81 print >> sys.stderr, "\tglobals: ", self.globals
92 if name in self.globals:
111 if name not in self.defs and name not in self.globals:
118 globals = self.add_frees(frees)
119 for name in globals:
135 self.globals[name] = 1
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
symbols.py 21 self.globals = {}
58 self.globals[name] = 1
70 d.update(self.globals)
81 print >> sys.stderr, "\tglobals: ", self.globals
92 if name in self.globals:
111 if name not in self.defs and name not in self.globals:
118 globals = self.add_frees(frees)
119 for name in globals:
135 self.globals[name] = 1
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 21 self.globals = {}
58 self.globals[name] = 1
70 d.update(self.globals)
81 print >> sys.stderr, "\tglobals: ", self.globals
92 if name in self.globals:
111 if name not in self.defs and name not in self.globals:
118 globals = self.add_frees(frees)
119 for name in globals:
135 self.globals[name] = 1
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 21 self.globals = {}
58 self.globals[name] = 1
70 d.update(self.globals)
81 print >> sys.stderr, "\tglobals: ", self.globals
92 if name in self.globals:
111 if name not in self.defs and name not in self.globals:
118 globals = self.add_frees(frees)
119 for name in globals:
135 self.globals[name] = 1
147 the nested scope should treat them as globals
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
jinja2.py 39 #: globals
55 'globals': None,
125 if config['globals']:
126 env.globals.update(config['globals'])
  /external/libavc/decoder/
ih264d_sei.c 56 /* Globals : None */
134 /* Globals : None */
214 /* Globals : None */
256 /* Globals : None */
313 /* Globals : None */
  /external/llvm/include/llvm/Transforms/IPO/
LowerBitSets.h 83 /// This class implements a layout algorithm for globals referenced by bit sets
87 /// It works by assembling fragments of layout from sets of referenced globals.
88 /// Each set of referenced globals causes the algorithm to create a new
96 /// thought about when considering the case where the globals are virtual tables
127 /// indices of its referenced globals. It then assembles a layout from the
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 193 * SymbolTable.g:25:1: prog : globals ( method )* ;
201 // SymbolTable.g:27:5: ( globals ( method )* ) // ruleBlockSingleAlt
202 // SymbolTable.g:27:9: globals ( method )* // alt
206 [self globals];
261 * $ANTLR start globals
262 * SymbolTable.g:30:1: globals : ( decl )* ;
264 - (void) globals
309 NSLog( @"globals: %@", [((Symbols_Scope *)[Symbols_stack peek]).names toString] );
331 /* $ANTLR end globals */
  /external/libxml2/doc/html/
index.sgml     [all...]
libxml.devhelp 38 <sub name="globals" link="libxml-globals.html"/>
    [all...]
  /external/opencv3/3rdparty/jinja2/
loaders.py 100 def load(self, environment, name, globals=None):
108 if globals is None:
109 globals = {}
135 globals, uptodate)
349 def load(self, environment, name, globals=None):
392 def load(self, environment, name, globals=None):
395 return loader.load(environment, name, globals)
456 def load(self, environment, name, globals=None):
471 environment, mod.__dict__, globals)
  /external/skia/src/core/
SkGlyphCache.cpp 25 // Returns the shared globals
26 SK_DECLARE_STATIC_ONCE_PTR(SkGlyphCache_Globals, globals);
28 return *globals.get([]{ return new SkGlyphCache_Globals; });
519 SkGlyphCache_Globals& globals = get_globals();
523 Exclusive ac(globals.fLock);
525 globals.validate();
527 for (cache = globals.internalGetHead(); cache != nullptr; cache = cache->fNext) {
529 globals.internalDetachCache(cache);
531 globals.internalAttachCacheToHead(cache);
557 globals.attachCacheToHead(cache)
    [all...]
  /external/v8/src/wasm/
wasm-module.cc 27 if (module.globals) os << module.functions->size() << " globals";
156 size_t AllocateGlobalsOffsets(std::vector<WasmGlobal>* globals) {
158 if (!globals) return 0;
159 for (WasmGlobal& global : *globals) {
219 : globals(nullptr),
227 if (globals) delete globals;
296 // Allocate the globals area if necessary.
298 size_t globals_size = AllocateGlobalsOffsets(globals);
    [all...]
  /bionic/libc/bionic/
libc_init_common.cpp 90 // Initialize libc globals that are needed in both the linker and in libc.
92 // globals, once for the linker's copy and once for the one in libc.so.
96 __libc_globals.mutate([&args](libc_globals* globals) {
97 __libc_init_vdso(globals, args);
98 __libc_init_setjmp_cookie(globals, args);
103 // Initialize various globals.
vdso.cpp 49 void __libc_init_vdso(libc_globals* globals, KernelArgumentBlock& args) {
50 auto&& vdso = globals->vdso;
  /external/libxml2/win32/wince/
libxml2.vcp 260 "..\..\include\libxml\globals.h"\
295 "..\..\include\libxml\globals.h"\
328 "..\..\include\libxml\globals.h"\
374 "..\..\include\libxml\globals.h"\
407 "..\..\include\libxml\globals.h"\
447 "..\..\include\libxml\globals.h"\
482 "..\..\include\libxml\globals.h"\
515 "..\..\include\libxml\globals.h"\
561 "..\..\include\libxml\globals.h"\
595 "..\..\include\libxml\globals.h"
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
dlclose-test.cc 5 // 2. asan registers all globals from foo.so
9 // are globals.
  /external/google-breakpad/src/testing/gtest/msvc/
gtest_prod_test-md.vcproj 162 <Globals>
163 </Globals>
gtest_prod_test.vcproj 162 <Globals>
163 </Globals>

Completed in 522 milliseconds

<<11121314151617181920>>