HomeSort by relevance Sort by last modified time
    Searched refs:keep (Results 26 - 50 of 552) sorted by null

12 3 4 5 6 7 8 91011>>

  /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);
356 int keep = getMessageLimit(context); local
357 int numberToDelete = count - keep;
359 Log.v(TAG, "MMS: deleteOldMessagesByUri keep: " + keep
    [all...]
  /external/chromium_org/components/policy/core/common/cloud/
resource_cache_unittest.cc 73 std::set<std::string> keep; local
74 keep.insert(kSubB);
75 keep.insert(kSubD);
76 cache.PurgeOtherSubkeys(kKey1, keep);
101 keep.clear();
102 keep.insert(kKey3);
103 cache.PurgeOtherKeys(keep);
  /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...]
  /external/tcpdump/
print-chdlc.c 138 } keep; member in union:cisco_slarp::__anon26851
177 EXTRACT_32BITS(&slarp->un.keep.myseq),
178 EXTRACT_32BITS(&slarp->un.keep.yourseq),
179 EXTRACT_16BITS(&slarp->un.keep.rel));
  /frameworks/compile/mclinker/include/mcld/Support/
ToolOutputFile.h 34 * destoryed unless the client calls keep().
54 /// keep - Indicate that the tool's job wrt this output file has been
56 void keep();
66 /// Keep - The flag which indicates whether we should not delete the file.
67 bool Keep;
  /packages/apps/Camera/src/com/android/camera/
CameraButtonIntentReceiver.java 44 holder.keep();
  /packages/apps/Camera2/src/com/android/camera/
CameraButtonIntentReceiver.java 46 holder.keep();
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraButtonIntentReceiver.java 44 holder.keep();
  /external/oprofile/opjitconv/
jitsymbol.c 228 * We decided to keep one entry in favor of the other. Instead of dropping
234 * keep: |---|
239 * keep: |---|
243 static void split_entry(struct jitentry * split, struct jitentry const * keep)
245 unsigned long long start_addr_keep = keep->vma;
246 unsigned long long end_addr_keep = keep->vma + keep->code_size;
319 struct jitentry const * keep = entries_address_ascending[keep_idx]; local
321 unsigned long long start_addr_keep = keep->vma;
322 unsigned long long end_addr_keep = keep->vma + keep->code_size
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 6 # Do not fail/return upon lexing error; keep chewing on the characters
29 to keep going or you do not upon token recognition error. If you do not
34 requested a token. Keep lexing until you get a valid one. Just report
35 errors and keep going, looking for a valid token.
  /external/llvm/lib/TableGen/
Main.cpp 74 DepOut.keep();
126 Out.keep();
  /external/proguard/examples/
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
  /prebuilts/tools/common/proguard/proguard4.7/examples/
applets.pro 15 # traces later on. Keep a fixed source file attribute and all line number
27 # You can print out the seeds that are matching the keep options below.
33 -keep public class * extends java.applet.Applet
67 # -keep public class mypackage.MyClass
68 # -keep public interface mypackage.MyInterface
69 # -keep public class * implements mypackage.MyInterface
library.pro 17 # traces later on. Keep a fixed source file attribute and all line number
34 -keep public class * {
77 # -keep public class mypackage.MyClass
78 # -keep public interface mypackage.MyInterface
79 # -keep public class * implements mypackage.MyInterface
servlets.pro 16 # traces later on. Keep a fixed source file attribute and all line number
28 # You can print out the seeds that are matching the keep options below.
34 -keep public class * implements javax.servlet.Servlet
68 # -keep public class mypackage.MyClass
69 # -keep public interface mypackage.MyInterface
70 # -keep public class * implements mypackage.MyInterface
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 215 TreeMap<String, ClassReader> keep = new TreeMap<String, ClassReader>(); local
220 ClassReader cr = mAa.findClass("mock_android.widget.TableLayout", zipClasses, keep);
221 DependencyVisitor visitor = mAa.getVisitor(zipClasses, keep, new_keep, in_deps, out_deps);
254 keep.putAll(new_keep);
259 }, keep.keySet().toArray());
  /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?");
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-gradle/4.9/
proguard-gradle-4.9.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 84 OutStream.keep();
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
rjsmin.py 158 def not_id_literal_(keep):
160 match = _re.compile(id_literal_(keep)).match

Completed in 448 milliseconds

12 3 4 5 6 7 8 91011>>