HomeSort by relevance Sort by last modified time
    Searched full:_options (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/chromium_org/tools/telemetry/telemetry/unittest/
options_for_unittests.py 12 _options = None variable
15 global _options
18 _options = options
22 if not _options:
25 return _options.Copy()
28 if _options:
  /external/eigen/Eigen/src/Core/
DenseStorage.h 82 template<typename T, int Size, int _Rows, int _Cols, int _Options> class DenseStorage;
85 template<typename T, int Size, int _Rows, int _Cols, int _Options> class DenseStorage
87 internal::plain_array<T,Size,_Options> m_data;
103 template<typename T, int _Rows, int _Cols, int _Options> class DenseStorage<T, 0, _Rows, _Cols, _Options>
119 template<typename T, int _Options> class DenseStorage<T, 0, Dynamic, Dynamic, _Options>
120 : public DenseStorage<T, 0, 0, 0, _Options> { };
122 template<typename T, int _Rows, int _Options> class DenseStorage<T, 0, _Rows, Dynamic, _Options>
    [all...]
  /external/chromium_org/build/android/pylib/monkey/
test_runner.py 20 self._options = test_options
21 self._package = constants.PACKAGE_INFO[self._options.package].package
22 self._activity = constants.PACKAGE_INFO[self._options.package].activity
31 timeout_ms = self._options.event_count * self._options.throttle * 1.5
35 ' '.join(['-c %s' % c for c in self._options.category]),
36 '--throttle %d' % self._options.throttle,
37 '-s %d' % (self._options.seed or random.randint(1, 100)),
38 '-v ' * self._options.verbose_count,
41 self._options.extra_args
    [all...]
  /external/chromium_org/tools/perf/measurements/
rasterize_and_record_micro_unittest.py 20 self._options = options_for_unittests.GetCopy()
21 self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
22 self._options.rasterize_repeat = 1
23 self._options.record_repeat = 1
24 self._options.start_wait_time = 0.0
29 results = self.RunMeasurement(measurement, ps, options=self._options)
rasterize_and_record_unittest.py 20 self._options = options_for_unittests.GetCopy()
21 self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
22 self._options.raster_record_repeat = 1
23 self._options.start_wait_time = 0.0
24 self._options.stop_wait_time = 2.0
29 results = self.RunMeasurement(measurement, ps, options=self._options)
smoothness_unittest.py 20 self._options = options_for_unittests.GetCopy()
21 self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
26 results = self.RunMeasurement(measurement, ps, options=self._options)
49 timeline_options = self._options
  /external/eigen/Eigen/src/SparseCore/
SparseRedux.h 27 template<typename _Scalar, int _Options, typename _Index>
28 typename internal::traits<SparseMatrix<_Scalar,_Options,_Index> >::Scalar
29 SparseMatrix<_Scalar,_Options,_Index>::sum() const
35 template<typename _Scalar, int _Options, typename _Index>
36 typename internal::traits<SparseVector<_Scalar,_Options, _Index> >::Scalar
37 SparseVector<_Scalar,_Options,_Index>::sum() const
SparseVector.h 29 template<typename _Scalar, int _Options, typename _Index>
30 struct traits<SparseVector<_Scalar, _Options, _Index> >
37 IsColVector = (_Options & RowMajorBit) ? 0 : 1,
43 Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit),
50 template<typename _Scalar, int _Options, typename _Index>
52 : public SparseMatrixBase<SparseVector<_Scalar, _Options, _Index> >
66 Options = _Options
332 template<typename Scalar, int _Options, typename _Index>
333 class SparseVector<Scalar,_Options,_Index>::InnerIterator
364 template<typename Scalar, int _Options, typename _Index
    [all...]
  /external/chromium_org/build/android/gyp/
