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

1 2 3

  /external/proguard/examples/
proguardall.pro 39 -keep public class proguard.ProGuard {
43 -keep public class proguard.gui.ProGuardGUI {
47 -keep public class proguard.retrace.ReTrace {
53 -keep,allowobfuscation class proguard.ant.*
62 -keep public class proguard.wtk.ProGuardObfuscator
midlets.pro 39 -keep public class * extends javax.microedition.midlet.MIDlet
54 # -keep public class mypackage.MyClass
55 # -keep public interface mypackage.MyInterface
56 # -keep public class * implements mypackage.MyInterface
proguard.pro 36 -keep public class proguard.ProGuard {
46 #-keep,allowobfuscation class proguard.ant.*
57 #-keep public class proguard.wtk.ProGuardObfuscator
retrace.pro 20 # perform incremental obfuscation based on its mapping file, and only keep the
41 -keep public class proguard.retrace.ReTrace {
proguardgui.pro 25 # perform incremental obfuscation based on its mapping file, and only keep the
53 -keep public class proguard.gui.ProGuardGUI {
applets.pro 16 -keep public class * extends java.applet.Applet
58 # -keep public class mypackage.MyClass
59 # -keep public interface mypackage.MyInterface
60 # -keep public class * implements mypackage.MyInterface
servlets.pro 17 -keep public class * implements javax.servlet.Servlet
59 # -keep public class mypackage.MyClass
60 # -keep public interface mypackage.MyInterface
61 # -keep public class * implements mypackage.MyInterface
library.pro 17 # traces later on. Keep a fixed source file attribute and all line number
33 -keep public class * {
76 # -keep public class mypackage.MyClass
77 # -keep public interface mypackage.MyInterface
78 # -keep public class * implements mypackage.MyInterface
  /external/v8/src/
zone.cc 109 // Find a segment with a suitable size to keep around.
110 Segment* keep = Segment::head(); local
111 while (keep != NULL && keep->size() > kMaximumKeptSegmentSize) {
112 keep = keep->next();
116 // and freeing every segment except the one we wish to keep.
120 if (current == keep) {
121 // Unlink the segment we wish to keep from the list.
134 // If we have found a segment we want to keep, we must recompute th
    [all...]
  /frameworks/base/core/java/android/text/
InputFilter.java 69 return null; // keep original
84 int keep = mMax - (dest.length() - (dend - dstart)); local
86 if (keep <= 0) {
88 } else if (keep >= end - start) {
89 return null; // keep original
91 return source.subSequence(start, start + keep);
  /external/proguard/src/proguard/ant/
ConfigurationTask.java 52 configuration.keep = extendClassSpecifications(configuration.keep,
53 this.configuration.keep);
132 configuration.keep = extendKeepSpecifications(configuration.keep,
141 configuration.keep = extendKeepSpecifications(configuration.keep,
150 configuration.keep = extendKeepSpecifications(configuration.keep,
162 configuration.keep = extendKeepSpecifications(configuration.keep
    [all...]
  /external/proguard/examples/annotations/lib/
annotations.pro 23 # @Keep specifies not to shrink, optimize, or obfuscate the annotated class
26 -keep @proguard.annotation.Keep class *
29 @proguard.annotation.Keep *;
45 # @KeepImplementations and @KeepPublicImplementations specify to keep all,
50 -keep class * implements @proguard.annotation.KeepImplementations *
51 -keep public class * implements @proguard.annotation.KeepPublicImplementations *
53 # @KeepApplication specifies to keep the annotated class as an application,
61 # @KeepPublicProtectedClassMembers specify to keep all, all public, resp.
78 # @KeepPublicProtectedClassMemberNames specify to keep all, all public, resp
    [all...]
  /external/dbus/
cleanup-man-pages.sh 24 test -d keep || mkdir keep || die "Could not create $MANDIR/keep directory"
65 (find . -maxdepth 1 -name "dbus_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all dbus-prefixed items"
66 (find . -maxdepth 1 -name "DBUS_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all DBUS_-prefixed items"
67 (find . -maxdepth 1 -name "DBus*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all DBus-prefixed items"
74 KEEP_COUNT=`find keep -type f -name "*" | wc -l`
80 (find keep -type f -name "*" | xargs -I ITEMS /bin/mv ITEMS .) || die "could not move kept items back"
82 rmdir keep || die "could not remove $MANDIR/keep"
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraButtonIntentReceiver.java 42 holder.keep();
CameraHolder.java 35 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
47 private long mKeepBeforeTime = 0; // Keep the Camera before this time.
158 public synchronized void keep() { method in class:CameraHolder
163 // Keep the camera instance for 3 seconds.
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 126 abstract protected void deleteMessagesForThread(Context context, long threadId, int keep);
191 protected void deleteMessagesForThread(Context context, long threadId, int keep) {
208 int numberToDelete = count - keep;
210 Log.v(TAG, "SMS: deleteMessagesForThread keep: " + keep +
217 // Move to the keep limit and then delete everything older than that one.
218 cursor.move(keep);
347 int keep = getMessageLimit(context); local
348 int numberToDelete = count - keep;
350 Log.v(TAG, "MMS: deleteOldMessagesByUri keep: " + keep
    [all...]
  /external/proguard/src/proguard/
Configuration.java 86 // Keep options.
94 public List keep; field in class:Configuration
Initializer.java 131 createClassNoteExceptionMatcher(configuration.keep))))));
143 createClassMemberNoteExceptionMatcher(configuration.keep, true),
144 createClassMemberNoteExceptionMatcher(configuration.keep, false))))));
162 fullyQualifiedClassNameNotePrinter).checkClassSpecifications(configuration.keep);
166 descriptorKeepNotePrinter).checkClassSpecifications(configuration.keep);
243 System.out.println(" (using '-keep').");
260 System.out.println(" their implementations (using '-keep').");
269 System.out.println(" (using '-keep' or '-keepclassmembers').");
332 * from the keep configuration.
372 * print notes, from the keep configuration
    [all...]
ConfigurationParser.java 118 else if (ConfigurationConstants.KEEP_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, true, false, false);
119 else if (ConfigurationConstants.KEEP_CLASS_MEMBERS_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, false, false, false);
120 else if (ConfigurationConstants.KEEP_CLASSES_WITH_MEMBERS_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, false, true, false);
121 else if (ConfigurationConstants.KEEP_NAMES_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, true, false, true);
122 else if (ConfigurationConstants.KEEP_CLASS_MEMBER_NAMES_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, false, false, true)
    [all...]
ProGuard.java 239 // Check if we have at least some keep commands.
240 if (configuration.keep == null)
242 throw new IOException("You have to specify '-keep' options for the shrinking step.");
253 ClassSpecificationVisitorFactory.createClassPoolVisitor(configuration.keep,
  /external/tcpdump/
print-chdlc.c 138 } keep; member in union:cisco_slarp::__anon6161
177 EXTRACT_32BITS(&slarp->un.keep.myseq),
178 EXTRACT_32BITS(&slarp->un.keep.yourseq),
179 EXTRACT_16BITS(&slarp->un.keep.rel));
  /system/core/libcutils/
dir_hash.c 178 char *keep; local
207 keep = malloc(len + strlen(name) + 3);
210 if (keep == NULL || res == NULL) {
224 free(keep);
229 sprintf(keep, "%s %s\n", name, outstr);
231 res->name = keep;
  /external/proguard/src/proguard/shrink/
Shrinker.java 55 // Check if we have at least some keep commands.
56 if (configuration.keep == null)
58 throw new IOException("You have to specify '-keep' options for the shrinking step.");
71 ClassSpecificationVisitorFactory.createClassPoolVisitor(configuration.keep,
148 throw new IOException("The output jar is empty. Did you specify the proper '-keep' options?");
  /frameworks/base/core/java/android/os/
MessageQueue.java 48 * wait for more. Return true to keep your idle handler active, false
113 boolean keep = false;
116 keep = ((IdleHandler)idler).queueIdle();
121 if (!keep) {
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 186 TreeMap<String, ClassReader> keep = new TreeMap<String, ClassReader>(); local
191 ClassReader cr = mAa.findClass("mock_android.widget.TableLayout", zipClasses, keep);
192 DependencyVisitor visitor = mAa.getVisitor(zipClasses, keep, new_keep, in_deps, out_deps);

Completed in 313 milliseconds

1 2 3