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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/spellchecker/
word_trimmer.h 10 // Trims |text| to contain only the range from |start| to |end| and |keep| words
12 // indexes into |text|. The |keep| parameter is the number of words to keep on
22 // int keep = 2;
23 // base::string16 trimmed = TrimWords(&start, end, text, keep);
30 size_t keep);
word_trimmer.cc 15 size_t keep) {
21 // A circular buffer of the last |keep + 1| words seen before position |start|
23 std::vector<size_t> word_offset(keep + 1, 0);
28 word_offset[keep] = iter.prev();
40 if (iter.prev() > end && keep) {
42 keep--;
  /frameworks/base/core/java/android/text/
InputFilter.java 69 return null; // keep original
86 int keep = mMax - (dest.length() - (dend - dstart)); local
87 if (keep <= 0) {
89 } else if (keep >= end - start) {
90 return null; // keep original
92 keep += start;
93 if (Character.isHighSurrogate(source.charAt(keep - 1))) {
94 --keep;
95 if (keep == start) {
99 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 48 // When keep() is invoked, mKeep will set to true and the associated RSContext
51 // Return false if the exportable is kept or failed to keep.
52 virtual bool keep();
  /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 {
  /external/jarjar/src/main/com/tonicsystems/jarjar/
JarJarTask.java 41 public void addConfiguredKeep(Keep keep) {
42 if (keep.getPattern() == null)
43 throw new IllegalArgumentException("The <keep> element requires a \"pattern\" attribute.");
44 patterns.add(keep);
  /external/proguard/examples/
proguardall.pro 43 -keep public class proguard.ProGuard {
47 -keep public class proguard.gui.ProGuardGUI {
51 -keep public class proguard.retrace.ReTrace {
57 -keep,allowobfuscation class proguard.ant.*
66 -keep public class proguard.gradle.* {
72 -keep public class proguard.wtk.ProGuardObfuscator
android.pro 31 # You can print out the seeds that are matching the keep options below.
48 # Keep a fixed source file attribute and all line number tables to get line
61 -keep public class * extends android.app.Activity
62 -keep public class * extends android.app.Application
63 -keep public class * extends android.app.Service
64 -keep public class * extends android.content.BroadcastReceiver
65 -keep public class * extends android.content.ContentProvider
70 -keep public class * extends android.view.View {
120 -keep public interface com.android.vending.licensing.ILicensingService
161 # -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 37 -keep public class proguard.ProGuard {
47 #-keep,allowobfuscation class proguard.ant.*
62 #-keep public class proguard.gradle.* {
70 #-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 21 # perform incremental obfuscation based on its mapping file, and only keep the
49 -keep public class proguard.gui.ProGuardGUI {
  /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...]
  /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/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;
57 /// keep - Indicate that the tool's job wrt this output file has been
59 void keep() { Installer.Keep = true; } function in class:llvm::tool_output_file
  /external/chromium_org/v8/src/
zone.cc 112 // Find a segment with a suitable size to keep around.
113 Segment* keep = NULL; local
115 // and freeing every segment except the one we wish to keep.
118 if (keep == NULL && current->size() <= kMaximumKeptSegmentSize) {
119 // Unlink the segment we wish to keep from the list.
120 keep = current;
121 keep->clear_next();
135 // If we have found a segment we want to keep, we must recompute the
139 if (keep != NULL) {
140 Address start = keep->start()
    [all...]
  /external/bouncycastle/
Android.mk 83 -keep class org.bouncycastle.jce.provider.BouncyCastleProvider "{ public protected *; }" \
84 -keep class org.bouncycastle.jce.provider.symmetric.AESMappings "{ public protected *; }" \
85 -keep class org.bouncycastle.asn1.ASN1TaggedObject "{ public protected *; }" \
86 -keep class org.bouncycastle.asn1.x509.CertificateList "{ public protected *; }" \
87 -keep class org.bouncycastle.crypto.AsymmetricBlockCipher "{ public protected *; }" \
88 -keep class org.bouncycastle.x509.ExtendedPKIXBuilderParameters "{ public protected *; }" \
92 | sed -e 's/^/-keep class /' -e 's/$$/ { public protected \*; } /' | sort | uniq` \
  /external/proguard/src/proguard/
SeedPrinter.java 36 * This class prints out the seeds specified by keep options.
56 * @param configuration the configuration containing the keep options.
63 // Check if we have at least some keep commands.
64 if (configuration.keep == null)
66 throw new IOException("You have to specify '-keep' options for the shrinking step.");
78 ClassSpecificationVisitorFactory.createClassPoolVisitor(configuration.keep,
  /external/stlport/
libstlport.mk 4 # keep the RTTI stuff in abi/cpp/include in front of our STL headers.

Completed in 1250 milliseconds

1 2 3 4 5 6 7 8 91011>>