Searched defs:manifestFile (Results 1 - 6 of 6) sorted by relevance
/sdk/anttasks/src/com/android/ant/ |
H A D | XPathTask.java | 44 public void setInput(Path manifestFile) { argument 45 mManifestFile = manifestFile;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
H A D | AndroidManifestHelper.java | 49 * @param manifestFile the {@link IFile} representing the manifest file. 61 IAbstractFile manifestFile, 65 if (manifestFile != null) { 67 if (manifestFile instanceof IFileWrapper) { 68 eclipseFile = ((IFileWrapper)manifestFile).getIFile(); 75 return AndroidManifestParser.parse(manifestFile, gatherData, errorHandler); 90 * @param manifestFile the {@link IFile} representing the manifest file. 98 IAbstractFile manifestFile, 102 return parseUnchecked(manifestFile, gatherData, errorListener); 106 manifestFile 60 parseUnchecked( IAbstractFile manifestFile, boolean gatherData, XmlErrorListener errorListener) argument 97 parse( IAbstractFile manifestFile, boolean gatherData, XmlErrorListener errorListener) argument 167 parseForError(IFile manifestFile, XmlErrorListener errorListener) argument 176 parseForData(IFile manifestFile) argument [all...] |
/sdk/common/src/com/android/xml/ |
H A D | AndroidManifest.java | 116 * @param manifestFile the manifest to parse. 121 public static String getPackage(IAbstractFile manifestFile) argument 128 new InputSource(manifestFile.getContents())); 137 * @param manifestFile the manifest to parse. 142 public static boolean getDebuggable(IAbstractFile manifestFile) argument 151 new InputSource(manifestFile.getContents())); 159 * @param manifestFile the manifest file to read the attribute from. 164 public static int getVersionCode(IAbstractFile manifestFile) argument 172 new InputSource(manifestFile.getContents())); 183 * @param manifestFile th 188 hasVersionCode(IAbstractFile manifestFile) argument 223 getMinSdkVersion(IAbstractFile manifestFile) argument 249 getTargetSdkVersion(IAbstractFile manifestFile) argument 274 getApplicationIcon(IAbstractFile manifestFile) argument 293 getApplicationLabel(IAbstractFile manifestFile) argument [all...] |
/sdk/sdk_common/src/com/android/ide/common/xml/ |
H A D | AndroidManifestParser.java | 102 * @param manifestFile The manifest file being parsed. Can be null. 106 ManifestHandler(IAbstractFile manifestFile, ManifestData manifestData, argument 582 * @param manifestFile the {@link IAbstractFile} representing the manifest file. 594 IAbstractFile manifestFile, 598 if (manifestFile != null) { 606 ManifestHandler manifestHandler = new ManifestHandler(manifestFile, 608 parser.parse(new InputSource(manifestFile.getContents()), manifestHandler); 620 * This is the equivalent of calling <pre>parse(manifestFile, true, null)</pre> 622 * @param manifestFile the manifest file to parse. 629 public static ManifestData parse(IAbstractFile manifestFile) argument 593 parse( IAbstractFile manifestFile, boolean gatherData, ManifestErrorHandler errorHandler) argument [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
H A D | BuildHelper.java | 180 * @param manifestFile the manifest of the project. 191 public void packageResources(IFile manifestFile, List<IProject> libProjects, String resFilter, argument 223 IPath manifestLocation = manifestFile.getLocation();
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ |
H A D | ProjectCreator.java | 966 * @param manifestFile The AndroidManifest.xml file 970 private boolean extractPackageFromManifest(File manifestFile, argument 975 InputSource source = new InputSource(new FileReader(manifestFile)); 978 source = new InputSource(new FileReader(manifestFile)); 999 manifestFile.getName()); 1015 manifestFile.getName()); 1027 AndroidXPathFactory.DEFAULT_NS_PREFIX, manifestFile.getName()); 1036 mLog.error(e, "Failed to read %1$s", manifestFile.getName()); 1041 manifestFile.getName());
|
Completed in 914 milliseconds