HomeSort by relevance Sort by last modified time
    Searched full:bots (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
RenameDocumentUiTest.java 37 bots.roots.closeDrawer();
41 bots.directory.selectDocument(fileName1, 1);
42 bots.main.openOverflowMenu();
43 bots.main.assertMenuEnabled(R.string.menu_rename, true);
50 bots.directory.selectDocument(fileNameNoRename, 1);
51 bots.main.openOverflowMenu();
52 bots.main.assertMenuEnabled(R.string.menu_rename, false);
59 bots.directory.selectDocument(fileName1, 1);
60 bots.directory.selectDocument(fileNameNoRename, 2);
61 bots.main.openOverflowMenu()
    [all...]
GestureSelectionUiTest.java 34 bots.roots.closeDrawer();
38 bots.main.switchToGridMode();
39 bots.gesture.gestureSelectFiles(fileName1, fileName2);
41 bots.directory.assertSelection(2);
45 bots.main.switchToGridMode();
46 bots.gesture.gestureSelectFiles(fileName2, dirName1);
48 bots.directory.assertSelection(3);
53 bots.main.switchToListMode();
54 bots.gesture.gestureSelectFiles(fileName1, fileName2);
56 bots.directory.assertSelection(2)
    [all...]
FilesActivityUiTest.java 55 bots.roots.openRoot("Recent");
56 bots.main.assertWindowTitle("Recent");
60 bots.roots.openRoot("Images");
61 bots.main.assertWindowTitle("Images");
65 bots.roots.openRoot("Demo Root");
66 bots.main.switchToListMode();
67 bots.directory.openDocument("throw a authentication exception");
68 bots.directory.assertHeaderMessageText(
74 bots.directory.assertDocumentsPresent("file0.log", "file1.png", "file2.csv");
80 bots.directory.waitForDocument("Ham & Cheese.sandwich")
    [all...]
SearchViewUiTest.java 40 bots.roots.closeDrawer();
43 bots.directory.waitForDocument(fileName1);
48 bots.search.assertInputExists(false);
49 bots.search.assertIconVisible(true);
53 bots.roots.openRoot(ROOT_1_ID); // root 1 doesn't support search
55 bots.search.assertIconVisible(false);
56 bots.search.assertInputExists(false);
60 bots.search.clickIcon();
63 bots.search.assertInputExists(true);
64 bots.search.assertInputFocused(true)
    [all...]
FileManagementUiTest.java 58 bots.main.openOverflowMenu();
61 bots.main.clickToolbarOverflowItem("New folder");
64 bots.main.setDialogText("Kung Fu Panda");
67 bots.keyboard.pressEnter();
69 bots.directory.waitForDocument("Kung Fu Panda");
73 bots.directory.clickDocument("file1.png");
75 bots.main.clickToolbarItem(R.id.menu_delete);
77 bots.main.clickDialogOkButton();
80 bots.directory.assertDocumentsAbsent("file1.png");
84 bots.directory.clickDocument("file1.png")
    [all...]
ArchiveUiTest.java 30 bots.roots.openRoot("ResourcesProvider");
31 bots.directory.openDocument("archive.zip");
32 bots.directory.waitForDocument("file1.txt");
33 bots.directory.assertDocumentsPresent("dir1", "dir2", "file1.txt");
34 bots.directory.openDocument("dir1");
35 bots.directory.waitForDocument("cherries.txt");
39 bots.roots.openRoot("ResourcesProvider");
40 bots.directory.openDocument("broken.zip");
43 bots.directory.assertPlaceholderMessageText(msg);
SidebarUiTest.java 43 bots.directory.openDocument(dirName1);
44 bots.breadcrumb.assertTitle(dirName1);
45 bots.roots.openRoot(ROOT_0_ID);
46 bots.main.assertWindowTitle(ROOT_0_ID);
52 bots.directory.selectDocument(fileName1, 1);
53 bots.main.assertInActionMode(true);
55 bots.roots.openRoot(ROOT_1_ID);
56 bots.main.assertInActionMode(false);
SortDocumentUiTest.java 57 bots.roots.closeDrawer();
86 bots.directory.assertOrder(DIRS_IN_NAME_ASC, FILES_IN_NAME_ASC);
92 bots.main.switchToListMode();
94 bots.sortHeader.sortBy(
96 bots.directory.assertOrder(DIRS_IN_NAME_DESC, FILES_IN_NAME_DESC);
102 bots.main.switchToListMode();
104 bots.sortHeader.sortBy(
106 bots.directory.assertOrder(DIRS_IN_NAME_ASC, FILES_IN_SIZE_ASC);
112 bots.main.switchToListMode();
114 bots.sortHeader.sortBy
    [all...]
KeyboardNavigationUiTest.java 47 bots.keyboard.pressKey(KeyEvent.KEYCODE_TAB);
48 bots.roots.assertHasFocus();
49 bots.keyboard.pressKey(KeyEvent.KEYCODE_TAB);
50 bots.directory.assertHasFocus();
57 bots.keyboard.pressKey(KeyEvent.KEYCODE_DPAD_LEFT);
58 bots.directory.assertHasFocus();
61 bots.keyboard.pressKey(KeyEvent.KEYCODE_DPAD_RIGHT);
62 bots.directory.assertHasFocus();
68 bots.roots.closeDrawer();
69 if (bots.main.inFixedLayout())
    [all...]
BandSelectionUiTest.java 36 bots.roots.closeDrawer();
40 bots.main.switchToGridMode();
41 Rect dirListBounds = bots.directory.findDocumentsList().getBounds();
44 bots.gesture.bandSelection(start, end);
46 bots.directory.assertSelection(4);
50 bots.main.switchToGridMode();
51 Rect dirListBounds = bots.directory.findDocumentsList().getBounds();
52 Rect startDoc = bots.directory.findDocument(fileName2).getBounds();
57 bots.gesture.bandSelection(start, end);
59 bots.directory.assertSelection(3)
    [all...]
ContextMenuUiTest.java 43 bots.roots.closeDrawer();
81 bots.directory.rightClickDocument("file1.png");
82 bots.menu.assertPresentMenuItems(menuItems);
92 bots.directory.rightClickDocument("Dir1");
93 bots.menu.assertPresentMenuItems(menuItems);
100 bots.directory.selectDocument("file1.png", 1);
101 bots.directory.selectDocument("Dir1", 2);
102 bots.directory.rightClickDocument("Dir1");
103 bots.menu.assertPresentMenuItems(menuItems);
110 Rect dirListBounds = bots.directory.findDocumentsList().getBounds()
    [all...]
ActivityTest.java 35 import com.android.documentsui.bots.Bots;
36 import com.android.documentsui.bots.UiBot;
59 public Bots bots; field in class:ActivityTest
108 bots = new Bots(device, automation, context, TIMEOUT);
126 bots.roots.closeDrawer();
165 bots.directory.waitForDocument(fileName1);
166 bots.directory.waitForDocument(fileName2)
    [all...]
FilesActivityDefaultsUiTest.java 52 bots.main.assertWindowTitle("Documents");
54 bots.main.assertWindowTitle("Downloads");
61 bots.roots.openRoot(rootDir0.title);
64 bots.directory.assertPlaceholderMessageText(msg);
75 bots.roots.assertRootsPresent(
85 bots.roots.assertRootsPresent("Documents");
87 bots.roots.assertRootsAbsent("Documents");
  /external/libmojo/mojo/android/javatests/
DEPS 2 # out should be allowed by default, but bots are failing on this.
  /external/skia/
.gitignore 19 infra/bots/tools/luci-go/linux64/cipd
20 infra/bots/tools/luci-go/linux64/isolate
21 infra/bots/tools/luci-go/mac64/cipd
22 infra/bots/tools/luci-go/mac64/isolate
23 infra/bots/tools/luci-go/win64/cipd.exe
24 infra/bots/tools/luci-go/win64/isolate.exe
  /external/skia/infra/bots/assets/
README.md 4 This directory contains tooling for managing assets used by the bots. The
28 $ infra/bots/assets/assets.py add myasset
29 Creating asset in infra/bots/assets/myasset
30 Creating infra/bots/assets/myasset/download.py
31 Creating infra/bots/assets/myasset/upload.py
32 Creating infra/bots/assets/myasset/common.py
34 $ infra/bots/assets/myasset/upload.py -t ${MY_ASSET_LOCATION}
41 $ infra/bots/assets/assets.py add myasset
43 $ vi infra/bots/assets/myasset/create.py
45 $ infra/bots/assets/myasset/create_and_upload.p
    [all...]
  /external/boringssl/src/util/bot/
README 2 continuous integration bots. It is in the repository for convenience and can be
  /external/skia/site/dev/contrib/
c++11.md 5 clients support and what our build bots support.
32 so we cannot rely on that. Our bots disable this too, so keep an eye on TSAN.
48 Bots
51 Most of our bots are pretty up-to-date: the Windows bots use MSVC 2013, the Mac
52 bots a recent Clang, and the Linux bots GCC 4.8 or a recent Clang. Our Android
53 bots use a recent toolchain from Android (see above), and our Chrome bots use
54 Chrome's toolchains (see above). I'm not exactly sure what our Chrome OS bots
    [all...]
  /external/skia/bin/
fetch-skps 8 DOWNLOAD_SCRIPT=$(cd $(dirname $0)/..; pwd)/infra/bots/assets/skp/download.py
list-skia-bots 10 path = os.path.join(os.path.dirname(__file__), os.pardir, 'infra', 'bots', 'tasks.json')
  /external/v8/tools/
try_perf.py 11 BOTS = {
67 for option in sorted(BOTS):
69 option, dest='bots', action='append_const', const=BOTS[option],
70 help='Add %s trybot.' % BOTS[option])
72 if not options.bots:
74 options.bots = DEFAULT_BOTS
98 cmd += ['-b %s' % bot for bot in options.bots]
  /external/libyuv/files/tools_libyuv/msan/
blacklist.txt 3 # mentioned here, changing this file requires clobbering all MSan bots.
  /external/skia/infra/bots/ct/blacklists/
README.md 1 Blacklists for CT bots
  /external/webrtc/tools/msan/
blacklist.txt 3 # mentioned here, changing this file requires clobbering all MSan bots.
  /external/skia/infra/bots/recipes/
swarm_test.py 34 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
36 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
38 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',

Completed in 1074 milliseconds

1 2 3 4 5 6 7 8 91011>>