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

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringUtil.java 21 import static com.android.xml.AndroidManifest.ATTRIBUTE_BACKUP_AGENT;
22 import static com.android.xml.AndroidManifest.ATTRIBUTE_MANAGE_SPACE_ACTIVITY;
23 import static com.android.xml.AndroidManifest.ATTRIBUTE_PARENT_ACTIVITY_NAME;
24 import static com.android.xml.AndroidManifest.ATTRIBUTE_TARGET_ACTIVITY;
29 import com.android.xml.AndroidManifest;
209 && (AndroidManifest.NODE_ACTIVITY.equals(tag)
210 || AndroidManifest.NODE_APPLICATION.equals(tag)
211 || AndroidManifest.NODE_INSTRUMENTATION.equals(tag)
212 || AndroidManifest.NODE_PROVIDER.equals(tag)
213 || AndroidManifest.NODE_SERVICE.equals(tag
    [all...]
  /development/testrunner/
android_manifest.py 18 """In memory representation of AndroidManifest.xml file.
20 Specification of AndroidManifest.xml can be found at
30 class AndroidManifest(object):
31 """In memory representation of AndroidManifest.xml file."""
33 FILENAME = 'AndroidManifest.xml'
55 """Parse AndroidManifest.xml at the specified path.
58 app_path: path to folder containing AndroidManifest.xml
60 IOError: AndroidManifest.xml cannot be found at given path, or cannot be
113 """Factory method for creating a AndroidManifest.
119 the AndroidManifest or None if there was no file presen
    [all...]
create_test.py 33 """Constants for test Android.mk and AndroidManifest.xml creation."""
87 """Create and populate tests/AndroidManifest.xml with variable values from
88 Android.mk and AndroidManifest.xml.
90 Does nothing if tests/AndroidManifest.xml already exists.
93 manifest: AndroidManifest object for application manifest
96 extracted from AndroidManifest.xml
98 IOError: tests/AndroidManifest.xml cannot be opened for writing
117 # write tests/AndroidManifest.xml
204 manifest: AndroidManifest object for application manifest
229 manifest = android_manifest.AndroidManifest(app_path=app_path
    [all...]
  /development/testrunner/tests/
android_manifest_tests.py 26 """Unit tests for AndroidManifest."""
30 self._manifest = android_manifest.AndroidManifest(app_path='.')