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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 39 def __init__(self, *args, **kwargs):
40 self._cobj = db.DBEnv(*args, **kwargs)
42 def close(self, *args, **kwargs):
43 return self._cobj.close(*args, **kwargs)
44 def open(self, *args, **kwargs):
45 return self._cobj.open(*args, **kwargs)
46 def remove(self, *args, **kwargs):
47 return self._cobj.remove(*args, **kwargs)
48 def set_shm_key(self, *args, **kwargs):
49 return self._cobj.set_shm_key(*args, **kwargs)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 39 def __init__(self, *args, **kwargs):
40 self._cobj = db.DBEnv(*args, **kwargs)
42 def close(self, *args, **kwargs):
43 return self._cobj.close(*args, **kwargs)
44 def open(self, *args, **kwargs):
45 return self._cobj.open(*args, **kwargs)
46 def remove(self, *args, **kwargs):
47 return self._cobj.remove(*args, **kwargs)
48 def set_shm_key(self, *args, **kwargs):
49 return self._cobj.set_shm_key(*args, **kwargs)
    [all...]
  /external/skia/tools/
bench_pictures_cfg_helper.py 9 def Config(**kwargs):
11 for key in kwargs:
12 config[key] = kwargs[key]
23 def BitmapConfig(**kwargs):
24 return Config(config='8888', **kwargs)
27 def GPUConfig(**kwargs):
28 return Config(config='gpu', **kwargs)
31 def TiledBitmapConfig(tile_x, tile_y, timeIndividualTiles=True, **kwargs):
33 timeIndividualTiles=timeIndividualTiles).items() + kwargs.items()))
36 def TiledGPUConfig(tile_x, tile_y, **kwargs)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 11 unlike OptionMenu, our kwargs can include highlightthickness
13 def __init__(self, master, variable, value, *values, **kwargs):
14 #get a copy of kwargs before OptionMenu.__init__ munges them
15 kwargsCopy=copy.copy(kwargs)
16 if 'highlightthickness' in kwargs.keys():
17 del(kwargs['highlightthickness'])
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
22 self.command=kwargs.get('command')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 11 unlike OptionMenu, our kwargs can include highlightthickness
13 def __init__(self, master, variable, value, *values, **kwargs):
14 #get a copy of kwargs before OptionMenu.__init__ munges them
15 kwargsCopy=copy.copy(kwargs)
16 if 'highlightthickness' in kwargs.keys():
17 del(kwargs['highlightthickness'])
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
22 self.command=kwargs.get('command')
  /external/chromium_org/tools/grit/grit/
lazy_re.py 23 def __init__(self, *args, **kwargs):
25 self._stash_kwargs = kwargs
40 def compile(*args, **kwargs):
45 return LazyRegexObject(*args, **kwargs)
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chrome011010.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
28 kwargs: miscellaneous keyword args
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
chrome01970.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
28 kwargs: miscellaneous keyword args
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
chromebase.py 50 def Scrape(urls, outdir, size, pos, timeout, kwargs):
59 kwargs: miscellaneous keyword args
64 if "path" in kwargs and kwargs["path"]: path = kwargs["path"]
94 if "filename" in kwargs:
95 if callable(kwargs["filename"]):
96 filename = kwargs["filename"](url)
98 filename = kwargs["filename"]
118 def Time(urls, size, timeout, kwargs)
    [all...]
  /external/chromium_org/third_party/jinja2/
visitor.py 34 def visit(self, node, *args, **kwargs):
38 return f(node, *args, **kwargs)
39 return self.generic_visit(node, *args, **kwargs)
41 def generic_visit(self, node, *args, **kwargs):
44 self.visit(node, *args, **kwargs)
58 def generic_visit(self, node, *args, **kwargs):
64 value = self.visit(value, *args, **kwargs)
73 new_node = self.visit(old_value, *args, **kwargs)
80 def visit_list(self, node, *args, **kwargs):
84 rv = self.visit(node, *args, **kwargs)
    [all...]
  /external/chromium_org/tools/site_compare/operators/
equals.py 11 def Compare(file1, file2, **kwargs):
17 kwargs: unused for this operator
23 kwargs = kwargs # unused parameter
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
extras.py 46 def toDOT(*args, **kwargs):
  /external/chromium_org/build/android/pylib/utils/
