/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
main.py | 83 self._options = None 117 self._options, args = self._parse_args(argv) 127 self.printer.configure(self._options) 130 if self._options.coverage: 137 names = self.finder.find_names(args, self._options.all) 176 test_runner.run(parallel_tests, self._options.child_processes) 200 if self._options.integration_tests:
|
/external/eigen/Eigen/src/Core/ |
Array.h | 33 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 37 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase; 41 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 43 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 50 enum { Options = _Options };
|
Ref.h | 90 template<typename _PlainObjectType, int _Options, typename _StrideType> 91 struct traits<Ref<_PlainObjectType, _Options, _StrideType> > 92 : public traits<Map<_PlainObjectType, _Options, _StrideType> > 97 Options = _Options, 98 Flags = traits<Map<_PlainObjectType, _Options, _StrideType> >::Flags | NestByRefBit 110 AlignmentMatch = (_Options!=Aligned) || ((PlainObjectType::Flags&AlignedBit)==0) || ((traits<Derived>::Flags&AlignedBit)==AlignedBit),
|
Matrix.h | 33 * \tparam _Options \anchor matrix_tparam_options A combination of either \b #RowMajor or \b #ColMajor, and of either 105 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 106 struct traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 117 Flags = compute_matrix_flags<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::ret, 119 Options = _Options, 126 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 128 : public PlainObjectBase<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 137 enum { Options = _Options };
|
Map.h | 176 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 177 inline Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> 183 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 184 inline Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>
|
/external/eigen/Eigen/src/Core/util/ |
XprHelper.h | 108 int _Options = AutoAlign | 119 Options = IsColVector ? (_Options | ColMajor) & ~RowMajor 120 : IsRowVector ? (_Options | RowMajor) & ~ColMajor 121 : _Options 219 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 220 struct eval<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense> 222 typedef const Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type; 225 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 226 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense> 228 typedef const Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseMatrix.h | 33 * \tparam _Options Union of bit flags controlling the storage scheme. Currently the only possibility 42 template<typename _Scalar, int _Options, typename _Index> 43 struct traits<SparseMatrix<_Scalar, _Options, _Index> > 54 Flags = _Options | NestByRefBit | LvalueBit, 60 template<typename _Scalar, int _Options, typename _Index, int DiagIndex> 61 struct traits<Diagonal<const SparseMatrix<_Scalar, _Options, _Index>, DiagIndex> > 63 typedef SparseMatrix<_Scalar, _Options, _Index> MatrixType; 84 template<typename _Scalar, int _Options, typename _Index> 86 : public SparseMatrixBase<SparseMatrix<_Scalar, _Options, _Index> > 97 Options = _Options [all...] |
/external/chromium_org/media/tools/constrained_network_server/ |
cns.py | 178 self._options = options 244 if self._options.local_server_port: 252 sanitized_path = os.path.abspath(os.path.join(self._options.www_root, f)) 253 if not sanitized_path.startswith(self._options.www_root): 260 test_url = self._GetServerURL(f, self._options.local_server_port) 269 if self._options.local_server_port: 270 redirect_url = self._GetServerURL(f, self._options.local_server_port) 274 sanitized_path = os.path.abspath(os.path.join(self._options.www_root, f)) 286 if self._options.local_server_port: 288 cherrypy.url().replace('ServeConstrained', self._options.www_root), f [all...] |
/external/chromium_org/v8/tools/push-to-trunk/ |
common_includes.py | 230 self._options = options 303 if self._options.force_readline_defaults and default is not None: 321 if self._options.requires_editor: 340 if not self._options.manual: # pragma: no cover 366 if (self._options.requires_editor and (not os.environ.get("EDITOR") or 414 answer = self.ReadLine(None if self._options.wait_for_lgtm else "LGTM") 454 if self._options.reviewer: 455 print "Using account %s for review." % self._options.reviewer 456 reviewer = self._options.reviewer 461 self.GitUpload(reviewer, self._options.author, self._options.force_upload [all...] |
auto_push.py | 121 if self._options.push: 125 ["--author", self._options.author, 126 "--reviewer", self._options.reviewer,
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineMatrix.h | 28 * \param _Options Union of bit flags controlling the storage scheme. Currently the only possibility 34 template<typename _Scalar, int _Options> 35 struct traits<SkylineMatrix<_Scalar, _Options> > { 44 Flags = SkylineBit | _Options, 50 template<typename _Scalar, int _Options> 52 : public SkylineMatrixBase<SkylineMatrix<_Scalar, _Options> > { 734 template<typename Scalar, int _Options> 735 class SkylineMatrix<Scalar, _Options>::InnerUpperIterator { 740 m_id(_Options == RowMajor ? mat.m_colStartIndex[outer] : mat.m_rowStartIndex[outer] + 1), 742 m_end(_Options == RowMajor ? mat.m_colStartIndex[outer + 1] : mat.m_rowStartIndex[outer + 1] + 1) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
mock_drt.py | 171 self._options = options 218 if self._options.virtual_test_suite_name: 219 test_input.test_name = test_input.test_name.replace(self._options.virtual_test_suite_base, self._options.virtual_test_suite_name) 237 if self._options.actual_directory: 238 actual_path = port._filesystem.join(self._options.actual_directory, test_input.test_name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
xmlbuilder.py | 58 self._options = Options() 85 setattr(self._options, name, value) 90 return hasattr(self._options, _name_xform(name)) 165 return getattr(self._options, xname) 168 options = self._options 188 options = copy.copy(self._options)
|
expatbuilder.py | 140 self._options = options 141 if self._options.filter is not None: 142 self._filter = FilterVisibilityController(self._options.filter) 181 if self._options.entities: 184 if self._options.comments: 186 if self._options.cdata_sections: 262 if self._options.comments: 314 if not self._options.entities: 416 if (self._options.whitespace_in_element_content 735 if self._options.namespace_declarations [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
xmlbuilder.py | 58 self._options = Options() 85 setattr(self._options, name, value) 90 return hasattr(self._options, _name_xform(name)) 165 return getattr(self._options, xname) 168 options = self._options 188 options = copy.copy(self._options)
|
expatbuilder.py | 140 self._options = options 141 if self._options.filter is not None: 142 self._filter = FilterVisibilityController(self._options.filter) 181 if self._options.entities: 184 if self._options.comments: 186 if self._options.cdata_sections: 262 if self._options.comments: 314 if not self._options.entities: 416 if (self._options.whitespace_in_element_content 735 if self._options.namespace_declarations [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_runner_unittest.py | 111 runner._options.exit_after_n_failures = None 112 runner._options.exit_after_n_crashes_or_times = None 124 runner._options.exit_after_n_failures = 101 125 runner._options.exit_after_n_crashes_or_timeouts = 101 129 runner._options.exit_after_n_crashes_or_timeouts = 10 134 runner._options.exit_after_n_crashes_or_timeouts = None 135 runner._options.exit_after_n_failures = 10 141 runner._options.pixel_tests = False
|
single_test_runner.py | 60 self._options = options 89 return self._should_run_pixel_test and not (self._options.new_baseline or self._options.reset_results) 115 if self._options.enable_sanitizer: 118 if self._options.reset_results: 124 if self._options.reset_results: 170 if self._options.add_platform_exceptions: 181 location = self.VERSION_DIR if self._options.add_platform_exceptions else self.UPDATE
|
/external/lzma/CPP/7zip/Archive/Common/ |
MultiStream.cpp | 83 CUpdateOptions _options;
107 RINOK(WriteVolumeHeader(_archive, _file, _options));
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
_stream_hybi.py | 421 self._options = options 432 self._options.mask_send, self._options.outgoing_frame_filters, 433 self._options.encode_text_message_to_utf8) 453 unmask_receive=self._options.unmask_receive) 481 for frame_filter in self._options.incoming_frame_filters: 483 for message_filter in self._options.incoming_message_filters: 508 for message_filter in self._options.outgoing_message_filters: 762 for frame_filter in self._options.incoming_frame_filters: 774 for message_filter in self._options.incoming_message_filters [all...] |
standalone.py | 684 self._options = server.websocket_server_options 687 self.cgi_directories = self._options.cgi_directories 689 if self._options.is_executable_method is not None: 690 self.is_executable = self._options.is_executable_method 717 if self._options.use_basic_auth: 719 if auth != self._options.basic_auth_credential: 765 request = _StandaloneRequest(self, self._options.use_tls) 770 if not self._options.dispatcher.get_handler_suite(self.path): 788 self._options.dispatcher, 789 allowDraft75=self._options.allow_draft75 [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/ |
abstractstep.py | 38 self._options = options
|
/external/chromium_org/build/android/pylib/perf/ |
test_runner.py | 165 self._options = test_options 226 if self._options.no_timeout: 229 if self._options.dry_run: 233 if self._options.single_step: 244 if self._options.single_step:
|
/external/chromium-trace/trace-viewer/examples/stream_server/ |
standalone.py | 493 self._options = server.websocket_server_options 496 self.cgi_directories = self._options.cgi_directories 498 if self._options.is_executable_method is not None: 499 self.is_executable = self._options.is_executable_method 526 if self._options.use_basic_auth: 528 if auth != self._options.basic_auth_credential: 560 request = _StandaloneRequest(self, self._options.use_tls) 565 if not self._options.dispatcher.get_handler_suite(self.path): 583 self._options.dispatcher, 584 allowDraft75=self._options.allow_draft75 [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
standalone.py | 489 self._options = server.websocket_server_options 492 self.cgi_directories = self._options.cgi_directories 494 if self._options.is_executable_method is not None: 495 self.is_executable = self._options.is_executable_method 522 if self._options.use_basic_auth: 524 if auth != self._options.basic_auth_credential: 556 request = _StandaloneRequest(self, self._options.use_tls) 561 if not self._options.dispatcher.get_handler_suite(self.path): 579 self._options.dispatcher, 580 allowDraft75=self._options.allow_draft75 [all...] |