/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 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/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/chromium_org/v8/src/ |
zone.cc | 94 // Find a segment with a suitable size to keep around. 95 Segment* keep = NULL; local 97 // and freeing every segment except the one we wish to keep. 100 if (keep == NULL && current->size() <= kMaximumKeptSegmentSize) { 101 // Unlink the segment we wish to keep from the list. 102 keep = current; 103 keep->clear_next(); 115 // If we have found a segment we want to keep, we must recompute the 119 if (keep != NULL) { 120 Address start = keep->start() [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/bouncycastle/ |
Android.mk | 66 -keep class org.bouncycastle.jce.provider.BouncyCastleProvider "{ public protected *; }" \ 67 -keep class org.bouncycastle.jce.provider.symmetric.AESMappings "{ public protected *; }" \ 68 -keep class org.bouncycastle.asn1.ASN1TaggedObject "{ public protected *; }" \ 69 -keep class org.bouncycastle.asn1.x509.CertificateList "{ public protected *; }" \ 70 -keep class org.bouncycastle.crypto.AsymmetricBlockCipher "{ public protected *; }" \ 71 -keep class org.bouncycastle.x509.ExtendedPKIXBuilderParameters "{ public protected *; }" \ 75 | 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.
|
/external/stlport/ |
libstlport.mk | 4 # keep the RTTI stuff in abi/cpp/include in front of our STL headers.
|