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

1 2 3

  /external/chromium_org/build/android/pylib/
screenshot.py 40 self._args = ['adb']
42 self._args += ['-s', str(self._device)]
43 self._args += ['shell', 'screenrecord', '--verbose']
44 self._args += ['--bit-rate', str(megabits_per_second * 1000 * 1000)]
46 self._args += ['--size', '%dx%d' % size]
48 self._args += ['--rotate']
49 self._args += [self._device_file]
55 self._args, stdout=open(self._recorder_stdout, 'w'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbutils.py 47 def DeadlockWrap(function, *_args, **_kwargs):
48 """DeadlockWrap(function, *_args, **_kwargs) - automatically retries
68 return function(*_args, **_kwargs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbutils.py 47 def DeadlockWrap(function, *_args, **_kwargs):
48 """DeadlockWrap(function, *_args, **_kwargs) - automatically retries
68 return function(*_args, **_kwargs)
  /external/chromium_org/third_party/skia/gm/
copy_config.py 46 self._args = args
52 old=self._args.old_config_name,
53 new=self._args.new_config_name)
78 root = self._args.expectations_root
79 regex = re.compile(self._args.builder_name_pattern)
rename_config.py 46 self._args = args
52 old=self._args.old_config_name,
53 new=self._args.new_config_name)
78 root = self._args.expectations_root
79 regex = re.compile(self._args.builder_name_pattern)
  /external/chromium_org/gpu/command_buffer/service/
mocks.cc 37 const void* _args) {
42 static_cast<const cmd::SetToken*>(_args);
mocks.h 45 bool operator() (const void* _args) const {
47 static_cast<const CommandBufferEntry*>(_args) + 1;
80 const void* _args);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prlog.h 206 #define PR_LOG(_module,_level,_args) \
209 PR_LogPrint _args; \
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
mt_test_common.h 32 _args(args),
39 CmdArgs _args; member in class:webrtc::SendSharedState
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shelve.py 118 x= shelve.Shelf({}, **self._args)
121 x= shelve.open(self.fn+str(self.counter), **self._args)
133 _args={'protocol':0} variable in class:TestAsciiFileShelve
136 _args={'protocol':1} variable in class:TestBinaryFileShelve
139 _args={'protocol':2} variable in class:TestProto2FileShelve
142 _args={'protocol':0} variable in class:TestAsciiMemShelve
145 _args={'protocol':1} variable in class:TestBinaryMemShelve
148 _args={'protocol':2} variable in class:TestProto2MemShelve
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shelve.py 118 x= shelve.Shelf({}, **self._args)
121 x= shelve.open(self.fn+str(self.counter), **self._args)
133 _args={'protocol':0} variable in class:TestAsciiFileShelve
136 _args={'protocol':1} variable in class:TestBinaryFileShelve
139 _args={'protocol':2} variable in class:TestProto2FileShelve
142 _args={'protocol':0} variable in class:TestAsciiMemShelve
145 _args={'protocol':1} variable in class:TestBinaryMemShelve
148 _args={'protocol':2} variable in class:TestProto2MemShelve
  /frameworks/native/opengl/libs/EGL/
trace.cpp 328 #define TRACE_GL_VOID(_api, _args, _argList, ...) \
329 static void Tracing_ ## _api _args { \
335 #define TRACE_GL(_type, _api, _args, _argList, ...) \
336 static _type Tracing_ ## _api _args { \
370 #define TRACE_GL_VOID(_api, _args, _argList, ...) \
371 static void Systrace_ ## _api _args { \
377 #define TRACE_GL(_type, _api, _args, _argList, ...) \
378 static _type Systrace_ ## _api _args { \
422 #define TRACE_GL_VOID(_api, _args, _argList, ...) \
423 static void ErrorTrace_ ## _api _args { \
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
util.py 184 self._args = args
200 self._callback, self._args, self._kwargs)
201 res = self._callback(*self._args, **self._kwargs)
202 self._weakref = self._callback = self._args = \
215 self._weakref = self._callback = self._args = \
235 if self._args:
236 x += ', args=' + str(self._args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
util.py 184 self._args = args
200 self._callback, self._args, self._kwargs)
201 res = self._callback(*self._args, **self._kwargs)
202 self._weakref = self._callback = self._args = \
215 self._weakref = self._callback = self._args = \
235 if self._args:
236 x += ', args=' + str(self._args)
  /external/chromium_org/build/android/pylib/device/
decorators.py 142 def get_timeout(inst, *_args, **kwargs):
144 def get_retries(inst, *_args, **kwargs):
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 54 #define sprintf(_buf,_fmt,_args...) VG_(sprintf)((_buf),(_fmt),(_args))
  /external/chromium_org/tools/valgrind/
valgrind_test.py 139 self._options, self._args = self._parser.parse_args(known_args)
153 self._args.append("--gtest_filter=%s" % self._options.gtest_filter)
155 self._args.append("--gtest_repeat=%s" % self._options.gtest_repeat)
157 self._args.append("--gtest_print_time")
302 test_command = self._args[0]
303 dsym_bundle = self._args[0] + '.dSYM'
353 # Note that self._args begins with the exe to be run.
407 proc = self._args
417 proc += self._args
614 # self._args begins with the exe to be run
    [all...]
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
ActionBarTabsPager.java 94 TabInfo(Class<?> _class, Bundle _args) {
96 args = _args;
FragmentNestingPagerSupport.java 92 TabInfo(Class<?> _class, Bundle _args) {
94 args = _args;
FragmentNestingStatePagerSupport.java 92 TabInfo(Class<?> _class, Bundle _args) {
94 args = _args;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentTabsPager.java 98 TabInfo(String _tag, Class<?> _class, Bundle _args) {
101 args = _args;
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread.py 57 self._args = args
76 self._ret = self._func(*self._args, **self._kwargs)
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
lint-hunks.py 44 self._args = args
56 raise SubprocessException(self._args)
  /external/libvpx/libvpx/tools/
lint-hunks.py 44 self._args = args
56 raise SubprocessException(self._args)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
lint-hunks.py 44 self._args = args
56 raise SubprocessException(self._args)

Completed in 326 milliseconds

1 2 3