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

1 2

  /external/linux-tools-perf/
perf-archive.sh 31 MANIFEST=$(mktemp /tmp/perf-archive-manifest.XXXXXX)
37 echo ${linkname#$PERF_BUILDID_DIR} >> $MANIFEST
38 echo ${filename#$PERF_BUILDID_DIR} >> $MANIFEST
41 tar cfj $PERF_DATA.tar.bz2 -C $PERF_BUILDID_DIR -T $MANIFEST
42 rm -f $MANIFEST $BUILDIDS
  /external/proguard/examples/
retrace.pro 13 -injars ../lib/proguard.jar(!META-INF/MANIFEST.MF,
  /prebuilts/tools/common/proguard/proguard4.7/examples/
retrace.pro 13 -injars ../lib/proguard.jar(!META-INF/MANIFEST.MF,
  /tools/motodev/makefile/scripts/
checkmodifications.sh 19 #As plugin was modified, check if MANIFEST.MF has the version of the release, if not report
21 #cat $1/android/src/plugins/$f/META-INF/MANIFEST.MF | grep "Bundle-Version:"
27 version=`cat $1/android/src/plugins/$f/META-INF/MANIFEST.MF | grep "Bundle-Version:" | grep $6 | cut -d":" -f2 | tr -d ' '`
33 version=`cat $1/android/src/plugins/$f/META-INF/MANIFEST.MF | grep "Bundle-Version:" | grep $5 | cut -d":" -f2 | tr -d ' '`
42 version=`cat $1/android/src/plugins/$f/META-INF/MANIFEST.MF | grep "Bundle-Version:" | grep $3 | cut -d":" -f2 | tr -d ' '`
58 #As plugin was modified, check if MANIFEST.MF has the version of the release, if not report
60 #cat $1/platform/code/plugins/$f/META-INF/MANIFEST.MF | grep "Bundle-Version:"
64 version=`cat $1/platform/code/plugins/$f/META-INF/MANIFEST.MF | grep "Bundle-Version:" | grep $4 | cut -d":" -f2 | tr -d ' '`
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Scope.java 73 /** The analysis considers the manifest file */
74 MANIFEST,
104 || scopes.contains(MANIFEST));
135 /** Scope-set used for detectors which are affected by the manifest only */
136 public static final EnumSet<Scope> MANIFEST_SCOPE = EnumSet.of(MANIFEST);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlFormatStyle.java 27 * newline between successive elements, whereas in a manifest file there is typically only
49 MANIFEST;
119 return MANIFEST;
AndroidXmlFormattingStrategy.java 502 * Guess what style to use to edit the given document - layout, resource, manifest, ... ? */
522 // The "manifest" style is used for manifest files
526 style = XmlFormatStyle.MANIFEST;
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
Makefile 27 rm MANIFEST || true
37 # Generate the tarball based on MANIFEST.in
  /external/eyes-free/
Android.mk 26 LOCAL_JAR_MANIFEST := MANIFEST.MF
  /ndk/
ndk-gdb 21 # <application> element of its manifest.
127 # Used to run an awk script on the manifest
130 $AWK_CMD -f $AWK_SCRIPTS/$1 $PROJECT/$MANIFEST
281 echo " --launch-list List all launchable activity names from manifest"
421 # Name of the manifest file
422 MANIFEST=AndroidManifest.xml
432 if [ ! -f "$PROJECT/$MANIFEST" ] ; then
434 echo " It is missing a $MANIFEST file."
439 if [ -f "$MANIFEST" ] ; then
445 if [ -f "$CURDIR/$MANIFEST" ] ; the
    [all...]
  /cts/tools/cts-api-coverage/src/
Android.mk 24 LOCAL_JAR_MANIFEST := MANIFEST.mf
  /cts/tools/cts-java-scanner/src/
Android.mk 23 LOCAL_JAR_MANIFEST := MANIFEST.mf
  /cts/tools/cts-native-scanner/src/
Android.mk 23 LOCAL_JAR_MANIFEST := MANIFEST.mf
  /cts/tools/cts-xml-generator/src/
Android.mk 23 LOCAL_JAR_MANIFEST := MANIFEST.mf
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ChangedFileSetHelper.java 34 * Also contains non project specific {@link ChangedFileSet} such as {@link #MANIFEST}
39 final static ChangedFileSet MANIFEST;
43 MANIFEST = new ChangedFileSet("manifest", //$NON-NLS-1$
PreCompilerBuilder.java 113 /** Merge Manifest Flag. Computed from resource delta, reset after action is taken.
128 /** cache of the java package defined in the manifest */
318 // Check to see if Manifest.xml, Manifest.java, or R.java have changed:
363 // if the main manifest didn't change, then we check for the library
364 // ones (will trigger manifest merging too)
372 visitor.addSet(ChangedFileSetHelper.MANIFEST);
376 mMustMergeManifest |= visitor.checkSet(ChangedFileSetHelper.MANIFEST);
399 // get the manifest file
410 // TODO: document whether code below that uses manifest (which is now guarantee
811 IFile manifest = getProject().getFile(SdkConstants.FN_ANDROID_MANIFEST_XML); local
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ManifestOrderDetector.java 64 /** Wrong order of elements in the manifest */
67 "Checks for manifest problems like <uses-sdk> after the <application> tag",
73 "manifest in the logical dependency order.",
85 "The manifest should contain a `<uses-sdk>` element which defines the " +
95 "http://developer.android.com/guide/topics/manifest/uses-sdk-element.html"); //$NON-NLS-1$
100 "Checks that the manifest specifies a targetSdkVersion that is recent",
136 "http://developer.android.com/guide/topics/manifest/uses-sdk-element.html"); //$NON-NLS-1$
141 "Checks that various manifest elements are declared in the right place",
144 "`<application>` tag, not the `<manifest>` tag or an `<activity>` tag. Similarly, " +
146 "looks for incorrect declaration locations in the manifest, and complains "
    [all...]
RegistrationDetector.java 55 * Checks for missing manifest registrations for activities, services etc
62 "Ensures that Activities, Services and Content Providers are registered in the manifest",
74 EnumSet.of(Scope.MANIFEST, Scope.CLASS_FILE)).setMoreInfo(
75 "http://developer.android.com/guide/topics/manifest/manifest-intro.html"); //$NON-NLS-1$
121 * Returns the fully qualified class name for a manifest entry element that
135 // According to the <activity> manifest element documentation, this is not
136 // valid ( http://developer.android.com/guide/topics/manifest/activity-element.html )
137 // but it appears in manifest files and appears to be supported by the runtime
200 "%1$s is a <%2$s> but is registered in the manifest as a <%3$s>"
    [all...]
UnusedResourceDetector.java 102 EnumSet.of(Scope.MANIFEST, Scope.ALL_RESOURCE_FILES, Scope.ALL_JAVA_FILES));
115 EnumSet.of(Scope.MANIFEST, Scope.ALL_RESOURCE_FILES, Scope.ALL_JAVA_FILES))
MissingClassDetector.java 61 * Checks to ensure that classes referenced in the manifest actually exist and are included
65 /** Manifest-referenced classes missing from the project or libraries */
68 "Ensures that classes referenced in the manifest are present in the project or libraries",
70 "If a class is referenced in the manifest, it must also exist in the project (or in one " +
73 "manifest file properly.",
79 EnumSet.of(Scope.MANIFEST, Scope.CLASS_FILE, Scope.JAVA_LIBRARIES)).setMoreInfo(
80 "http://developer.android.com/guide/topics/manifest/manifest-intro.html"); //$NON-NLS-1$
85 "Ensures that classes registered in the manifest file are instantiatable",
87 "Activities, services, broadcast receivers etc. registered in the manifest file "
    [all...]
OverdrawDetector.java 118 EnumSet.of(Scope.MANIFEST, Scope.JAVA_FILE, Scope.ALL_RESOURCE_FILES));
120 /** Mapping from FQN activity names to theme names registered in the manifest */
123 /** The default theme declared in the manifest, or null */
132 /** Set of activities registered in the manifest. We will limit the Java analysis to
312 // Manifest: Look at theme registrations
  /external/proguard/build/
makefile 29 jar -cfm $(LIB)/$@.jar $(SRC)/$(dir $<)MANIFEST.MF \
  /prebuilts/tools/common/proguard/proguard4.7/build/
makefile 29 jar -cfm $(LIB)/$@.jar $(SRC)/$(dir $<)MANIFEST.MF \
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintJob.java 99 scope = EnumSet.of(Scope.MANIFEST);
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintDriver.java 300 mScope.add(Scope.MANIFEST);
500 List<Detector> manifestDetectors = mScopeDetectors.get(Scope.MANIFEST);
780 // Look up manifest information (but not for library projects)
791 && mScope.contains(Scope.MANIFEST)) {
792 List<Detector> detectors = mScopeDetectors.get(Scope.MANIFEST);
    [all...]

Completed in 984 milliseconds

1 2