write_ordered_libraries.py 31 _options = None variable
37 return '%s/%s' % (_options.libraries_dir, library_name)
47 readelf_cmd = [_options.readelf,
106 global _options
107 _options, _ = parser.parse_args()
109 libraries = build_utils.ParseGypList(_options.input_libraries)
116 build_utils.WriteJson(libraries, _options.output, only_if_changed=True)
118 if _options.stamp:
119 build_utils.Touch(_options.stamp)
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 29 template <typename _Scalar, int _AmbientDim, int _Options>
36 Options = _Options
144 template <typename _Scalar, int _AmbientDim, int _Options>
146 inline ParametrizedLine<_Scalar, _AmbientDim,_Options>::ParametrizedLine(const Hyperplane<_Scalar, _AmbientDim,OtherOptions>& hyperplane)
155 template <typename _Scalar, int _AmbientDim, int _Options>
156 inline typename ParametrizedLine<_Scalar, _AmbientDim,_Options>::VectorType
157 ParametrizedLine<_Scalar, _AmbientDim,_Options>::pointAt( _Scalar t ) const
164 template <typename _Scalar, int _AmbientDim, int _Options>
166 inline _Scalar ParametrizedLine<_Scalar, _AmbientDim,_Options>::intersectionParameter(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const
176 template <typename _Scalar, int _AmbientDim, int _Options>
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 59 for (int i = 0; i < _options.Methods.Size(); i++)
61 const CMethodFull &methodFull = _options.Methods[i];
84 RINOK(setCoderMt->SetNumberOfThreads(_options.NumThreads));
116 const UInt32 sizeInBytes = _options.Password.Length() * 2;
118 for (int i = 0; i < _options.Password.Length(); i++)
120 wchar_t c = _options.Password[i];
284 _options = options;
292 if (_options.Methods.IsEmpty())
295 if (!_options.PasswordIsDefined)
297 if (!_options.Binds.IsEmpty())
    [all...]
7zEncode.h 29 CCompressionMethodMode _options; member in class:NArchive::N7z::CEncoder
  /external/chromium_org/tools/telemetry/telemetry/page/
page_measurement_unittest.py 66 self._options = options_for_unittests.GetCopy()
67 self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
72 all_results = self.RunMeasurement(measurement, ps, options=self._options)
78 all_results = self.RunMeasurement(measurement, ps, options=self._options)
84 all_results = self.RunMeasurement(measurement, ps, options=self._options)
90 all_results = self.RunMeasurement(measurement, ps, options=self._options)
113 self._options.browser_options.wpr_mode = wpr_modes.WPR_RECORD
119 all_results = self.RunMeasurement(measurement, ps, options=self._options)
123 self._options.browser_options.wpr_mode = wpr_modes.WPR_REPLAY
128 all_results = self.RunMeasurement(measurement, ps, options=self._options)
    [all...]
page_test_runner.py 26 self._options = None
40 results = page_runner.Run(test, ps, expectations, self._options)
78 ps = test.CreatePageSet(self._args, self._options)
95 self._options.allow_live_sites = True
129 self._options = browser_options.BrowserFinderOptions()
130 self._parser = self._options.CreateParser(
160 ps = test.CreatePageSet(self._options)
  /external/chromium_org/chrome/test/pyautolib/
fetch_prebuilt_pyauto.py 53 self._options, self._args = parser.parse_args()
54 if self._options.latest:
55 self._url = self._GetLastestDownloadURL(self._options.platform)
61 if not self._options.outdir:
64 self._outdir = self._options.outdir
70 if not self._options.platform.startswith('linux'):
73 }[self._options.platform]
80 }[self._options.platform]
94 if self._options.platform == 'win':
100 if self._options.platform == 'mac'
    [all...]
  /development/testrunner/
runtest.py 93 self._options = None
177 self._options, self._test_args = parser.parse_args()
179 if (not self._options.only_list_tests
180 and not self._options.all_tests
181 and not self._options.continuous_tests
182 and not self._options.suite
183 and not self._options.test_path
190 if self._options.emulator:
192 elif self._options.device:
194 elif self._options.serial is not None
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_endtoend.py 175 self._options = client_for_testing.ClientOptions()
176 self._options.server_host = 'localhost'
177 self._options.origin = 'http://localhost'
178 self._options.resource = '/echo'
184 self._options.server_port = _external_server_port
186 self._options.server_port = self.test_port
236 self._run_hybi_test_with_client_options(test_function, self._options)
243 self._options.enable_deflate_stream()
244 client = client_for_testing.create_client(self._options)
257 self._options.enable_deflate_frame(
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
manager.py 77 self._options = options
89 self._finder = LayoutTestFinder(self._port, self._options)
90 self._runner = LayoutTestRunner(self._options, self._port, self._printer, self._results_directory, self._test_is_slow)
93 return self._finder.find_tests(self._options, args)
113 if self._options.order == 'natural':
115 elif self._options.order == 'random':
117 elif self._options.order == 'random-seeded':
130 self._options.slow_time_out_ms if self._test_is_slow(test_file) else self._options.time_out_ms,
132 should_add_missing_baselines=(self._options.new_test_results and not self._test_is_expected_missing(test_file))
    [all...]
layout_test_finder.py 42 self._options = options
100 if self._options.skip_failing_tests:
104 if self._options.skipped == 'only':
106 elif self._options.skipped == 'ignore':
108 elif self._options.skipped != 'always':
116 if not self._options.run_chunk and not self._options.run_part:
121 chunk_value = self._options.run_chunk or self._options.run_part
136 if self._options.run_chunk
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 36 template<typename _Scalar, int _Options, typename _Index>
37 struct traits<DynamicSparseMatrix<_Scalar, _Options, _Index> >
48 Flags = _Options | NestByRefBit | LvalueBit,
55 template<typename _Scalar, int _Options, typename _Index>
57 : public SparseMatrixBase<DynamicSparseMatrix<_Scalar, _Options, _Index> >
68 Options = _Options
323 template<typename Scalar, int _Options, typename _Index>
324 class DynamicSparseMatrix<Scalar,_Options,_Index>::InnerIterator : public SparseVector<Scalar,_Options,_Index>::InnerIterator
326 typedef typename SparseVector<Scalar,_Options,_Index>::InnerIterator Base
    [all...]
BlockOfDynamicSparseMatrix.h 19 template<typename _Scalar, int _Options, typename _Index, int Size>
20 class SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Size>
21 : public SparseMatrixBase<SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Size> >
23 typedef DynamicSparseMatrix<_Scalar, _Options, _Index> MatrixType;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_client.py 291 self._options = options
302 request_line = _build_method_line(self._options.resource)
309 self._options.server_host,
310 self._options.server_port,
311 self._options.use_tls))
314 if self._options.origin is not None:
315 if self._options.protocol_version == _PROTOCOL_VERSION_HYBI08:
318 self._options.origin))
321 self._options.origin))
333 if self._options.version_header > 0
    [all...]
  /external/eigen/test/eigen2/
eigen2_swap.cpp 19 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
20 struct other_matrix_type<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
22 typedef Matrix<_Scalar, _Rows, _Cols, _Options^RowMajor, _MaxRows, _MaxCols> type;
  /external/eigen/test/
swap.cpp 19 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
20 struct other_matrix_type<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
22 typedef Matrix<_Scalar, _Rows, _Cols, _Options^RowMajor, _MaxRows, _MaxCols> type;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 61 self._options, self._args = PerfTestsRunner._parse_args(args)
67 self._port = self._host.port_factory.get(self._options.platform, self._options)
161 if self._options.use_skipped_list and self._port.skips_perf_test(relative_path) and filesystem.normpath(relative_path) not in paths:
163 test = PerfTestFactory.create_perf_test(self._port, relative_path, path, test_runner_count=self._options.test_runner_count)
191 repeat = self._options.repeat
200 if not test.prepare(self._options.time_out_ms):
212 if self._options.generate_results and not self._options.profile:
217 if self._options.generate_results and not self._options.profile
    [all...]

Completed in 365 milliseconds

1 2 3 4 5