HomeSort by relevance Sort by last modified time
    Searched refs:globs (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/swiftshader/third_party/subzero/pydir/
targets.py 19 globs = glob.glob('/usr/mipsel-linux-gnu/include/c++/*/mipsel-linux-gnu')
20 return globs[-1] if globs else '/invalid/mips/include/path'
  /build/blueprint/
glob.go 52 g, exists := c.globs[fileName]
69 if g, exists = c.globs[fileName]; !exists {
70 c.globs[fileName] = GlobPath{pattern, excludes, files, deps, fileName}
83 func (c *Context) Globs() []GlobPath {
84 fileNames := make([]string, 0, len(c.globs))
85 for k := range c.globs {
90 globs := make([]GlobPath, len(fileNames))
92 globs[i] = c.globs[fileName]
95 return globs
    [all...]
  /external/python/cpython2/Lib/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
506 - globs: The namespace (aka globals) that the examples should
523 def __init__(self, examples, globs, name, filename, lineno, docstring):
526 DocTest's globals are initialized with a copy of `globs`.
532 self.globs = globs.copy()
553 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
480 - globs: The namespace (aka globals) that the examples should
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
500 DocTest's globals are initialized with a copy of `globs`.
506 self.globs = globs.copy()
527 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
  /prebuilts/gdb/linux-x86/lib/python2.7/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
480 - globs: The namespace (aka globals) that the examples should
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
500 DocTest's globals are initialized with a copy of `globs`.
506 self.globs = globs.copy()
527 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
480 - globs: The namespace (aka globals) that the examples should
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
500 DocTest's globals are initialized with a copy of `globs`.
506 self.globs = globs.copy()
527 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
480 - globs: The namespace (aka globals) that the examples should
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
500 DocTest's globals are initialized with a copy of `globs`.
506 self.globs = globs.copy()
527 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
461 - globs: The namespace (aka globals) that the examples should
478 def __init__(self, examples, globs, name, filename, lineno, docstring):
481 DocTest's globals are initialized with a copy of `globs`.
487 self.globs = globs.copy()
601 def get_doctest(self, string, globs, name, filename, lineno):
606 `globs`, `name`, `filename`, and `lineno` are attributes for
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
serialization.py 56 globs = globals() # All layers.
57 globs['Model'] = models.Model
58 globs['Sequential'] = models.Sequential
61 module_objects=globs,
core.py 680 globs = globals()
682 globs = dict(list(globs.items()) + list(custom_objects.items()))
692 function = func_load(config['function'], globs=globs)
705 output_shape = func_load(config['output_shape'], globs=globs)
  /external/python/cpython3/Lib/
doctest.py 184 def _extract_future_flags(globs):
187 have been imported into the given namespace (globs).
191 feature = globs.get(fname, None)
505 - globs: The namespace (aka globals) that the examples should
522 def __init__(self, examples, globs, name, filename, lineno, docstring):
525 DocTest's globals are initialized with a copy of `globs`.
531 self.globs = globs.copy()
553 self.globs == other.globs and
    [all...]
cProfile.py 147 globs = {
153 runctx(code, globs, None, options.outfile, options.sort)
  /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
generic_utils.py 221 def func_load(code, defaults=None, closure=None, globs=None):
228 globs: dictionary of global objects.
264 if globs is None:
265 globs = globals()
267 code, globs, name=code.co_name, argdefs=defaults, closure=closure)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_parser.py 555 globs = {}
556 exec code in globs
557 self.assertEqual(globs['y'], 5)
  /external/python/cpython2/Lib/test/
test_parser.py 557 globs = {}
558 exec code in globs
559 self.assertEqual(globs['y'], 5)
  /external/v8/tools/testrunner/local/
testsuite.py 245 globs = []
256 globs.append(path)
260 for a in globs:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_parser.py 557 globs = {}
558 exec code in globs
559 self.assertEqual(globs['y'], 5)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_parser.py 557 globs = {}
558 exec code in globs
559 self.assertEqual(globs['y'], 5)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_parser.py 557 globs = {}
558 exec code in globs
559 self.assertEqual(globs['y'], 5)

Completed in 1227 milliseconds

1 2 3 4