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

1 2 3

  /external/ceres-solver/internal/ceres/
block_random_access_dense_matrix.h 83 const double* values() const { return values_.get(); }
84 double* mutable_values() { return values_.get(); }
89 scoped_array<double> values_; member in class:ceres::internal::BlockRandomAccessDenseMatrix
triplet_sparse_matrix.cc 51 values_(NULL) {}
64 values_(NULL) {
80 values_(NULL) {
120 new_values[i] = values_[i];
125 values_.reset(new_values);
131 fill(values_.get(), values_.get() + max_num_nonzeros_, 0.0);
144 values_.reset(new double[max_num_nonzeros_]);
151 values_[i] = orig.values_[i]
    [all...]
block_random_access_dense_matrix.cc 51 values_.reset(new double[num_rows_ * num_rows_]);
55 cell_infos_[i].values = values_.get();
83 VectorRef(values_.get(), num_rows_ * num_rows_).setZero();
block_sparse_matrix.h 81 virtual const double* values() const { return values_.get(); }
82 virtual double* mutable_values() { return values_.get(); }
92 scoped_array<double> values_; member in class:ceres::internal::BlockSparseMatrix
compressed_row_sparse_matrix.h 92 virtual const double* values() const { return &values_[0]; }
93 virtual double* mutable_values() { return &values_[0]; }
165 vector<double> values_; member in class:ceres::internal::CompressedRowSparseMatrix
triplet_sparse_matrix.h 67 virtual const double* values() const { return values_.get(); }
68 virtual double* mutable_values() { return values_.get(); }
72 // of rows_, cols_ and values_. If new_max_num_nonzeros is smaller
117 // The data is stored as three arrays. For each i, values_[i] is
119 // multiple entries with the same (rows_[i], cols_[i]), the values_
123 scoped_array<double> values_; member in class:ceres::internal::TripletSparseMatrix
block_sparse_matrix.cc 52 values_(NULL),
80 values_.reset(new double[num_nonzeros_]);
81 CHECK_NOTNULL(values_.get());
85 fill(values_.get(), values_.get() + num_nonzeros_, 0.0);
101 values_.get() + cells[j].position, row_block_size, col_block_size,
121 values_.get() + cells[j].position, row_block_size, col_block_size,
138 const MatrixRef m(values_.get() + cells[j].position,
155 MatrixRef m(values_.get() + cells[j].position,
179 += MatrixRef(values_.get() + jac_pos, row_block_size, col_block_size)
    [all...]
compressed_row_sparse_matrix.cc 79 values_.resize(max_num_nonzeros, 0.0);
97 values_.resize(m.max_num_nonzeros(), 0.0);
123 values_[i] = m.values()[idx];
142 values_.resize(num_rows);
147 values_[i] = diagonal[i];
158 fill(values_.begin(), values_.end(), 0);
168 y[r] += values_[idx] * x[cols_[idx]];
179 y[cols_[idx]] += values_[idx] * x[r];
189 x[cols_[idx]] += values_[idx] * values_[idx]
    [all...]
  /external/chromium_org/content/common/dom_storage/
dom_storage_map.cc 39 return values_.size();
43 if (index >= values_.size())
58 DOMStorageValuesMap::const_iterator found = values_.find(key);
59 if (found == values_.end())
67 DOMStorageValuesMap::const_iterator found = values_.find(key);
68 if (found == values_.end())
83 values_[key] = base::NullableString16(value, false);
92 DOMStorageValuesMap::iterator found = values_.find(key);
93 if (found == values_.end())
96 values_.erase(found)
    [all...]
dom_storage_map.h 33 // Swaps this instances values_ with |map|.
38 // Writes a copy of the current set of values_ to the |map|.
39 void ExtractValues(DOMStorageValuesMap* map) const { *map = values_; }
42 // a deep copy of values_.
55 DOMStorageValuesMap values_; member in class:content::DOMStorageMap
  /external/chromium_org/chrome/browser/chromeos/settings/
stub_cros_settings_provider.cc 34 if (values_.GetValue(path, &value))
51 values_.SetValue(path, value.DeepCopy());
56 values_.SetBoolean(kAccountsPrefAllowGuest, true);
57 values_.SetBoolean(kAccountsPrefAllowNewUser, true);
58 values_.SetBoolean(kAccountsPrefSupervisedUsersEnabled, true);
59 values_.SetBoolean(kAccountsPrefShowUserNamesOnSignIn, true);
60 values_.SetValue(kAccountsPrefDeviceLocalAccounts, new base::ListValue);
stub_cros_settings_provider.h 39 PrefValueMap values_; member in class:chromeos::StubCrosSettingsProvider
  /external/chromium_org/remoting/host/
in_memory_host_config.cc 13 : values_(new base::DictionaryValue()) {
21 return values_->GetString(path, out_value);
27 return values_->GetBoolean(path, out_value);
39 values_->SetString(path, in_value);
44 values_->SetBoolean(path, in_value);
in_memory_host_config.h 42 scoped_ptr<base::DictionaryValue> values_; member in class:remoting::InMemoryHostConfig
json_host_config.cc 46 base::JSONWriter::Write(values_.get(), &data);
60 values_.reset(dictionary);
  /external/chromium_org/components/policy/core/common/
preferences_mock_mac.cc 8 values_.reset(CFDictionaryCreateMutable(kCFAllocatorDefault,
27 Boolean found = CFDictionaryGetValueIfPresent(values_,
44 CFDictionarySetValue(values_, key, value);
preferences_mock_mac.h 30 base::ScopedCFTypeRef<CFMutableDictionaryRef> values_; member in class:MockPreferences
registry_dict_win.cc 185 ValueMap::iterator entry = values_.find(name);
186 return entry != values_.end() ? entry->second : NULL;
190 ValueMap::const_iterator entry = values_.find(name);
191 return entry != values_.end() ? entry->second : NULL;
201 base::Value*& entry = values_[name];
208 ValueMap::iterator entry = values_.find(name);
209 if (entry != values_.end()) {
211 values_.erase(entry);
217 STLDeleteValues(&values_);
229 for (ValueMap::const_iterator entry(other.values_.begin())
    [all...]
registry_dict_win.h 80 const ValueMap& values() const { return values_; }
84 ValueMap values_; member in class:policy::RegistryDict
  /external/chromium_org/tools/gn/
scope.cc 67 RecordMap::iterator found = values_.find(ident);
68 if (found != values_.end()) {
85 RecordMap::iterator found = values_.find(ident);
86 if (found != values_.end()) {
100 RecordMap::iterator found = values_.find(ident);
101 if (found != values_.end())
116 RecordMap::const_iterator found = values_.find(ident);
117 if (found != values_.end())
127 Record& r = values_[ident]; // Clears any existing value.
134 RecordMap::iterator found = values_.find(ident)
    [all...]
  /external/chromium_org/ppapi/shared_impl/private/
ppb_x509_certificate_private_shared.cc 18 scoped_ptr<base::ListValue> new_values(fields.values_.DeepCopy());
19 values_.Swap(new_values.get());
26 bool success = values_.Set(index, value);
34 bool success = values_.Get(index, &value);
ppb_x509_certificate_private_shared.h 36 base::ListValue values_; member in class:ppapi::PPB_X509Certificate_Fields
  /external/chromium_org/sync/internal_api/public/base/
node_ordinal_unittest.cc 82 IndexedLessThan(const T* values) : values_(values) {}
85 return less_than_(values_[i1], values_[i2]);
89 const T* values_; member in class:syncer::__anon14724::IndexedLessThan
  /art/compiler/sea_ir/code_gen/
code_gen.h 33 builder_(*context_), function_(), blocks_(), values_() { }
54 std::map<int, llvm::Value*>::iterator value_it = values_.find(instruction_id);
55 DCHECK(value_it != values_.end());
64 values_.insert(std::pair<int, llvm::Value*>(instruction_id, value));
81 std::map<int, llvm::Value*> values_; member in class:sea_ir::CodeGenData
  /external/chromium_org/android_webview/native/
aw_autofill_client.cc 88 values_ = values;
168 delegate_->DidAcceptSuggestion(values_[position], identifiers_[position]);

Completed in 586 milliseconds

1 2 3