HomeSort by relevance Sort by last modified time
    Searched refs:globals (Results 101 - 125 of 430) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
warnings.py 188 globals = sys.__dict__
191 globals = caller.f_globals
193 if '__name__' in globals:
194 module = globals['__name__']
197 filename = globals.get('__file__')
211 registry = globals.setdefault("__warningregistry__", {})
213 globals)
ihooks.py 362 def import_module(self, name, globals={}, locals={}, fromlist=[]):
404 def import_module(self, name, globals=None, locals=None, fromlist=None,
406 parent = self.determine_parent(globals, level)
415 def determine_parent(self, globals, level=-1):
416 if not globals or not level:
418 pkgname = globals.get('__package__')
424 modname = globals.get('__name__')
427 if "__path__" in globals:
436 globals['__package__'] = None
439 globals['__package__'] = pkgnam
    [all...]
hashlib.py 139 globals()[__func_name] = __get_hash(__func_name)
bdb.py 389 def run(self, cmd, globals=None, locals=None):
390 if globals is None:
392 globals = __main__.__dict__
394 locals = globals
400 exec cmd in globals, locals
407 def runeval(self, expr, globals=None, locals=None):
408 if globals is None:
410 globals = __main__.__dict__
412 locals = globals
418 return eval(expr, globals, locals
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 362 def import_module(self, name, globals={}, locals={}, fromlist=[]):
404 def import_module(self, name, globals=None, locals=None, fromlist=None,
406 parent = self.determine_parent(globals, level)
415 def determine_parent(self, globals, level=-1):
416 if not globals or not level:
418 pkgname = globals.get('__package__')
424 modname = globals.get('__name__')
427 if "__path__" in globals:
436 globals['__package__'] = None
439 globals['__package__'] = pkgnam
    [all...]
hashlib.py 139 globals()[__func_name] = __get_hash(__func_name)
bdb.py 389 def run(self, cmd, globals=None, locals=None):
390 if globals is None:
392 globals = __main__.__dict__
394 locals = globals
400 exec cmd in globals, locals
407 def runeval(self, expr, globals=None, locals=None):
408 if globals is None:
410 globals = __main__.__dict__
412 locals = globals
418 return eval(expr, globals, locals
    [all...]
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 33 // for use on one thread per process. Using TLS to store the globals removes the
41 ChannelGlobals* globals = g_channels_tls_ptr.Get().Get(); local
42 if (!globals) {
43 globals = new ChannelGlobals;
44 g_channels_tls_ptr.Get().Set(globals);
46 return globals;
  /external/chromium_org/chrome/browser/net/
dns_probe_browsertest.cc 353 IOThread::Globals* globals = io_thread_->globals(); local
354 original_dns_probe_service_ = globals->dns_probe_service.release();
355 globals->dns_probe_service.reset(delaying_dns_probe_service_);
370 IOThread::Globals* globals = io_thread_->globals(); local
372 globals->dns_probe_service.release());
373 globals->dns_probe_service.reset(original_dns_probe_service_)
    [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...]
  /packages/services/Telephony/src/com/android/phone/
OtaStartupReceiver.java 114 PhoneGlobals globals = PhoneGlobals.getInstanceIfPrimary(); local
115 if (globals == null) {
  /external/chromium_org/chrome/test/base/
testing_io_thread_state.cc 84 io_thread_state_->SetGlobalsForTesting(new IOThread::Globals());
92 delete io_thread_state_->globals();
  /external/chromium_org/third_party/freetype/src/pshinter/
pshglob.h 132 /* font globals. */
171 psh_globals_set_scale( PSH_Globals globals,
  /external/chromium_org/third_party/libxml/src/
xlink.c 40 #include <libxml/globals.h>
  /external/freetype/src/pshinter/
pshglob.h 132 /* font globals. */
171 psh_globals_set_scale( PSH_Globals globals,
  /external/libxml2/
xlink.c 40 #include <libxml/globals.h>
  /external/lldb/test/pexpect-2.4/examples/
script.py 30 print globals()['__doc__']
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
pshglob.h 132 /* font globals. */
171 psh_globals_set_scale( PSH_Globals globals,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 100 drv_module = imp.importName(parser_name, 0, globals())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 100 drv_module = imp.importName(parser_name, 0, globals())
  /external/chromium_org/chrome/browser/
io_thread.h 80 struct Globals {
103 explicit SystemRequestContextLeakChecker(Globals* globals);
107 Globals* const globals_;
110 Globals();
111 ~Globals();
202 Globals* globals();
204 // Allows overriding Globals in tests where IOThread::Init() and
207 void SetGlobalsForTesting(Globals* globals)
    [all...]
  /external/chromium_org/ppapi/proxy/
ppp_instance_proxy.cc 192 PpapiGlobals* globals = PpapiGlobals::Get(); local
193 globals->GetResourceTracker()->DidDeleteInstance(instance);
194 globals->GetVarTracker()->DidDeleteInstance(instance);
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86_64-xlate.pl 102 my %globals;
241 $self->{label} =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
350 my $func = ($globals{$self->{value}} or $self->{value}) . ":";
409 $self->{value} =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
453 && do { $globals{$line} = $prefix . $line;
454 $line = $globals{$line} if ($prefix);
463 $current_function->{scope} = defined($globals{$sym})?"PUBLIC":"PRIVATE";
467 $current_function->{scope} = defined($globals{$sym})?"PUBLIC":"PRIVATE";
480 && do { $line =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
493 $self->{value} = ".def\t" . ($globals{$1} or $1) . ";\t"
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 102 my %globals;
241 $self->{label} =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
350 my $func = ($globals{$self->{value}} or $self->{value}) . ":";
409 $self->{value} =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
453 && do { $globals{$line} = $prefix . $line;
454 $line = $globals{$line} if ($prefix);
463 $current_function->{scope} = defined($globals{$sym})?"PUBLIC":"PRIVATE";
467 $current_function->{scope} = defined($globals{$sym})?"PUBLIC":"PRIVATE";
480 && do { $line =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
493 $self->{value} = ".def\t" . ($globals{$1} or $1) . ";\t"
    [all...]

Completed in 1433 milliseconds

1 2 3 45 6 7 8 91011>>