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

1 2

  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DragAndDropManagerTests.java 46 import com.android.documentsui.testing.TestEnv;
66 private TestEnv mEnv;
97 mEnv = TestEnv.create();
151 Arrays.asList(TestEnv.FILE_APK, TestEnv.FILE_JPG),
153 Arrays.asList(TestEnv.FOLDER_0.derivedUri, TestEnv.FILE_APK.derivedUri,
154 TestEnv.FILE_JPG.derivedUri),
157 TestEnv.FOLDER_0);
166 Arrays.asList(TestEnv.FILE_APK, TestEnv.FILE_JPG)
    [all...]
AbstractActionHandlerTest.java 40 import com.android.documentsui.testing.TestEnv;
58 private TestEnv mEnv;
63 mEnv = TestEnv.create();
119 Arrays.asList(TestEnv.FOLDER_1.documentId, TestEnv.FOLDER_2.documentId));
120 mEnv.docs.nextDocuments = Arrays.asList(TestEnv.FOLDER_1, TestEnv.FOLDER_2);
122 mHandler.openContainerDocument(TestEnv.FOLDER_2);
127 assertEquals(TestEnv.FOLDER_2, mEnv.state.stack.peek());
136 mEnv.docs.nextDocuments = Arrays.asList(TestEnv.FOLDER_1, TestEnv.FOLDER_2)
    [all...]
