Home
last modified time | relevance | path

Searched refs:selectDocument (Results 1 – 9 of 9) sorted by relevance

/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
DRenameDocumentUiTest.java41 bots.directory.selectDocument(fileName1, 1); in testRenameEnabled_SingleSelection()
50 bots.directory.selectDocument(fileNameNoRename, 1); in testNoRenameSupport_SingleSelection()
59 bots.directory.selectDocument(fileName1, 1); in testOneHasRenameSupport_MultipleSelection()
60 bots.directory.selectDocument(fileNameNoRename, 2); in testOneHasRenameSupport_MultipleSelection()
69 bots.directory.selectDocument(fileName1, 1); in testRenameDisabled_MultipleSelection()
70 bots.directory.selectDocument(fileName2, 2); in testRenameDisabled_MultipleSelection()
79 bots.directory.selectDocument(fileName1, 1); in testRenameFile_OkButton()
95 bots.directory.selectDocument(fileName1, 1); in testRenameFile_Enter()
111 bots.directory.selectDocument(fileName1, 1); in testRenameWithoutChangeIsNoOp()
123 bots.directory.selectDocument(fileName1, 1); in testRenameFile_Cancel()
[all …]
DFileManagementUiTest.java80 bots.directory.selectDocument("file1.png"); in testDeleteDocument()
91 bots.directory.selectDocument("file1.png"); in testKeyboard_CutDocument()
108 bots.directory.selectDocument("file1.png"); in testKeyboard_CopyDocument()
124 bots.directory.selectDocument("file1.png"); in testDeleteDocument_Cancel()
DContextMenuUiTest.java100 bots.directory.selectDocument("file1.png", 1); in testContextMenu_onMixedFileDir()
101 bots.directory.selectDocument("Dir1", 2); in testContextMenu_onMixedFileDir()
DFilesActivityUiTest.java107 bots.directory.selectDocument("file0.log", 1); in testNavigate_inFixedLayout_whileHasSelection()
120 bots.directory.selectDocument("file0.log"); in testNavigationToInspector()
DSidebarUiTest.java52 bots.directory.selectDocument(fileName1, 1); in testRootChanged_ClearSelection()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/files/
DActionHandlerTest.java98 mEnv.selectDocument(TestEnv.FILE_GIF); in setUp()
133 mEnv.selectDocument(TestEnv.FILE_READ_ONLY); in testCutSelectedDocuments_ContainsNonMovableItem()
210 mEnv.selectDocument(TestEnv.FILE_PDF); in testShareSelectedDocuments_ArchivedFile()
220 mEnv.selectDocument(TestEnv.FILE_PDF); in testShareSelectedDocuments_Multiple()
238 mEnv.selectDocument(TestEnv.FILE_VIRTUAL); in testShareSelectedDocuments_VirtualFiles()
251 mEnv.selectDocument(TestEnv.FILE_PNG); in testShareSelectedDocuments_RegularAndVirtualFiles()
252 mEnv.selectDocument(TestEnv.FILE_VIRTUAL); in testShareSelectedDocuments_RegularAndVirtualFiles()
270 mEnv.selectDocument(TestEnv.FILE_PARTIAL); in testShareSelectedDocuments_OmitsPartialFiles()
271 mEnv.selectDocument(TestEnv.FILE_PNG); in testShareSelectedDocuments_OmitsPartialFiles()
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DUserInputHandler.java191 private boolean selectDocument(DocumentDetails doc) { in selectDocument() method in UserInputHandler
265 selectDocument(doc); in onSingleTapUp()
274 ? selectDocument(doc) in onSingleTapUp()
303 selectDocument(doc); in onLongPress()
461 selectDocument(doc); in onRightClick()
473 selectDocument(event.getDocumentDetails()); in selectOrFocusItem()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DDirectoryListBot.java151 public void selectDocument(String label) throws UiObjectNotFoundException { in selectDocument() method in DirectoryListBot
161 public void selectDocument(String label, int number) throws UiObjectNotFoundException { in selectDocument() method in DirectoryListBot
162 selectDocument(label); in selectDocument()
186 selectDocument(label); in copyFilesToClipboard()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DTestEnv.java175 public void selectDocument(DocumentInfo info) { in selectDocument() method in TestEnv