HomeSort by relevance Sort by last modified time
    Searched refs:new_value (Results 151 - 175 of 350) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/lldb/include/lldb/Interpreter/
OptionValue.h 304 SetBooleanValue (bool new_value);
325 SetFormatValue (lldb::Format new_value);
334 SetSInt64Value (int64_t new_value);
340 SetStringValue (const char *new_value);
346 SetUInt64Value (uint64_t new_value);
  /art/runtime/native/
java_lang_reflect_Field.cc 226 const JValue& new_value)
231 f->SetBoolean<false>(o, new_value.GetZ());
234 f->SetByte<false>(o, new_value.GetB());
237 f->SetChar<false>(o, new_value.GetC());
240 f->SetDouble<false>(o, new_value.GetD());
243 f->SetFloat<false>(o, new_value.GetF());
246 f->SetInt<false>(o, new_value.GetI());
249 f->SetLong<false>(o, new_value.GetJ());
252 f->SetShort<false>(o, new_value.GetS());
256 f->SetObject<false>(o, new_value.GetL())
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
cros_settings.cc 131 scoped_ptr<base::Value> new_value(
133 static_cast<base::ListValue*>(new_value.get())->Append(value->DeepCopy());
134 Set(path, *new_value);
141 scoped_ptr<base::Value> new_value(
143 static_cast<base::ListValue*>(new_value.get())->Remove(*value, NULL);
144 Set(path, *new_value);
device_settings_provider.h 99 void ApplyMetricsSetting(bool use_file, bool new_value);
102 void ApplyRoamingSetting(bool new_value);
  /external/chromium_org/third_party/re2/util/
sparse_array.h 163 pair<iterator, bool> insert(const value_type& new_value);
323 const value_type& new_value) {
326 if (has_index(new_value.index_)) {
327 p = make_pair(dense_.begin() + sparse_to_dense_[new_value.index_], false);
329 p = make_pair(set_new(new_value.index_, new_value.second), true);
  /external/libcxxabi/src/Unwind/
UnwindLevel1.c 435 uintptr_t new_value) {
438 index, (uint64_t) new_value);
440 unw_set_reg(cursor, index, new_value);
461 uintptr_t new_value) {
463 context, (uint64_t) new_value);
465 unw_set_reg(cursor, UNW_REG_IP, new_value);
  /external/regex-re2/util/
sparse_array.h 163 pair<iterator, bool> insert(const value_type& new_value);
322 const value_type& new_value) {
325 if (has_index(new_value.index_)) {
326 p = make_pair(dense_.begin() + sparse_to_dense_[new_value.index_], false);
328 p = make_pair(set_new(new_value.index_, new_value.second), true);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindLevel1.c 439 uintptr_t new_value) {
442 index, (uint64_t) new_value);
444 unw_set_reg(cursor, index, new_value);
465 uintptr_t new_value) {
467 context, (uint64_t) new_value);
469 unw_set_reg(cursor, UNW_REG_IP, new_value);
  /external/chromium_org/build/
gypi_to_gn.py 124 new_value = ReplaceSubstrings(value, search_for, replace_with)
125 result[new_key] = new_value
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_processor.cc 57 const base::Value* value = i->new_value();
104 if (i->new_value())
syncable_settings_storage.cc 371 base::Value* new_value,
373 DCHECK(new_value);
374 WriteResult result = delegate_->Set(IGNORE_QUOTA, key, *new_value);
383 changes->push_back(ValueStoreChange(key, NULL, new_value));
390 base::Value* new_value,
393 DCHECK(new_value);
394 WriteResult result = delegate_->Set(IGNORE_QUOTA, key, *new_value);
403 changes->push_back(ValueStoreChange(key, old_value, new_value));
syncable_settings_storage.h 87 base::Value* new_value,
92 base::Value* new_value,
policy_value_store_unittest.cc 191 const base::StringValue new_value("222");
195 ValueStoreChange("bbb", value.DeepCopy(), new_value.DeepCopy()));
203 new_value.DeepCopy(), NULL);
211 changes.push_back(ValueStoreChange("bbb", new_value.DeepCopy(), NULL));
  /art/runtime/
