/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
user.hpp | 59 // #define BOOST_MATH_UNDERFLOW_ERROR_POLICY ignore_error 63 // #define BOOST_MATH_DENORM_ERROR_POLICY ignore_error
|
/external/openssh/ |
openssh.xml.in | 75 <propval name='ignore_error' type='astring' value='core,signal'/>
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/ |
crash_service.py | 83 self._executive.run_command(["taskkill.exe", "/f", "/t", "/pid", self._pid], error_handler=self._executive.ignore_error)
|
http_server.py | 224 self._executive.run_command(["taskkill.exe", "/f", "/t", "/pid", self._pid], error_handler=self._executive.ignore_error)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
android.py | 208 def push(self, host_path, device_path, ignore_error=False): 209 return self.run(['push', host_path, device_path], ignore_error=ignore_error) 211 def pull(self, device_path, host_path, ignore_error=False): 212 return self.run(['pull', device_path, host_path], ignore_error=ignore_error) 250 def run(self, command, ignore_error=False): 252 if ignore_error: 253 error_handler = self._executive.ignore_error 313 output = executive.run_command([adb_command_path, 'version'], error_handler=executive.ignore_error, [all...] |
base.py | [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
executive.py | 186 self.run_command(command, error_handler=self.ignore_error) 335 self.run_command(command, error_handler=self.ignore_error) 346 self.run_command(command, error_handler=self.ignore_error) 356 def ignore_error(error): member in class:Executive
|
executive_mock.py | 55 def ignore_error(error): member in class:MockExecutive
|
platforminfo.py | 77 output = self._executive.run_command(['system_profiler', 'SPDisplaysDataType'], error_handler=self._executive.ignore_error)
|
executive_unittest.py | 108 Executive().run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
python.py | 89 error_handler=executive.ignore_error)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/ |
git.py | 72 return executive.run_command([cls.executable_name, 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "true" 91 return executive.run_command([cls.executable_name, "config", "--get-all", key], error_handler=Executive.ignore_error, cwd=cwd).rstrip('\n')
|
/external/zlib/src/contrib/ada/ |
zlib.ads | 171 Ignore_Error : in Boolean := False); 173 -- If stream is closing before the complete and Ignore_Error is False,
|
zlib.adb | 137 Ignore_Error : in Boolean := False) 141 if not Ignore_Error and then not Is_Open (Filter) then 147 if Ignore_Error or else Code = Thin.Z_OK then
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/ |
policy.hpp | 63 #define BOOST_MATH_UNDERFLOW_ERROR_POLICY ignore_error 66 #define BOOST_MATH_DENORM_ERROR_POLICY ignore_error 69 #define BOOST_MATH_INDETERMINATE_RESULT_ERROR_POLICY ignore_error 180 ignore_error = 2, enumerator in enum:boost::math::policies::error_policy_type [all...] |