Searched refs:keep (Results 1 - 25 of 170) sorted by relevance

1234567

/external/chromium_org/chrome/browser/spellchecker/
H A Dword_trimmer.h10 // 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);
H A Dword_trimmer.cc15 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--;
12 TrimWords(size_t* start, size_t end, const base::string16& text, size_t keep) argument
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DJarJarTask.java41 public void addConfiguredKeep(Keep keep) { argument
42 if (keep.getPattern() == null)
43 throw new IllegalArgumentException("The <keep> element requires a \"pattern\" attribute.");
44 patterns.add(keep);
/external/proguard/examples/
H A Dproguardall.pro43 -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
H A Dandroid.pro31 # You can print out the seeds that are matching the keep options below.
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.MyClass
162 # -keep publi
[all...]
H A Dmidlets.pro42 # 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
H A Dproguard.pro37 -keep public class proguard.ProGuard {
47 #-keep,allowobfuscation class proguard.ant.*
62 #-keep public class proguard.gradle.* {
70 #-keep public class proguard.wtk.ProGuardObfuscator
H A Dretrace.pro20 # perform incremental obfuscation based on its mapping file, and only keep the
41 -keep public class proguard.retrace.ReTrace {
H A Dproguardgui.pro21 # perform incremental obfuscation based on its mapping file, and only keep the
49 -keep public class proguard.gui.ProGuardGUI {
H A Dapplets.pro27 # 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
/external/proguard/src/proguard/ant/
H A DConfigurationTask.java52 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
[all...]
/external/proguard/examples/annotations/lib/
H A Dannotations.pro26 -keep @proguard.annotation.Keep class *
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.
94 # @KeepGettersSetters and @KeepPublicGettersSetters specify to keep all, resp.
/external/llvm/include/llvm/Support/
H A DToolOutputFile.h25 /// object is destroyed unless the client calls 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/
H A Dzone.cc112 // 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
[all...]
/external/bouncycastle/
H A DAndroid.mk83 -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/
H A DSeedPrinter.java36 * 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,
H A DInitializer.java70 fullyQualifiedClassNameNotePrinter).checkClassSpecifications(configuration.keep);
72 new KeepClassMemberChecker(keepClassMemberNotePrinter).checkClassSpecifications(configuration.keep);
150 createClassNoteExceptionMatcher(configuration.keep))))));
162 createClassMemberNoteExceptionMatcher(configuration.keep, true),
163 createClassMemberNoteExceptionMatcher(configuration.keep, false))))));
180 descriptorKeepNotePrinter).checkClassSpecifications(configuration.keep);
261 System.out.println(" if you just need '-keep'.");
271 System.out.println(" (using '-keep').");
290 System.out.println(" their implementations (using '-keep').");
300 System.out.println(" (using '-keep' o
[all...]
/external/stlport/
H A Dlibstlport.mk4 # keep the RTTI stuff in abi/cpp/include in front of our STL headers.
/external/libpng/contrib/libtests/
H A Dpngunknown.c178 int keep; /* unknown handling setting */ member in struct:__anon24617
320 chunk_info[i].keep = 0;
384 int keep; /* the default value */ member in struct:__anon24618
497 * returning '0' to keep the chunk and '1' to discard it.
501 int keep, discard; local
504 keep = d->keep;
508 keep = chunk_info[chunk].keep;
509 if (keep
865 int keep = chunk_info[i].keep; local
[all...]
/external/proguard/src/proguard/gradle/
H A DProGuardTask.java202 public void keep(String classSpecificationString) method in class:ProGuardTask
205 keep(null, classSpecificationString);
208 public void keep(Map keepArgs, method in class:ProGuardTask
212 configuration.keep =
213 extendClassSpecifications(configuration.keep,
221 public void keep(Map keepClassSpecificationArgs) method in class:ProGuardTask
224 keep(keepClassSpecificationArgs, (Closure)null);
227 public void keep(Map keepClassSpecificationArgs, method in class:ProGuardTask
231 configuration.keep =
232 extendClassSpecifications(configuration.keep,
[all...]
/external/chromium_org/components/policy/core/common/cloud/
H A Dresource_cache_unittest.cc73 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/chromium_org/build/android/gyp/
H A Ddelete_files.py22 '--keep',
23 help='Files to keep even if they matches the pattern.')
38 keep_pattern = os.path.join(target_dir, options.keep)
/external/tcpdump/
H A Dprint-chdlc.c138 } keep; member in union:cisco_slarp::__anon31504
177 EXTRACT_32BITS(&slarp->un.keep.myseq),
178 EXTRACT_32BITS(&slarp->un.keep.yourseq),
179 EXTRACT_16BITS(&slarp->un.keep.rel));
/external/oprofile/opjitconv/
H A Djitsymbol.c228 * 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) argument
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
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenSource.pm6 # 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
35 errors and keep going, looking for a valid token.

Completed in 444 milliseconds

1234567