HomeSort by relevance Sort by last modified time
    Searched defs:manifestFile (Results 1 - 9 of 9) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ProjectCallback.java 94 IFile manifestFile = AndroidManifestParser.getManifest(mProject);
96 AndroidManifestParser data = AndroidManifestParser.parseForData(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 242 IFile manifestFile = AndroidManifestParser.getManifest(project.getProject());
243 if (manifestFile == null) {
250 parser = AndroidManifestParser.parseForData(manifestFile);
268 new FileEditorInput(manifestFile),
275 manifestFile.getFullPath());
315 IFile manifestFile = AndroidManifestParser.getManifest(project.getProject());
316 if (manifestFile == null) {
323 parser = AndroidManifestParser.parseForData(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java 225 IFile manifestFile = AndroidManifestParser.getManifest(project);
226 if (manifestFile != null && manifestFile.isSynchronized(IResource.DEPTH_ZERO)) {
227 AndroidManifestParser data = AndroidManifestParser.parseForData(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 282 * @param manifestFile
286 public static AndroidManifestParser parseManifestForError(IFile manifestFile,
289 if (manifestFile.exists()) {
290 manifestFile.deleteMarkers(AndroidConstants.MARKER_XML, true, IResource.DEPTH_ZERO);
291 manifestFile.deleteMarkers(AndroidConstants.MARKER_ANDROID, true, IResource.DEPTH_ZERO);
296 BaseProjectHelper.getJavaProject(manifestFile.getProject()),
297 manifestFile, errorListener);
AndroidManifestParser.java 181 * @param manifestFile The manifest file being parsed. Can be null.
187 ManifestHandler(IFile manifestFile, XmlErrorListener errorListener,
189 super(manifestFile, errorListener);
636 * @param manifestFile the {@link IFile} representing the manifest file.
647 IFile manifestFile,
653 if (manifestFile != null) {
656 ManifestHandler manifestHandler = new ManifestHandler(manifestFile,
658 parser.parse(new InputSource(manifestFile.getContents()), manifestHandler);
673 manifestFile.getFullPath(),
678 manifestFile.getFullPath()
    [all...]
ProjectHelper.java 412 IFile manifestFile = AndroidManifestParser.getManifest(p);
413 if (manifestFile == null) {
420 parser = AndroidManifestParser.parseForData(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ApkBuilder.java 512 IFile manifestFile = project.getFile(AndroidConstants.FN_ANDROID_MANIFEST);
514 if (manifestFile == null || manifestFile.exists() == false) {
570 IPath manifestLocation = manifestFile.getLocation();
652 new InputSource(manifestFile.getContents()));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreationPage.java     [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 290 milliseconds