Searched defs:move_backward (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSmallVector.h192 /// move_backward - Use move-assignment to move the range
195 /// std::move_backward, but not all stdlibs actually provide that.
197 static It2 move_backward(It1 I, It1 E, It2 Dest) {
289 /// move_backward - Use move-assignment to move the range
293 static It2 move_backward(It1 I, It1 E, It2 Dest) { function in class:llvm::SmallVectorTemplateBase
493 this->move_backward(I, this->end()-1, this->end());
522 this->move_backward(I, this->end()-1, this->end());
563 this->move_backward(I, OldEnd-NumToInsert, OldEnd);
617 this->move_backward(I, OldEnd-NumToInsert, OldEnd);

Completed in 182 milliseconds