command_option_parser.py 18 def __init__(self, *args, **kwargs):
28 self.commands_dict = kwargs.pop('commands_dict', {})
29 self.example = kwargs.pop('example', '')
30 if not 'usage' in kwargs:
31 kwargs['usage'] = 'Usage: %prog <command> [options]'
32 optparse.OptionParser.__init__(self, *args, **kwargs)
timeout_retry.py 14 def Run(func, timeout, retries, args=[], kwargs={}):
22 kwargs: dictionary of keyword args to pass to |func|.
25 The return value of func(*args, **kwargs).
32 ret[0] = func(*args, **kwargs)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
mocktool.py 38 # FIXME: We should just replace this with optparse.Values(default=kwargs)
42 def __init__(self, **kwargs):
48 self.update(**kwargs)
50 def update(self, **kwargs):
51 self.__dict__.update(**kwargs)
62 def __init__(self, *args, **kwargs):
63 MockHost.__init__(self, *args, **kwargs)
  /external/chromium/third_party/libjingle/source/talk/site_scons/
talk.py 13 def _GenericLibrary(env, static, **kwargs):
19 kwargs: The keyword arguments.
24 params = CombineDicts(kwargs, {'COMPONENT_STATIC': static})
28 def Library(env, **kwargs):
34 kwargs: The keyword arguments.
39 return _GenericLibrary(env, True, **kwargs)
42 def DynamicLibrary(env, **kwargs):
48 kwargs: The keyword arguments.
53 return _GenericLibrary(env, False, **kwargs)
56 def Object(env, **kwargs)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
systemhost.py 47 def print_(self, *args, **kwargs):
48 sep = kwargs.get('sep', ' ')
49 end = kwargs.get('end', '\n')
50 file = kwargs.get('file', None)
51 stderr = kwargs.get('stderr', False)
systemhost_mock.py 58 def print_(self, *args, **kwargs):
59 sep = kwargs.get('sep', ' ')
60 end = kwargs.get('end', '\n')
61 file = kwargs.get('file', None)
62 stderr = kwargs.get('stderr', False)
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 23 kwargs = {}
24 kwargs['name'] = items.get_string('name')
25 kwargs['parent'] = items.get_optional_string('parent')
27 kwargs['dependencies'] = items.get_list('dependencies')
28 return kwargs
96 kwargs = ComponentInfo.parse_items(items, has_dependencies = False)
97 return GroupComponentInfo(subpath, **kwargs)
114 kwargs = ComponentInfo.parse_items(items)
115 kwargs['library_name'] = items.get_optional_string('library_name')
116 kwargs['required_libraries'] = items.get_list('required_libraries'
    [all...]
  /external/chromium_org/tools/site_compare/scrapers/firefox/
firefox2.py 76 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
85 kwargs: miscellaneous keyword args
90 if "path" in kwargs and kwargs["path"]: path = kwargs["path"]
132 if "filename" in kwargs:
133 if callable(kwargs["filename"]):
134 filename = kwargs["filename"](url)
136 filename = kwargs["filename"]
152 def Time(urls, size, timeout, **kwargs)
    [all...]
  /external/chromium_org/tools/site_compare/scrapers/ie/
ie7.py 67 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
76 kwargs: miscellaneous keyword args
83 if "path" in kwargs and kwargs["path"]: path = kwargs["path"]
115 if "filename" in kwargs:
116 if callable(kwargs["filename"]):
117 filename = kwargs["filename"](url)
119 filename = kwargs["filename"]
130 def Time(urls, size, timeout, **kwargs)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t026actions.py 9 def __init__(self, *args, **kwargs):
10 base.__init__(self, *args, **kwargs)
29 def __init__(self, *args, **kwargs):
30 base.__init__(self, *args, **kwargs)
  /external/chromium_org/build/android/gyp/util/
build_device.py 31 def RunShellCommand(self, *args, **kwargs):
32 return self.adb.RunShellCommand(*args, **kwargs)
34 def PushIfNeeded(self, *args, **kwargs):
35 return self.adb.PushIfNeeded(*args, **kwargs)
40 def Install(self, *args, **kwargs):
41 return self.adb.Install(*args, **kwargs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py     [all...]

Completed in 366 milliseconds

1 2 3 4 5 6 7 8 91011>>