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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/base/
environment.h 43 const std::string& new_value) = 0;
environment.cc 46 const std::string& new_value) OVERRIDE {
47 return SetVarImpl(variable_name, new_value);
81 bool SetVarImpl(const char* variable_name, const std::string& new_value) {
84 return !setenv(variable_name, new_value.c_str(), 1);
88 UTF8ToWide(new_value).c_str());
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_thinning.h 57 float AdjustScale(float new_value,
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_context.cc 118 scoped_ptr<base::Value> new_value(value);
123 // Don't do anything if |storage_| already contains <|key|, |new_value|> pair.
124 if (in_storage && new_value->Equals(current_value))
127 changes_.Set(key, new_value->DeepCopy());
128 storage_.Set(key, new_value.release());
  /external/chromium_org/content/common/dom_storage/
dom_storage_messages.h 27 IPC_STRUCT_MEMBER(base::NullableString16, new_value)
  /external/chromium_org/device/bluetooth/
bluetooth_gatt_descriptor.h 169 // value of the descriptor with the new value |new_value|. |callback| is
174 const std::vector<uint8>& new_value,
  /external/chromium_org/extensions/renderer/
dom_activity_logger.cc 77 const v8::Handle<v8::Value>& new_value,
80 logSetter(api_name, new_value, v8::Handle<v8::Value>(), url, title);
84 const v8::Handle<v8::Value>& new_value,
90 AppendV8Value(api_name_utf8, new_value, args.get());
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
delay_estimator.h 213 // - new_value : The new value the mean should be updated with.
219 void WebRtc_MeanEstimatorFix(int32_t new_value,
  /external/lldb/include/lldb/Target/
ThreadPlanRunToAddress.h 56 SetStopOthers (bool new_value);
  /external/qemu/android/
main-common.h 26 // Reset the value of |*string| to a copy of |new_value|. This
28 void reassign_string(char** string, const char* new_value);
  /external/chromium_org/base/prefs/
scoped_user_pref_update_unittest.cc 78 const base::DictionaryValue* new_value = prefs_.GetDictionary(kPref); local
79 EXPECT_EQ(old_value, new_value);
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator.h 89 void set_is_default_browser_dialog_suppressed(bool new_value) {
90 is_default_browser_dialog_suppressed_ = new_value;
  /external/chromium_org/content/browser/dom_storage/
dom_storage_message_filter.h 69 const base::string16& new_value,
86 const base::NullableString16& new_value,
dom_storage_message_filter.cc 167 const base::string16& new_value,
172 base::NullableString16(new_value, false),
205 const base::NullableString16& new_value,
219 params.new_value = new_value;
  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
atomicops.h 23 Atomic32 new_value,
25 return __sync_val_compare_and_swap(ptr, new_value, old_value);
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
static_instance.h 119 int new_value = InterlockedDecrement(&instance_count); local
120 if (new_value == 0) {
  /art/runtime/mirror/
object.cc 140 int32_t expected_value, new_value; local
143 new_value = expected_value * 1103515245 + 12345;
145 !seed.CompareExchangeWeakRelaxed(expected_value, new_value));
194 void Object::CheckFieldAssignmentImpl(MemberOffset field_offset, Object* new_value) {
210 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass()));
229 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass()));
art_field-inl.h 75 inline void ArtField::Set32(Object* object, uint32_t new_value) {
79 object->SetField32Volatile<kTransactionActive>(GetOffset(), new_value); local
81 object->SetField32<kTransactionActive>(GetOffset(), new_value); local
95 inline void ArtField::Set64(Object* object, uint64_t new_value) {
99 object->SetField64Volatile<kTransactionActive>(GetOffset(), new_value); local
101 object->SetField64<kTransactionActive>(GetOffset(), new_value); local
115 inline void ArtField::SetObj(Object* object, Object* new_value) {
119 object->SetFieldObjectVolatile<kTransactionActive>(GetOffset(), new_value); local
121 object->SetFieldObject<kTransactionActive>(GetOffset(), new_value); local
  /external/chromium_org/tools/gn/
scope_unittest.cc 45 Value new_value(&assignment, "goodbye");
46 new_scope.SetValue("v", new_value, &assignment);
58 Value new_value(&assignment, "goodbye");
59 new_scope.SetValue("v", new_value, &assignment);
76 Value new_value(&assignment, "hello");
77 new_scope.SetValue("v", new_value, &assignment);
  /external/libcxxabi/include/
unwind.h 218 uintptr_t new_value) {
220 _UVRSD_UINT32, &new_value);
229 uintptr_t new_value) {
231 _Unwind_SetGR(context, 15, new_value | thumb_bit);
236 uintptr_t new_value);
238 extern void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t new_value);
  /external/libcxxabi/src/Unwind/
Unwind-sjlj.c 370 uintptr_t new_value) {
372 , context, index, new_value);
374 ufc->resumeParameters[index] = new_value;
402 uintptr_t new_value) {
404 context, new_value);
406 ufc->resumeLocation = new_value - 1;
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
unwind.h 225 uintptr_t new_value) {
227 _UVRSD_UINT32, &new_value);
236 uintptr_t new_value) {
238 _Unwind_SetGR(context, 15, new_value | thumb_bit);
243 uintptr_t new_value);
245 extern void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t new_value);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-sjlj.c 370 uintptr_t new_value) {
372 , context, index, new_value);
374 ufc->resumeParameters[index] = new_value;
402 uintptr_t new_value) {
404 context, new_value);
406 ufc->resumeLocation = new_value - 1;
  /external/lldb/source/Interpreter/
OptionValue.cpp 334 OptionValue::SetBooleanValue (bool new_value)
339 option_value->SetCurrentValue(new_value);
408 OptionValue::SetFormatValue (lldb::Format new_value)
413 option_value->SetCurrentValue(new_value);
439 OptionValue::SetSInt64Value (int64_t new_value)
444 option_value->SetCurrentValue(new_value);
460 OptionValue::SetStringValue (const char *new_value)
465 option_value->SetCurrentValue(new_value);
481 OptionValue::SetUInt64Value (uint64_t new_value)
486 option_value->SetCurrentValue(new_value);
    [all...]
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_bindings.cc 279 std::string new_value) {
280 bindings->instance()->UpdateDOMAttribute(name(), new_value); local
397 int new_value = IntFromNPVariant(*variant); variable
398 if (bindings->instance()->GetMaxHeightAttribute() != new_value) {
399 UpdateDOMAttribute(bindings, base::IntToString(new_value));
428 int new_value = IntFromNPVariant(*variant); variable
429 if (bindings->instance()->GetMaxWidthAttribute() != new_value) {
430 UpdateDOMAttribute(bindings, base::IntToString(new_value));
459 int new_value = IntFromNPVariant(*variant); variable
460 if (bindings->instance()->GetMinHeightAttribute() != new_value) {
490 int new_value = IntFromNPVariant(*variant); variable
    [all...]

Completed in 939 milliseconds

1 2 3 4 56 7 8 91011>>