Searched refs:resourceDir (Results 1 - 10 of 10) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DRawResourceLoader.java11 private File resourceDir; field in class:RawResourceLoader
13 public RawResourceLoader(ResourceExtractor resourceExtractor, File resourceDir) { argument
15 this.resourceDir = resourceDir;
22 File rawResourceDir = new File(resourceDir, "raw");
H A DResourceLoader.java53 private File resourceDir; field in class:ResourceLoader
77 public ResourceLoader( int sdkVersion, Class rClass, File resourceDir, File assetsDir ) throws Exception { argument
78 this( sdkVersion, rClass, resourceDir, assetsDir, "");
81 public ResourceLoader( int sdkVersion, Class rClass, File resourceDir, File assetsDir, String locale ) throws Exception { argument
98 drawableResourceLoader = new DrawableResourceLoader( resourceExtractor, resourceDir );
99 rawResourceLoader = new RawResourceLoader( resourceExtractor, resourceDir );
103 this.resourceDir = resourceDir;
129 if ( resourceDir != null ) {
139 File localValueResourceDir = getValueResourceDir( resourceDir );
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dmain.cpp39 QString resourceDir; local
43 resourceDir = QLibraryInfo::location(QLibraryInfo::TranslationsPath);
44 if (!translator.load("wpa_gui_" + locale, resourceDir))
/external/robolectric-shadows/annotations/src/main/java/org/robolectric/annotation/
H A DConfig.java139 String resourceDir() default DEFAULT_RES_FOLDER;
189 private final String resourceDir; field in class:Config.Implementation
210 properties.getProperty("resourceDir", DEFAULT_RES_FOLDER),
290 public Implementation(int[] sdk, int minSdk, int maxSdk, String manifest, String qualifiers, String packageName, String abiSplit, String resourceDir, String assetDir, String buildDir, Class<?>[] shadows, String[] instrumentedPackages, Class<? extends Application> application, String[] libraries, Class<?> constants) { argument
298 this.resourceDir = resourceDir;
356 public String resourceDir() { method in class:Config.Implementation
357 return resourceDir;
399 protected String resourceDir = Config.DEFAULT_RES_FOLDER; field in class:Config.Builder
419 resourceDir
464 setResourceDir(String resourceDir) argument
[all...]
/external/robolectric/v3/
H A Drobolectric-annotations-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/annotation/ org/robolectric/annotation/internal/ ...
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
H A DDefaultManifestFactory.java35 if (!Config.DEFAULT_RES_FOLDER.equals(config.resourceDir())) {
36 resourcesDir = resolveFile(config.resourceDir());
H A DMavenManifestFactory.java38 final FsFile resDir = baseDir.join(config.resourceDir());
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
H A DConfigMergerTest.java130 "resourceDir: from/properties/file/res\n" +
207 private static void assertConfig(Config config, int[] sdk, String manifest, Class<? extends Application> application, String packageName, String qualifiers, String resourceDir, argument
214 assertThat(config.resourceDir()).isEqualTo(resourceDir);
223 @Config(sdk = 1, manifest = "foo", application = TestFakeApp.class, packageName = "com.example.test", shadows = Test1.class, instrumentedPackages = "com.example.test1", libraries = "libs/test", qualifiers = "from-test", resourceDir = "test/res", assetDir = "test/assets", constants = BuildConfigConstants.class)
235 @Config(sdk = 9, manifest = "furf", application = TestApplication.class, packageName = "com.example.method", shadows = Test2.class, instrumentedPackages = "com.example.method1", libraries = "libs/method", qualifiers = "from-method", resourceDir = "method/res", assetDir = "method/assets", constants = BuildConfigConstants2.class)
252 @Config(sdk = 9, manifest = "furf", application = TestFakeApp.class, packageName = "com.example.method", shadows = Test1.class, instrumentedPackages = "com.example.method2", libraries = "libs/method", qualifiers = "from-method", resourceDir = "method/res", assetDir = "method/assets", constants = BuildConfigConstants.class)
295 @Config(qualifiers = "from-class6", shadows = Test6.class, instrumentedPackages = "com.example.test6", resourceDir = "class6/res", constants = BuildConfigConstants6.class)
H A DConfigTest.java22 assertThat(defaults.resourceDir()).isEqualTo("res");
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
H A DRobolectricTestRunner.java224 return new MethodPassThrough(method, sdk, minSdk, maxSdk, manifest, qualifiers, packageName, abiSplit, resourceDir, assetDir, buildDir, shadows, instrumentedPackages, application, libraries, constants);
532 private MethodPassThrough(FrameworkMethod method, int[] sdk, int minSdk, int maxSdk, String manifest, String qualifiers, String packageName, String abiSplit, String resourceDir, String assetDir, String buildDir, Class<?>[] shadows, String[] instrumentedPackages, Class<? extends Application> application, String[] libraries, Class<?> constants) { argument
533 super(sdk, minSdk, maxSdk, manifest, qualifiers, packageName, abiSplit, resourceDir, assetDir, buildDir, shadows, instrumentedPackages, application, libraries, constants);

Completed in 327 milliseconds