/external/ceres-solver/internal/ceres/ |
loss_function_test.cc | 155 ScaledLoss scaled_loss(NULL, 6, TAKE_OWNERSHIP); 159 ScaledLoss scaled_loss(new TrivialLoss(), 10, TAKE_OWNERSHIP); 163 ScaledLoss scaled_loss(new HuberLoss(0.7), 0.1, TAKE_OWNERSHIP); 167 ScaledLoss scaled_loss(new SoftLOneLoss(1.3), 0.1, TAKE_OWNERSHIP); 171 ScaledLoss scaled_loss(new CauchyLoss(1.3), 10, TAKE_OWNERSHIP); 175 ScaledLoss scaled_loss(new ArctanLoss(1.3), 10, TAKE_OWNERSHIP); 180 new TolerantLoss(1.3, 0.1), 10, TAKE_OWNERSHIP); 186 new HuberLoss(0.8), TAKE_OWNERSHIP, 187 new TolerantLoss(1.3, 0.5), TAKE_OWNERSHIP), 10, TAKE_OWNERSHIP); [all...] |
numeric_diff_cost_function_test.cc | 82 new EasyCostFunction, TAKE_OWNERSHIP)); 95 new EasyCostFunction, TAKE_OWNERSHIP)); 134 new TranscendentalCostFunction, TAKE_OWNERSHIP)); 147 new TranscendentalCostFunction, TAKE_OWNERSHIP)); 172 new SizeTestingCostFunction<1,1>, ceres::TAKE_OWNERSHIP)); 176 new SizeTestingCostFunction<2,1>, ceres::TAKE_OWNERSHIP)); 180 new SizeTestingCostFunction<1,2>, ceres::TAKE_OWNERSHIP)); 184 new SizeTestingCostFunction<2,2>, ceres::TAKE_OWNERSHIP));
|
conditioned_cost_function.cc | 70 if (ownership_ == TAKE_OWNERSHIP) {
|
conditioned_cost_function_test.cc | 97 TAKE_OWNERSHIP);
|
runtime_numeric_diff_cost_function.h | 49 // TAKE_OWNERSHIP);
|
problem_impl.cc | 162 if (options_.cost_function_ownership == TAKE_OWNERSHIP && 167 if (options_.loss_function_ownership == TAKE_OWNERSHIP && 181 if (options_.local_parameterization_ownership == TAKE_OWNERSHIP &&
|
gradient_checking_cost_function.cc | 239 gradient_checking_problem_options.cost_function_ownership = TAKE_OWNERSHIP;
|
/external/chromium_org/net/url_request/ |
url_fetcher_impl.cc | 185 bool take_ownership, 187 return core_->GetResponseAsFilePath(take_ownership, out_response_path);
|
url_fetcher_impl.h | 91 bool take_ownership,
|
url_fetcher.h | 292 // if the response body was not saved to a file. If take_ownership is 297 bool take_ownership,
|
test_url_fetcher_factory.cc | 208 bool take_ownership, base::FilePath* out_response_path) const {
|
url_fetcher_core.h | 121 bool GetResponseAsFilePath(bool take_ownership,
|
url_fetcher_core.cc | 345 bool URLFetcherCore::GetResponseAsFilePath(bool take_ownership, 356 if (take_ownership) {
|
test_url_fetcher_factory.h | 150 bool take_ownership, base::FilePath* out_response_path) const OVERRIDE;
|
/external/llvm/include/llvm/Support/ |
circular_raw_ostream.h | 28 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying 32 static const bool TAKE_OWNERSHIP = true;
|
/external/ceres-solver/include/ceres/ |
numeric_diff_cost_function.h | 141 // new MyCostFunction(...), TAKE_OWNERSHIP); 182 ownership_(TAKE_OWNERSHIP), 193 if (ownership_ != TAKE_OWNERSHIP) {
|
problem.h | 124 : cost_function_ownership(TAKE_OWNERSHIP), 125 loss_function_ownership(TAKE_OWNERSHIP), 126 local_parameterization_ownership(TAKE_OWNERSHIP), 132 // the Problem. If set to TAKE_OWNERSHIP, then the problem object
|
loss_function.h | 352 // LossFunctionWrapper* loss_function(new HuberLoss(1.0), TAKE_OWNERSHIP); 361 // loss_function->Reset(new HuberLoss(1.0), TAKE_OWNERSHIP);
|
types.h | 52 // of a passed in argument. If TAKE_OWNERSHIP is passed, the called 57 TAKE_OWNERSHIP
|
/external/llvm/bindings/python/llvm/ |
common.py | 44 def take_ownership(self, obj): member in class:LLVMObject
|
object.py | 118 self.take_ownership(contents)
|
/external/openfst/src/include/fst/ |
replace.h | 273 bool take_ownership; // take ownership of input Fst(s) member in struct:fst::ReplaceFstOptions 280 take_ownership(false), 285 take_ownership(false), 290 take_ownership(false), 295 take_ownership(false), 376 fst_array_.push_back(opts.take_ownership ? fst : fst->Copy()); [all...] |
/external/chromium/base/ |
basictypes.h | 266 // of a passed in argument. If TAKE_OWNERSHIP is passed, the called 270 TAKE_OWNERSHIP
|
/external/chromium_org/third_party/cld/base/ |
basictypes.h | 258 // of a passed in argument. If TAKE_OWNERSHIP is passed, the called 262 TAKE_OWNERSHIP
|
/external/ceres-solver/docs/source/ |
modeling.rst | 472 new MyCostFunction(...), TAKE_OWNERSHIP); [all...] |