Searched refs:new_value (Results 151 - 175 of 300) sorted by relevance

1234567891011>>

/external/lldb/test/python_api/process/
H A DTestProcessAPI.py260 new_value = str(bytes)
262 result = process.WriteMemory(location, new_value, error)
291 new_value = bytearray_to_int(new_bytes, byteSize)
292 if new_value != 256:
/external/lldb/tools/driver/
H A DIOChannel.h126 SetGettingCommand (bool new_value);
/external/webp/src/utils/
H A Dquant_levels_dec.c89 uint16_t new_value; local
91 new_value = top[x] + sum;
92 out[x] = new_value - cur[x]; // vertical sum of 'r' pixels.
93 cur[x] = new_value;
/external/chromium_org/content/renderer/dom_storage/
H A Ddom_storage_cached_area.cc110 const base::NullableString16& new_value) {
138 if (new_value.is_null()) {
150 map_->SetItem(key.string(), new_value.string(), &unused);
108 ApplyMutation( const base::NullableString16& key, const base::NullableString16& new_value) argument
H A Ddom_storage_dispatcher.cc329 cached_area->ApplyMutation(params.key, params.new_value);
336 params.new_value,
347 params.new_value,
/external/chromium_org/chrome/browser/prefs/
H A Dleveldb_pref_store.cc292 scoped_ptr<base::Value> new_value(value);
297 prefs_.SetValue(key, new_value.release());
378 base::Value* new_value = NULL; local
379 bool contains_value = prefs_.GetValue(key, &new_value);
381 std::string value_string = Serialize(new_value);
/external/bluetooth/bluedroid/gki/ulinux/
H A Dgki_ulinux.c137 struct itimerspec new_value; local
138 memset(&new_value, 0, sizeof(new_value));
139 new_value.it_value.tv_sec = (delay_micros / USEC_PER_SEC);
140 new_value.it_value.tv_nsec = (delay_micros % USEC_PER_SEC) * NSEC_PER_USEC;
141 if (timer_settime(posix_timer, 0, &new_value, NULL) == -1)
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_unittest.cc108 const std::string new_value("new value");
109 put_value = new_value;
123 EXPECT_EQ(comparator.Compare(got_value, new_value), 0);
/external/chromium_org/base/prefs/
H A Djson_pref_store.cc207 scoped_ptr<base::Value> new_value(value);
211 prefs_->Set(key, new_value.release());
221 scoped_ptr<base::Value> new_value(value);
225 prefs_->Set(key, new_value.release());
/external/lldb/include/lldb/Target/
H A DThreadPlanCallFunction.h71 SetStopOthers (bool new_value);
/external/llvm/unittests/IR/
H A DValueHandleTest.cpp272 virtual void allUsesReplacedWith(Value *new_value) { argument
274 AURWArgument = new_value;
305 virtual void allUsesReplacedWith(Value *new_value) { argument
309 AURWArgument = new_value;
/external/chromium_org/extensions/browser/
H A Dextension_prefs.cc557 const URLPatternSet& new_value) {
558 UpdateExtensionPref(extension_id, pref_key, new_value.ToValue().release());
641 const PermissionSet* new_value) {
643 base::ListValue* api_values = CreatePermissionList(new_value->apis());
649 new_value->manifest_permissions());
655 if (!new_value->explicit_hosts().is_empty()) {
658 new_value->explicit_hosts());
662 if (!new_value->scriptable_hosts().is_empty()) {
665 new_value->scriptable_hosts());
825 int new_value local
554 SetExtensionPrefURLPatternSet( const std::string& extension_id, const std::string& pref_key, const URLPatternSet& new_value) argument
638 SetExtensionPrefPermissionSet( const std::string& extension_id, const std::string& pref_key, const PermissionSet* new_value) argument
1055 int new_value = Extension::DISABLE_NONE; local
[all...]
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_default_provider_unittest.cc168 scoped_ptr<base::Value> new_value(prefs->FindPreference(
181 prefs->Set(prefs::kDefaultContentSettings, *new_value);
/external/chromium_org/components/copresence/
H A Dtimed_map_unittest.cc16 explicit Value(int new_value) : value(new_value) {} argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c300 const int new_value = (sum_map >= xmis * ymis / 2); local
303 seg_map[bl_index + y * cm->mi_cols + x] = new_value;
/external/chromium_org/third_party/skia/src/utils/
H A DSkRTConf.cpp272 T new_value = doParse<T>(str, &success); local
274 *value = new_value;
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win_unittest.cc78 ScopedBstr new_value(L"New value");
79 ASSERT_EQ(S_OK, textfield_accessible->put_accValue(childid_self, new_value));
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c300 const int new_value = (sum_map >= xmis * ymis / 2); local
303 seg_map[bl_index + y * cm->mi_cols + x] = new_value;
/external/lldb/source/Target/
H A DThreadPlanRunToAddress.cpp209 ThreadPlanRunToAddress::SetStopOthers (bool new_value) argument
211 m_stop_others = new_value;
/external/qemu/android/
H A Dmain-common.c46 void reassign_string(char** string, const char* new_value) { argument
48 *string = ASTRDUP(new_value);
/external/skia/src/utils/
H A DSkRTConf.cpp272 T new_value = doParse<T>(str, &success); local
274 *value = new_value;
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator.c307 void WebRtc_MeanEstimatorFix(int32_t new_value, argument
310 int32_t diff = new_value - *mean_value;
312 // mean_new = mean_value + ((new_value - mean_value) >> factor);
H A Ddelay_estimator_wrapper.c54 // - new_value : New additional value.
60 static void MeanEstimatorFloat(float new_value, argument
64 *mean_value += (new_value - *mean_value) * scale;
/external/vixl/src/a64/
H A Dsimulator-a64.h94 inline void SetRawValue(uint32_t new_value) { argument
95 value_ = (value_ & write_ignore_mask_) | (new_value & ~write_ignore_mask_);
139 void Set(T new_value, unsigned size = sizeof(T)) { argument
141 VIXL_ASSERT(size <= sizeof(new_value));
145 memcpy(value_, &new_value, size);
/external/chromium_org/extensions/browser/api/web_request/
H A Dweb_request_api_helpers.cc515 std::string* new_value = (*mod)->modification->value.get(); local
516 if (!new_name || !new_value)
523 if (cookie->second != *new_value) {
524 cookie->second = *new_value;
532 base::StringPiece(*new_value)));
557 std::string* new_value = (*mod)->modification->value.get(); local
565 if (new_value && cookie->second != *new_value) {
566 cookie->second = *new_value;

Completed in 1540 milliseconds

1234567891011>>