atomic.h 134 // Atomically compare the value at "addr" to "old_value", if equal replace it with "new_value"
141 static bool Cas64(int64_t old_value, int64_t new_value, volatile int64_t* addr) {
143 return __sync_bool_compare_and_swap(addr, old_value, new_value);
145 return SwapMutexCas64(old_value, new_value, addr);
178 static bool SwapMutexCas64(int64_t old_value, int64_t new_value, volatile int64_t* addr);
  /external/chromium_org/chrome/browser/ui/website_settings/
permission_bubble_manager.h 80 virtual void ToggleAccept(int request_index, bool new_value) OVERRIDE;
  /external/chromium_org/content/renderer/dom_storage/
dom_storage_cached_area.h 50 const base::NullableString16& new_value);
  /external/chromium_org/device/bluetooth/
bluetooth_gatt_characteristic.h 191 // characteristic's value with the new value |new_value|. |callback| is
196 const std::vector<uint8>& new_value,
bluetooth_remote_gatt_descriptor_chromeos.h 45 const std::vector<uint8>& new_value,
  /external/chromium_org/net/spdy/
spdy_http_utils.cc 102 std::string new_value = (*headers)[name]; local
103 new_value.append(1, '\0'); // +=() doesn't append 0's
104 new_value += it.value();
105 (*headers)[name] = new_value;
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
clock.cc 53 const LONG new_value = 1; local
56 LONG compare_flag = new_value;
58 const LONG new_value = 1; local
60 &help_timer->_sync_flag, new_value, start_value);
  /external/lldb/include/lldb/Target/
ABI.h 56 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) = 0;
ThreadPlanStepInRange.h 61 SetDefaultFlagValue (uint32_t new_value);
  /external/lldb/source/Interpreter/
OptionValueProperties.cpp 363 OptionValueProperties::SetPropertyAtIndexAsBoolean (const ExecutionContext *exe_ctx, uint32_t idx, bool new_value)
371 value->SetBooleanValue(new_value);
401 OptionValueProperties::SetPropertyAtIndexAsEnumeration (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value)
408 return value->SetEnumerationValue(new_value);
495 OptionValueProperties::SetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value)
502 return value->SetSInt64Value(new_value);
521 OptionValueProperties::SetPropertyAtIndexAsString (const ExecutionContext *exe_ctx, uint32_t idx, const char *new_value)
528 return value->SetStringValue(new_value);
557 OptionValueProperties::SetPropertyAtIndexAsUInt64 (const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value)
564 return value->SetUInt64Value(new_value);
    [all...]
  /external/chromium_org/chrome/browser/prefs/
pref_model_associator.cc 125 scoped_ptr<base::Value> new_value(
131 if (new_value->IsType(base::Value::TYPE_NULL)) {
134 } else if (!new_value->IsType(user_pref_value->GetType())) {
136 << " is of type " << new_value->GetType()
139 } else if (!user_pref_value->Equals(new_value.get())) {
140 pref_service_->Set(pref_name.c_str(), *new_value);
144 if (!sync_value->Equals(new_value.get())) {
146 if (!CreatePrefSyncData(pref_name, *new_value, &sync_data)) {
175 if (!CreatePrefSyncData(old_pref_name, *new_value, &old_sync_data)) {
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 519 struct itimerspec new_value; local
520 new_value.it_value.tv_sec = delay_millis / 1000;
521 new_value.it_value.tv_nsec = (delay_millis % 1000) * 1000 * 1000;
522 new_value.it_interval.tv_sec = 0;
523 new_value.it_interval.tv_nsec = 0;
524 timer_settime(timer, 0, &new_value, NULL);

Completed in 766 milliseconds

1 2 3 4 5 67 8 91011>>