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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/cc/base/
invalidation_region.cc 21 void InvalidationRegion::Swap(Region* region) {
22 region_.Swap(region);
invalidation_region.h 22 void Swap(Region* region);
  /external/chromium_org/remoting/base/
typed_buffer.h 38 temp.Swap(*rvalue.object);
39 Swap(temp);
52 temp.Swap(*rvalue.object);
53 Swap(temp);
82 // Swap two buffers.
83 void Swap(TypedBuffer& other) {
84 std::swap(buffer_, other.buffer_);
85 std::swap(length_, other.length_);
  /external/chromium_org/mojo/public/cpp/bindings/lib/
message_queue.cc 32 queue_.back()->Swap(message);
37 queue_.front()->Swap(message);
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_external_loader.cc 19 kiosk_apps_.Swap(prefs.get());
  /external/chromium_org/mojo/system/
message_in_transit_queue.cc 27 void MessageInTransitQueue::Swap(MessageInTransitQueue* other) {
28 queue_.swap(other->queue_);
message_in_transit_queue.h 48 void Swap(MessageInTransitQueue* other);
  /external/chromium_org/remoting/host/win/
window_station_and_desktop.h 32 void Swap(WindowStationAndDesktop& other);
security_descriptor.cc 117 absolute_sd->Swap(local_absolute_sd);
118 dacl->Swap(local_dacl);
119 group->Swap(local_group);
120 owner->Swap(local_owner);
121 sacl->Swap(local_sacl);
window_station_and_desktop.cc 22 std::swap(desktop_, desktop);
28 std::swap(window_station_, window_station);
33 void WindowStationAndDesktop::Swap(WindowStationAndDesktop& other) {
34 std::swap(desktop_, other.desktop_);
35 std::swap(window_station_, other.window_station_);
  /external/chromium_org/sync/internal_api/public/util/
immutable.h 43 // state, incurs only the cost of a swap of LargeObjectLists, which is
50 // find a swap() function for T, falling back to std::swap() when
51 // necessary. If you overload swap() for your type in its namespace,
52 // or if you specialize std::swap() for your type, (see
56 // Alternatively, you could explicitly control which swap function is
67 // For std::swap().
92 Traits::Swap(Traits::UnwrapMutable(&wrapper_), t);
117 // your own swap method. First, consider the pre-defined traits
121 // everything else) and provide your own Swap() method
    [all...]
  /external/chromium_org/components/history/core/browser/
url_row.cc 41 void URLRow::Swap(URLRow* other) {
42 std::swap(id_, other->id_);
43 url_.Swap(&other->url_);
44 title_.swap(other->title_);
45 std::swap(visit_count_, other->visit_count_);
46 std::swap(typed_count_, other->typed_count_);
47 std::swap(last_visit_, other->last_visit_);
48 std::swap(hidden_, other->hidden_);
84 URLRow::Swap(other);
85 std::swap(visit_time_, other->visit_time_)
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/
interface_ptr.h 26 internal_state_.Swap(&other.object->internal_state_);
30 internal_state_.Swap(&other.object->internal_state_);
44 internal_state_.Swap(&doomed);
96 internal_state_.Swap(&state);
struct_ptr.h 66 void Swap(StructPtr* other) {
67 std::swap(ptr_, other->ptr_);
85 Swap(other);
130 void Swap(InlinedStructPtr* other) {
131 std::swap(value_, other->value_);
132 std::swap(is_null_, other->is_null_);
147 Swap(other);
  /external/chromium_org/net/spdy/
spdy_pinnable_buffer_piece.h 47 void Swap(SpdyPinnableBufferPiece* other);
spdy_pinnable_buffer_piece_test.cc 50 TEST_F(SpdyPinnableBufferPieceTest, Swap) {
63 piece1.Swap(&piece2);
71 piece2.Swap(&empty);
spdy_pinnable_buffer_piece.cc 22 void SpdyPinnableBufferPiece::Swap(SpdyPinnableBufferPiece* other) {
31 storage_.swap(other->storage_);
spdy_headers_block_parser.cc 49 prefix.Swap(&headers_block_prefix_);
50 key.Swap(&key_);
115 key_.Swap(&key);
162 headers_block_prefix_.Swap(&empty);
166 key_.Swap(&empty);
  /external/chromium_org/base/
pending_task.h 48 // Wrapper around std::queue specialized for PendingTask which adds a Swap
52 void Swap(TaskQueue* queue);
  /external/chromium_org/base/win/
scoped_bstr.h 64 // Swap values of two ScopedBstr's.
65 void Swap(ScopedBstr& bstr2);
  /external/chromium_org/components/query_parser/
snippet.h 61 void Swap(Snippet* other);
  /external/chromium_org/gpu/command_buffer/client/
context_support.h 28 virtual void Swap() = 0;
35 // primary surface during the next buffer swap.
  /external/chromium_org/third_party/webrtc/common_video/
plane.h 41 // Swap plane data.
42 void Swap(Plane& plane);
  /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/chromium_org/sync/api/attachments/
attachment_id.cc 34 void AttachmentId::ImmutableAttachmentIdProtoTraits::Swap(
37 t1->Swap(t2);

Completed in 792 milliseconds

1 2 3 4 5 6 7 8 910