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

1 2 3 4

  /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) {
  /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...]
  /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_);
  /external/marisa-trie/lib/marisa/
reader.cc 53 Reader().swap(this);
56 void Reader::swap(Reader *rhs) { function in class:marisa::Reader
58 Swap(&file_, &rhs->file_);
59 Swap(&fd_, &rhs->fd_);
60 Swap(&stream_, &rhs->stream_);
61 Swap(&needs_fclose_, &rhs->needs_fclose_);
writer.cc 65 Writer().swap(this);
68 void Writer::swap(Writer *rhs) { function in class:marisa::Writer
70 Swap(&file_, &rhs->file_);
71 Swap(&fd_, &rhs->fd_);
72 Swap(&stream_, &rhs->stream_);
73 Swap(&needs_fclose_, &rhs->needs_fclose_);
mapper.cc 89 temp.swap(this);
113 temp.swap(this);
118 Mapper().swap(this);
121 void Mapper::swap(Mapper *rhs) { function in class:marisa::Mapper
123 Swap(&ptr_, &rhs->ptr_);
124 Swap(&avail_, &rhs->avail_);
125 Swap(&origin_, &rhs->origin_);
126 Swap(&size_, &rhs->size_);
128 Swap(&file_, &rhs->file_);
129 Swap(&map_, &rhs->map_)
    [all...]
vector-inline.h 27 temp_mapper.swap(mapper);
44 temp.swap(this);
80 temp.swap(this);
188 void Vector<T>::swap(Vector *rhs) { function in class:marisa::Vector
190 Swap(&buf_, &rhs->buf_);
191 Swap(&objs_, &rhs->objs_);
192 Swap(&size_, &rhs->size_);
193 Swap(&capacity_, &rhs->capacity_);
194 Swap(&fixed_, &rhs->fixed_);
intvector.cc 33 units_.swap(&temp_units);
49 temp_mapper.swap(mapper);
63 temp.swap(this);
94 temp.swap(this);
127 IntVector().swap(this);
130 void IntVector::swap(IntVector *rhs) { function in class:marisa::IntVector
132 units_.swap(&rhs->units_);
133 Swap(&num_bits_per_int_, &rhs->num_bits_per_int_);
134 Swap(&mask_, &rhs->mask_);
135 Swap(&size_, &rhs->size_)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
reader.cc 53 Reader().swap(this);
56 void Reader::swap(Reader *rhs) { function in class:marisa_alpha::Reader
58 Swap(&file_, &rhs->file_);
59 Swap(&fd_, &rhs->fd_);
60 Swap(&stream_, &rhs->stream_);
61 Swap(&needs_fclose_, &rhs->needs_fclose_);
writer.cc 65 Writer().swap(this);
68 void Writer::swap(Writer *rhs) { function in class:marisa_alpha::Writer
70 Swap(&file_, &rhs->file_);
71 Swap(&fd_, &rhs->fd_);
72 Swap(&stream_, &rhs->stream_);
73 Swap(&needs_fclose_, &rhs->needs_fclose_);
mapper.cc 92 temp.swap(this);
117 temp.swap(this);
122 Mapper().swap(this);
125 void Mapper::swap(Mapper *rhs) { function in class:marisa_alpha::Mapper
127 Swap(&ptr_, &rhs->ptr_);
128 Swap(&avail_, &rhs->avail_);
129 Swap(&origin_, &rhs->origin_);
130 Swap(&size_, &rhs->size_);
132 Swap(&file_, &rhs->file_);
133 Swap(&map_, &rhs->map_)
    [all...]
vector-inline.h 27 temp_mapper.swap(mapper);
44 temp.swap(this);
80 temp.swap(this);
188 void Vector<T>::swap(Vector *rhs) { function in class:marisa_alpha::Vector
190 Swap(&buf_, &rhs->buf_);
191 Swap(&objs_, &rhs->objs_);
192 Swap(&size_, &rhs->size_);
193 Swap(&capacity_, &rhs->capacity_);
194 Swap(&fixed_, &rhs->fixed_);
intvector.cc 33 units_.swap(&temp_units);
49 temp_mapper.swap(mapper);
63 temp.swap(this);
94 temp.swap(this);
127 IntVector().swap(this);
130 void IntVector::swap(IntVector *rhs) { function in class:marisa_alpha::IntVector
132 units_.swap(&rhs->units_);
133 Swap(&num_bits_per_int_, &rhs->num_bits_per_int_);
134 Swap(&mask_, &rhs->mask_);
135 Swap(&size_, &rhs->size_)
    [all...]
  /external/openfst/src/include/fst/
heap.h 98 Swap(0, size_-1);
140 // Swap a child, parent. Use to move element up/down tree.
141 // Note a little tricky here. When we swap we need to swap:
145 void Swap(int j, int k) {
176 Swap(i, largest);
186 Swap(i, p);
  /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);
  /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) {
  /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) {

Completed in 2734 milliseconds

1 2 3 4