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

1 2 3

  /external/chromium/base/win/
scoped_bstr.h 65 // Swap values of two ScopedBstr's.
66 void Swap(ScopedBstr& bstr2);
scoped_bstr_unittest.cc 27 b.Swap(b2);
41 b1.Swap(b2);
scoped_bstr.cc 35 void ScopedBstr::Swap(ScopedBstr& bstr2) {
scoped_variant.h 75 // Swap two ScopedVariant's.
76 void Swap(ScopedVariant& var);
  /external/chromium/chrome/browser/history/
snippet.h 60 void Swap(Snippet* other);
history_types.cc 46 void URLRow::Swap(URLRow* other) {
47 std::swap(id_, other->id_);
48 url_.Swap(&other->url_);
49 title_.swap(other->title_);
50 std::swap(visit_count_, other->visit_count_);
51 std::swap(typed_count_, other->typed_count_);
52 std::swap(last_visit_, other->last_visit_);
53 std::swap(hidden_, other->hidden_);
114 void StarredEntry::Swap(StarredEntry* other) {
115 std::swap(id, other->id)
    [all...]
history_types.h 123 void Swap(URLRow* other);
292 void Swap(StarredEntry* other);
426 void Swap(QueryResults* other);
428 // Adds the given result to the map, using swap() on the members to avoid
history_querying_unittest.cc 82 results->Swap(&last_query_results_);
129 results->Swap(&last_query_results_);
  /external/chromium/chrome/browser/policy/
policy_map.h 36 void Swap(PolicyMap* other);
policy_map_unittest.cc 47 TEST(PolicyMapTest, Swap) {
53 a.Swap(&b);
62 a.Swap(&b);
policy_map.cc 26 std::swap(map_[policy], value);
38 void PolicyMap::Swap(PolicyMap* other) {
39 map_.swap(other->map_);
cloud_policy_cache_base.cc 117 mandatory_policy_.Swap(&mandatory_policy);
118 recommended_policy_.Swap(&recommended_policy);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 91 Swap(0, size_-1);
132 // swap a child, parent. Use to move element up/down tree
133 // note a little tricky here. When we swap we need to swap
137 void Swap(int j, int k) {
163 Swap(i, largest);
173 Swap(i, p);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 114 // Assertion testing for AutocompleteResult::Swap.
115 TEST_F(AutocompleteResultTest, Swap) {
119 // Swap with empty shouldn't do anything interesting.
120 r1.Swap(&r2);
124 // Swap with a single match.
134 r1.Swap(&r2);
history_contents_provider.cc 123 // Clear the results. We swap in an empty one as the easy way to clear it.
125 results_.Swap(&empty_results);
154 // Clear the results. We swap in an empty one as the easy way to clear it.
156 results_.Swap(&empty_results);
  /external/protobuf/src/google/protobuf/
generated_message_reflection_unittest.cc 150 TEST(GeneratedMessageReflectionTest, Swap) {
157 reflection->Swap(&message1, &message2);
172 reflection->Swap(&message1, &message2);
179 reflection->Swap(&message1, &message2);
191 reflection->Swap(&message1, &message2);
205 reflection->Swap(&message1, &message2);
240 // Swap and test that fields are all swapped.
244 // Swap back and test that fields are all back to original values.
256 // Swap and test that fields are all swapped.
260 // Swap back and test that fields are all back to original values
    [all...]
repeated_field.cc 54 void RepeatedPtrFieldBase::Swap(RepeatedPtrFieldBase* other) {
unknown_field_set.h 78 inline void Swap(UnknownFieldSet* x);
195 inline void UnknownFieldSet::Swap(UnknownFieldSet* x) {
196 std::swap(fields_, x->fields_);
descriptor.pb.cc     [all...]
  /external/chromium/chrome/browser/sync/
js_arg_list.cc 38 list_value_.Swap(list_value_copy.get());
  /external/chromium/net/tools/flip_server/
simple_buffer.h 64 void Swap(SimpleBuffer* other) {
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification.cc 22 icon_.Swap(&tmp_gurl);
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 452 void CodeGeneratorRequest::Swap(CodeGeneratorRequest* other) {
454 file_to_generate_.Swap(&other->file_to_generate_);
455 std::swap(parameter_, other->parameter_);
456 proto_file_.Swap(&other->proto_file_);
457 std::swap(_has_bits_[0], other->_has_bits_[0]);
458 _unknown_fields_.Swap(&other->_unknown_fields_);
459 std::swap(_cached_size_, other->_cached_size_);
793 void CodeGeneratorResponse_File::Swap(CodeGeneratorResponse_File* other) {
795 std::swap(name_, other->name_);
796 std::swap(insertion_point_, other->insertion_point_)
    [all...]
  /external/chromium/googleurl/src/
gurl.h 343 GURL_API void Swap(GURL* other);
  /external/webrtc/src/modules/audio_processing/main/test/unit_test/
audio_processing_unittest.pb.h 55 void Swap(Test_Statistic* other);
154 void Swap(Test_EchoMetrics* other);
257 void Swap(Test* other);
390 void Swap(OutputData* other);

Completed in 698 milliseconds

1 2 3