HomeSort by relevance Sort by last modified time
    Searched full:old_value (Results 101 - 125 of 179) sorted by null

1 2 3 45 6 7 8

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.replace/
replace.pass.cpp 17 // replace(Iter first, Iter last, const T& old_value, const T& new_value);
replace_copy.pass.cpp 17 // replace_copy(InIter first, InIter last, OutIter result, const T& old_value,
  /bionic/libc/private/
bionic_atomic_arm.h 132 __bionic_cmpxchg(int32_t old_value, int32_t new_value, volatile int32_t* ptr)
147 : "r" (ptr), "Ir" (old_value), "r" (new_value)
150 return prev != old_value;
  /external/llvm/unittests/Support/
CommandLineTest.cpp 25 const char *old_value = getenv(name); local
26 EXPECT_EQ(NULL, old_value) << old_value;
  /external/chromium_org/sync/syncable/
model_neutral_mutable_entry.cc 188 bool old_value = kernel_->ref(SERVER_IS_DIR); local
189 if (old_value != value) {
198 bool old_value = kernel_->ref(SERVER_IS_DEL); local
199 if (old_value != value) {
210 base_write_transaction(), old_value, *kernel_); local
mutable_entry.cc 152 bool old_value = kernel_->ref(IS_DIR); local
153 if (old_value != value) {
  /external/chromium/chrome/browser/chromeos/login/
wizard_accessibility_handler.cc 280 std::string old_value = previous_text_value_; local
287 if (new_value == old_value) {
293 DescribeTextContentsChanged(old_value, new_value,
369 const std::string& old_value,
372 int old_array_len = old_value.size();
379 base::i18n::UTF8CharIterator old_iter(&old_value);
422 std::string deleted = old_value.substr(
wizard_accessibility_handler.h 82 void DescribeTextContentsChanged(const std::string& old_value,
  /external/chromium_org/content/browser/dom_storage/
dom_storage_namespace.cc 332 base::string16 old_value; local
333 area->RemoveItem(transaction.key, &old_value);
335 context->NotifyItemRemoved(area, transaction.key, old_value,
340 base::NullableString16 old_value; local
342 &old_value);
345 old_value, transaction.page_url);
dom_storage_area.cc 133 base::NullableString16* old_value) {
139 bool success = map_->SetItem(key, value, old_value);
148 base::string16* old_value) {
154 bool success = map_->RemoveItem(key, old_value);
dom_storage_context_impl.cc 216 const base::NullableString16& old_value,
220 OnDOMStorageItemSet(area, key, new_value, old_value, page_url));
226 const base::string16& old_value,
230 OnDOMStorageItemRemoved(area, key, old_value, page_url));
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_unittest.cc 103 const std::string old_value("value");
104 put_value = old_value;
120 EXPECT_EQ(comparator.Compare(got_value, old_value), 0);
  /art/runtime/gc/accounting/
card_table-inl.h 30 static inline bool byte_cas(byte old_value, byte new_value, byte* address) {
38 const int32_t old_word = cur_word | (static_cast<int32_t>(old_value) << shift);
  /external/chromium_org/tools/gn/
operators.cc 101 const Value* old_value = scope->GetValue(left.value(), false); local
102 if (old_value) {
108 if (old_value->type() != Value::LIST ||
109 !old_value->list_value().empty()) {
124 if (old_value->type() == Value::LIST &&
125 !old_value->list_value().empty() &&
131 base::IntToString(static_cast<int>(old_value->list_value().size()))
133 err->AppendSubErr(Err(*old_value, "for previous definition",
  /system/media/audio_route/
audio_route.c 38 int *old_value; member in struct:mixer_state
499 ar->mixer_state[i].old_value = malloc(num_values * sizeof(int));
504 ar->mixer_state[i].old_value[0] = mixer_ctl_get_value(ctl, 0);
506 mixer_ctl_get_array(ctl, ar->mixer_state[i].old_value, num_values);
507 memcpy(ar->mixer_state[i].new_value, ar->mixer_state[i].old_value,
524 free(ar->mixer_state[i].old_value);
554 if (ar->mixer_state[i].old_value[j] != ar->mixer_state[i].new_value[j]) {
564 memcpy(ar->mixer_state[i].old_value, ar->mixer_state[i].new_value,
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_sync_service.cc 382 const DictionaryValue* old_value = NULL; local
383 dict->GetDictionaryWithoutPathExpansion(managed_user.id(), &old_value);
388 old_value ? SyncChange::ACTION_UPDATE : SyncChange::ACTION_ADD,
393 if (old_value && !old_value->HasKey(kAcknowledged))
  /external/libpng/contrib/pngminus/
pnm2png.c 479 static int old_value = 0; local
490 old_value = fgetc (pnm_file);
494 ret_value = old_value & mask;
498 old_value = (old_value << depth) & 0xFF;
  /external/chromium_org/v8/src/
accessors.cc 603 Handle<Object> old_value; local
610 old_value = handle(function->prototype(), isolate);
612 old_value = isolate->factory()->NewFunctionPrototype(function);
618 if (is_observed && !old_value->SameValue(*value)) {
620 function, "update", isolate->factory()->prototype_string(), old_value);
944 Object* old_value = context->get(slot); local
945 if (old_value->IsTheHole()) {
  /external/chromium_org/ui/views/controls/
slider.cc 89 float old_value = value_; local
92 listener_->SliderValueChanged(this, value_, old_value, reason);
97 animating_value_ = old_value;
slider.h 32 float old_value,
  /external/chromium_org/content/common/dom_storage/
dom_storage_messages.h 21 IPC_STRUCT_MEMBER(base::NullableString16, old_value)
  /external/chromium_org/content/worker/
worker_webkitplatformsupport_impl.h 60 const blink::WebString& key, const blink::WebString& old_value,
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 267 let old_value = Hashtbl.find named_values var_name in var
268 old_bindings := (var_name, old_value) :: !old_bindings;
280 List.iter (fun (var_name, old_value) ->
281 Hashtbl.add named_values var_name old_value
  /external/chromium/chrome/common/deprecated/
event_sys_unittest.cc 27 int old_value; member in struct:__anon2528::TestEvent
105 << " change from " << event.old_value
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.cc 534 ReadState old_value = read_state_; local
536 if (value != old_value) {
544 WriteState old_value = write_state_; local
546 if (value != old_value) {
554 bool old_value = connected_; local
556 if (value != old_value) {

Completed in 1914 milliseconds

1 2 3 45 6 7 8