/external/chromium/base/ |
file_descriptor_shuffle.cc | 62 if (!delegate->Move(i->source, i->dest)) 87 bool FileDescriptorTableInjection::Move(int src, int dest) {
|
file_descriptor_shuffle_unittest.cc | 23 MOVE, 56 bool Move(int src, int dest) { 57 actions_.push_back(Action(Action::MOVE, src, dest)); 105 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); 116 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); 117 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3)); 127 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); 139 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0)); 153 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1)); 154 EXPECT_TRUE(tracer.actions()[2] == Action(Action::MOVE, kDuplicateBase, 0)) [all...] |
/external/chromium_org/base/posix/ |
file_descriptor_shuffle.cc | 62 if (!delegate->Move(i->source, i->dest)) 87 bool FileDescriptorTableInjection::Move(int src, int dest) {
|
/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
move_operation.cc | 87 void MoveOperation::Move(const base::FilePath& src_file_path,
|
/external/chromium_org/ui/views/ |
view_model.cc | 35 void ViewModel::Move(int index, int target_index) {
|
/frameworks/av/media/libstagefright/codecs/common/include/ |
voMem.h | 49 VO_U32 (VO_API * Move) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
|
/external/opencv/cvaux/src/ |
_cvvectrack.h | 116 void Move(CvRect& r, int dx, int dy) 123 void Move(CvPoint& p, int dx, int dy)
|
/external/v8/src/arm/ |
macro-assembler-arm.cc | 255 void MacroAssembler::Move(Register dst, Handle<Object> value) { 260 void MacroAssembler::Move(Register dst, Register src, Condition cond) { 267 void MacroAssembler::Move(DoubleRegister dst, DoubleRegister src) { 748 // Compare and move FPSCR flags to the normal condition flags. 755 // Compare and move FPSCR flags to the normal condition flags. 934 Move(dst, d0); [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_model.cc | 178 void AutocompletePopupModel::Move(int count) { 214 // Move the selection to the next choice after the deleted one. 219 // deletability can move there too.
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_selection_model.cc | 111 void TabStripSelectionModel::Move(int from, int to) {
|
/external/chromium_org/ash/shelf/ |
shelf_model.cc | 92 void ShelfModel::Move(int index, int target_index) { 116 // The move function works by removing one item and then inserting it at the 119 // TODO(skuhne): Moving this into the Move function breaks lots of unit 125 Move(index, new_index);
|
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_popup_model.cc | 133 void OmniboxPopupModel::Move(int count) { 180 // Move the selection to the next choice after the deleted one. 185 // deletability can move there too.
|
/external/chromium_org/google_apis/drive/ |
test_util.h | 127 // Following helper templates are to support Chrome's move semantics. 148 // Simulates the std::move function in C++11. We use pointer here for argument, 151 static const T& Move(const T* in) { return *in; } 154 static T Move(T* in) { return in->Pass(); } 157 // Helper to handle Chrome's move semantics correctly. 178 *out = CopyResultCallbackHelper<T1>::Move(&in); 188 *out1 = CopyResultCallbackHelper<T1>::Move(&in1); 189 *out2 = CopyResultCallbackHelper<T2>::Move(&in2); 201 *out1 = CopyResultCallbackHelper<T1>::Move(&in1); 202 *out2 = CopyResultCallbackHelper<T2>::Move(&in2) [all...] |
/external/chromium_org/native_client_sdk/src/tools/ |
oshelpers.py | 211 def Move(args): 516 'mv': Move,
|
/external/chromium_org/ui/base/models/ |
list_model.h | 69 void Move(size_t index, size_t target_index) {
|
list_selection_model.cc | 115 void ListSelectionModel::Move(int from, int to) {
|
/external/chromium_org/v8/src/arm/ |
macro-assembler-arm.cc | 235 void MacroAssembler::Move(Register dst, Handle<Object> value) { 252 void MacroAssembler::Move(Register dst, Register src, Condition cond) { 259 void MacroAssembler::Move(DwVfpRegister dst, DwVfpRegister src) { 349 Move(dst, src, cond); 783 // Compare and move FPSCR flags to the normal condition flags. 790 // Compare and move FPSCR flags to the normal condition flags. [all...] |
/external/chromium_org/webkit/browser/fileapi/ |
async_file_test_helper.cc | 114 base::PlatformFileError AsyncFileTestHelper::Move( 120 context->operation_runner()->Move(
|
/external/chromium_org/base/ |
file_util.cc | 43 bool Move(const FilePath& from_path, const FilePath& to_path) {
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
fileapi_worker.cc | 233 void Move(const base::FilePath& src_file_path, 239 file_system->Move(src_file_path, dest_file_path, preserve_last_modified,
|
/external/chromium_org/chrome/browser/sync_file_system/local/ |
syncable_file_system_operation.cc | 146 void SyncableFileSystemOperation::Move( 162 base::Bind(&FileSystemOperation::Move,
|
/external/chromium_org/chrome/browser/ui/app_list/ |
extension_app_item.cc | 141 void ExtensionAppItem::Move(const ExtensionAppItem* prev,
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
buildbot_common.py | 167 def Move(src, dst): 168 """Move the path src to dst.""" 170 oshelpers.Move(['-f', src, dst])
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
HitTestRequest.h | 33 Move = 1 << 3, 55 bool move() const { return m_requestType & Move; } function in class:WebCore::HitTestRequest 68 bool touchMove() const { return move() && touchEvent(); }
|
/external/chromium_org/v8/src/ |
splay-tree-inl.h | 51 // Splay on the key to move the last node on the search path 115 // Splay on the key to move the node with the given key or the last 139 // Splay on the key to move the node with the given key or the last 183 bool SplayTree<Config, Allocator>::Move(const Key& old_key,
|