OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:resourceFile
(Results
1 - 7
of
7
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java
30
import com.android.ide.common.resources.
ResourceFile
;
415
List<
ResourceFile
> sources = layout.getSourceFileList();
416
for (
ResourceFile
source : sources) {
426
* Scans the given {@link
ResourceFile
} and if it is a layout resource, updates the
429
* @param
resourceFile
the {@link
ResourceFile
} to be scanned for includes (doesn't
435
private boolean updateFileIncludes(
ResourceFile
resourceFile
, boolean singleUpdate) {
436
Collection<ResourceType> resourceTypes =
resourceFile
.getResourceTypes();
442
if (
resourceFile
.getFile() instanceof IFileWrapper)
[
all
...]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarExecTest.java
243
File
resourceFile
= new File(tempDir, resourceName);
244
resourceFile
.deleteOnExit();
247
byte[] resourceBody = new byte[(int)
resourceFile
.length()];
248
FileInputStream fis = new FileInputStream(
resourceFile
);
ZipExecTest.java
253
File
resourceFile
= new File(tempDir, resourceName);
254
resourceFile
.deleteOnExit();
257
byte[] resourceBody = new byte[(int)
resourceFile
.length()];
258
FileInputStream fis = new FileInputStream(
resourceFile
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java
124
File
resourceFile
= File.createTempFile(TEMP_PREFIX, AdtConstants.DOT_RES);
125
resourceFile
.deleteOnExit();
136
resourceFile
.getParent(),
137
resourceFile
.getName());
209
resourceFile
.getAbsolutePath(),
/sdk/anttasks/src/com/android/ant/
ApkBuilderTask.java
87
* Sets the
resourcefile
attribute
88
* @param
resourceFile
90
public void setResourcefile(String
resourceFile
) {
91
mResourceFile =
resourceFile
;
207
throw new BuildException("missing attribute '
resourcefile
'");
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/xml/
HyperlinksTest.java
20
import com.android.ide.common.resources.
ResourceFile
;
218
ResourceFile
resourceFile
= resourceLink.getFile();
219
String desc =
resourceFile
.toString();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java
43
import com.android.ide.common.resources.
ResourceFile
;
[
all
...]
Completed in 503 milliseconds