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

1 2 3 4 5 6 7 8

  /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 keep += start;
92 if (Character.isHighSurrogate(source.charAt(keep - 1))) {
93 --keep;
94 if (keep == start) {
98 return source.subSequence(start, keep);
    [all...]
  /frameworks/compile/slang/
slang_rs_exportable.cpp 21 bool RSExportable::keep() { function in class:slang::RSExportable
slang_rs_exportable.h 49 // When keep() is invoked, mKeep will set to true and the associated RSContext
52 // Return false if the exportable is kept or failed to keep.
53 virtual bool keep();
  /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 {
  /prebuilts/tools/common/proguard/proguard4.7/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
android.pro 30 # You can print out the seeds that are matching the keep options below.
47 # Keep a fixed source file attribute and all line number tables to get line
60 -keep public class * extends android.app.Activity
61 -keep public class * extends android.app.Application
62 -keep public class * extends android.app.Service
63 -keep public class * extends android.content.BroadcastReceiver
64 -keep public class * extends android.content.ContentProvider
69 -keep public class * extends android.view.View {
106 -keep public interface com.android.vending.licensing.ILicensingService
147 # -keep public class mypackage.MyClas
    [all...]
midlets.pro 42 # You can keep a fixed source file attribute and all line number tables to
48 # You can print out the seeds that are matching the keep options below.
54 -keep public class * extends javax.microedition.midlet.MIDlet
65 # -keep public class mypackage.MyClass
66 # -keep public interface mypackage.MyInterface
67 # -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 20 # perform incremental obfuscation based on its mapping file, and only keep the
48 -keep public class proguard.gui.ProGuardGUI {
  /external/v8/src/
zone.cc 113 // Find a segment with a suitable size to keep around.
114 Segment* keep = segment_head_; local
115 while (keep != NULL && keep->size() > kMaximumKeptSegmentSize) {
116 keep = keep->next();
120 // and freeing every segment except the one we wish to keep.
124 if (current == keep) {
125 // Unlink the segment we wish to keep from the list.
138 // If we have found a segment we want to keep, we must recompute th
    [all...]
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 25 /// object is destroyed unless the client calls keep().
35 /// Keep - The flag which indicates whether we should not delete the file.
36 bool Keep;
55 /// keep - Indicate that the tool's job wrt this output file has been
57 void keep() { Installer.Keep = true; } function in class:llvm::tool_output_file
  /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/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
traversal-skip-most.js 5 testElement.innerHTML='<div id="A1"><div id="B1" class="keep"></div><div id="B2">this text matters</div><div id="B3" class="keep"></div></div>';
9 if (node.className == 'keep')
  /prebuilts/tools/common/proguard/proguard4.7/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/bouncycastle/
Android.mk 55 -keep class org.bouncycastle.jce.provider.BouncyCastleProvider "{ public protected *; }" \
56 -keep class org.bouncycastle.jce.provider.symmetric.AESMappings "{ public protected *; }" \
57 -keep class org.bouncycastle.asn1.ASN1TaggedObject "{ public protected *; }" \
58 -keep class org.bouncycastle.asn1.x509.CertificateList "{ public protected *; }" \
59 -keep class org.bouncycastle.crypto.AsymmetricBlockCipher "{ public protected *; }" \
60 -keep class org.bouncycastle.x509.ExtendedPKIXBuilderParameters "{ public protected *; }" \
64 | sed -e 's/^/-keep class /' -e 's/$$/ { public protected \*; } /' | sort | uniq` \
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
make.php 98 'BRACKETS' => array( # keep same as symbols so as to make ${} and $() equiv.
  /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/proguard/src/proguard/
Configuration.java 86 // Keep options.
94 public List keep; field in class:Configuration
  /external/tcpdump/
print-chdlc.c 138 } keep; member in union:cisco_slarp::__anon15799
177 EXTRACT_32BITS(&slarp->un.keep.myseq),
178 EXTRACT_32BITS(&slarp->un.keep.yourseq),
179 EXTRACT_16BITS(&slarp->un.keep.rel));

Completed in 446 milliseconds

1 2 3 4 5 6 7 8