RecentsLoaderTests.java 30 import com.android.documentsui.testing.TestEnv;
44 private TestEnv mEnv;
50 mEnv = TestEnv.create();
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/files/
TestActivity.java 20 import com.android.documentsui.testing.TestEnv;
26 public static TestActivity create(TestEnv env) {
QuickViewIntentBuilderTest.java 12 import com.android.documentsui.testing.TestEnv;
29 private TestEnv mEnv;
35 mEnv = TestEnv.create();
44 new QuickViewIntentBuilder(mPm, mRes, TestEnv.FILE_IN_ARCHIVE, mEnv.archiveModel);
55 new QuickViewIntentBuilder(mPm, mRes, TestEnv.FILE_JPG, mEnv.model);
ActionHandlerTest.java 58 import com.android.documentsui.testing.TestEnv;
72 private TestEnv mEnv;
83 mEnv = TestEnv.create();
98 mEnv.selectDocument(TestEnv.FILE_GIF);
116 mHandler.springOpenDirectory(TestEnv.FOLDER_0);
118 assertEquals(TestEnv.FOLDER_0, mEnv.state.stack.peek());
133 mEnv.selectDocument(TestEnv.FILE_READ_ONLY);
205 mEnv = TestEnv.create(ArchivesProvider.AUTHORITY);
210 mEnv.selectDocument(TestEnv.FILE_PDF);
220 mEnv.selectDocument(TestEnv.FILE_PDF)
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
cpu_id.cc 172 static LIBYUV_BOOL TestEnv(const char* name) {
182 static LIBYUV_BOOL TestEnv(const char*) {
222 if (TestEnv("LIBYUV_DISABLE_X86")) {
225 if (TestEnv("LIBYUV_DISABLE_SSE2")) {
228 if (TestEnv("LIBYUV_DISABLE_SSSE3")) {
231 if (TestEnv("LIBYUV_DISABLE_SSE41")) {
234 if (TestEnv("LIBYUV_DISABLE_SSE42")) {
237 if (TestEnv("LIBYUV_DISABLE_AVX")) {
240 if (TestEnv("LIBYUV_DISABLE_AVX2")) {
243 if (TestEnv("LIBYUV_DISABLE_ERMS"))
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/picker/
ActionHandlerTest.java 42 import com.android.documentsui.testing.TestEnv;
58 private TestEnv mEnv;
65 mEnv = TestEnv.create();
96 mEnv.state.stack.push(TestEnv.FOLDER_0);
141 TestEnv.FOLDER_0.documentId,
142 TestEnv.FOLDER_1.documentId,
143 TestEnv.FILE_GIF.documentId));
145 Arrays.asList(TestEnv.FOLDER_0, TestEnv.FOLDER_1, TestEnv.FILE_GIF)
    [all...]
TestActivity.java 23 import com.android.documentsui.testing.TestEnv;
33 public static TestActivity create(TestEnv env) {
40 public void init(TestEnv env) {
  /external/libyuv/files/source/
cpu_id.cc 203 static LIBYUV_BOOL TestEnv(const char* name) {
213 static LIBYUV_BOOL TestEnv(const char*) {
249 if (TestEnv("LIBYUV_DISABLE_X86")) {
252 if (TestEnv("LIBYUV_DISABLE_SSE2")) {
255 if (TestEnv("LIBYUV_DISABLE_SSSE3")) {
258 if (TestEnv("LIBYUV_DISABLE_SSE41")) {
261 if (TestEnv("LIBYUV_DISABLE_SSE42")) {
264 if (TestEnv("LIBYUV_DISABLE_AVX")) {
267 if (TestEnv("LIBYUV_DISABLE_AVX2")) {
270 if (TestEnv("LIBYUV_DISABLE_ERMS"))
    [all...]
  /external/autotest/client/cros/
webstore_test.py 46 TestEnv = enum('staging', 'pnl', 'prod', 'sandbox')
100 if test_env == TestEnv.prod:
104 TestEnv.staging: 'staging.corp',
105 TestEnv.sandbox: 'staging.sandbox',
106 TestEnv.pnl: 'prod-not-live.corp'
109 TestEnv.staging: 'download-staging.corp',
110 TestEnv.sandbox: 'download-staging.sandbox',
111 TestEnv.pnl: 'omaha.sandbox'
130 def initialize(self, test_env=TestEnv.sandbox,
146 TestEnv.staging
    [all...]
  /external/lisa/libs/utils/
__init__.py 20 from env import TestEnv
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestActionHandler.java 31 private final TestEnv mEnv;
39 this(TestEnv.create());
42 public TestActionHandler(TestEnv env) {
TestEnv.java 42 public class TestEnv {
75 private TestEnv(String authority) {
114 public static TestEnv create() {
118 public static TestEnv create(String authority) {
119 TestEnv env = new TestEnv(authority);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/dirlist/
ModelBackedDocumentsAdapterTest.java 30 import com.android.documentsui.testing.TestEnv;
38 private TestEnv mEnv;
45 mEnv = TestEnv.create(AUTHORITY);
DragHostTest.java 37 import com.android.documentsui.testing.TestEnv;
52 private TestEnv mEnv;
65 mEnv = TestEnv.create();
88 mNextDocumentInfo = TestEnv.FOLDER_0;
DirectoryAddonsAdapterTest.java 33 import com.android.documentsui.testing.TestEnv;
41 private TestEnv mEnv;
47 mEnv = TestEnv.create(AUTHORITY);
  /external/lisa/experiments/
run_idle_resume.py 10 from env import TestEnv
100 te = TestEnv(my_conf, wipe=False)
run_suspend_resume.py 10 from env import TestEnv
100 te = TestEnv(my_conf, wipe=False)
run_youtube.py 10 from env import TestEnv
94 te = TestEnv(my_conf, wipe=False)
run_camera.py 10 from env import TestEnv
111 te = TestEnv(my_conf, wipe=False)
run_uibench.py 10 from env import TestEnv
99 te = TestEnv(my_conf, wipe=False)
run_uibench_cgroup.py 14 from env import TestEnv
109 te = TestEnv(my_conf, wipe=False)
  /external/lisa/experiments/scratch/
run_suspend_resume_b63331203.py 10 from env import TestEnv
109 te = TestEnv(my_conf, wipe=False)
  /external/lisa/
logging.conf 20 # For example, to enable debugging just for the TestEnv module, you need to
23 keys=root,Target,AndroidTarget,android,LinuxTarget,ssh,TestEnv,LisaTest,Executor,Workload,RTApp,Benchmark,local_connection
32 qualname=TestEnv

Completed in 165 milliseconds

1 2