/frameworks/compile/slang/ |
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();
|
/packages/apps/TV/ |
proguard.flags | 30 # Keep the methods called from native code. 42 # Keep method which is used for reflection. 43 -keep @com.android.tv.common.annotation.UsedByReflection class * {*;} 49 -keep @android.support.annotation.VisibleForTesting class * {*;}
|
/external/libmicrohttpd/src/microhttpd/ |
memorypool.c | 254 * for @a keep of the given @a size. 257 * @param keep pointer to the entry to keep (maybe NULL) 259 * @return addr new address of @a keep (if it had to change) 263 void *keep, 266 if (NULL != keep) 268 if (keep != pool->memory) 270 memmove (pool->memory, keep, size); 271 keep = pool->memory; 278 if (NULL != keep) [all...] |
/external/v8/src/ |
zone.cc | 131 // Find a segment with a suitable size to keep around. 132 Segment* keep = nullptr; local 134 // and freeing every segment except the one we wish to keep. 137 if (!keep && current->size() <= kMaximumKeptSegmentSize) { 138 // Unlink the segment we wish to keep from the list. 139 keep = current; 140 keep->clear_next(); 154 // If we have found a segment we want to keep, we must recompute the 158 if (keep) { 159 Address start = keep->start() [all...] |
/external/parameter-framework/upstream/tools/xmlGenerator/ |
domainGenerator.sh | 110 if test $2 != --keep-autoSync-disable
|
/external/libpng/contrib/libtests/ |
pngunknown.c | 189 int keep; /* unknown handling setting */ member in struct:__anon17620 331 chunk_info[i].keep = 0; 395 int keep; /* the default value */ member in struct:__anon17621 508 * returning '0' to keep the chunk and '1' to discard it. 512 int keep, discard; local 515 keep = d->keep; 519 keep = chunk_info[chunk].keep; 520 if (keep == PNG_HANDLE_CHUNK_AS_DEFAULT 892 int keep = chunk_info[i].keep; local [all...] |
/external/proguard/examples/ |
proguardgui.pro | 21 # perform incremental obfuscation based on its mapping file, and only keep the 49 -keep public class proguard.gui.ProGuardGUI {
|
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
|
/prebuilts/go/darwin-x86/src/net/ |
tcpsockopt_plan9.go | 14 // Set keep alive period.
|
/prebuilts/go/linux-x86/src/net/ |
tcpsockopt_plan9.go | 14 // Set keep alive period.
|
/prebuilts/tools/common/proguard/proguard4.7/examples/ |
proguardgui.pro | 20 # perform incremental obfuscation based on its mapping file, and only keep the 48 -keep public class proguard.gui.ProGuardGUI {
|
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
|
/external/proguard/src/proguard/gradle/ |
ProGuardTask.java | 281 public void keep(String classSpecificationString) method in class:ProGuardTask 284 keep(null, classSpecificationString); method 287 public void keep(Map keepArgs, method in class:ProGuardTask 291 configuration.keep = 292 extendClassSpecifications(configuration.keep, 300 public void keep(Map keepClassSpecificationArgs) method in class:ProGuardTask 303 keep(keepClassSpecificationArgs, (Closure)null); method 306 public void keep(Map keepClassSpecificationArgs, method in class:ProGuardTask 310 configuration.keep = 311 extendClassSpecifications(configuration.keep, [all...] |
/external/autotest/site_utils/admin/ |
clean_staged_images.py | 11 1. Check if the build target is in the list of targets that need to keep the 99 @param keep_duration: How old of regular builds to keep around. 100 @param keep_paladin_duration: How old of Paladin builds to keep around. 105 keep = keep_paladin_duration 107 keep = keep_duration 108 if file_is_too_old(timestamp_dir, keep): 120 help='Number of hours to keep normal builds: %default') 122 help='Number of hours to keep paladin builds: %default')
|
/external/tcpdump/ |
print-chdlc.c | 129 } keep; member in union:cisco_slarp::__anon24431 168 EXTRACT_32BITS(&slarp->un.keep.myseq), 169 EXTRACT_32BITS(&slarp->un.keep.yourseq), 170 EXTRACT_16BITS(&slarp->un.keep.rel)));
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
CameraButtonIntentReceiver.java | 44 holder.keep();
|
/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 | 69 DepOut.keep(); 118 Out.keep();
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue12133.go | 8 // because we did not keep track of its allocation correctly.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue12133.go | 8 // because we did not keep track of its allocation correctly.
|
/external/bouncycastle/ |
Android.mk | 114 -keep class org.bouncycastle.jce.provider.BouncyCastleProvider "{ public protected *; }" \ 115 -keep class org.bouncycastle.jce.provider.symmetric.AESMappings "{ public protected *; }" \ 116 -keep class org.bouncycastle.asn1.ASN1TaggedObject "{ public protected *; }" \ 117 -keep class org.bouncycastle.asn1.x509.CertificateList "{ public protected *; }" \ 118 -keep class org.bouncycastle.crypto.AsymmetricBlockCipher "{ public protected *; }" \ 119 -keep class org.bouncycastle.x509.ExtendedPKIXBuilderParameters "{ public protected *; }" \ 123 | sed -e 's/^/-keep class /' -e 's/$$/ { public protected \*; } /' | sort | uniq` \
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
AsmAnalyzerTest.java | 211 TreeMap<String, ClassReader> keep = new TreeMap<>(); local 216 ClassReader cr = mAa.findClass("mock_android.widget.LinearLayout", zipClasses, keep); 217 DependencyVisitor visitor = mAa.getVisitor(zipClasses, keep, new_keep, in_deps, out_deps); 251 keep.putAll(new_keep); 256 }, keep.keySet().toArray());
|
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/profile/ |
prune.go | 82 var keep, drop *regexp.Regexp 90 if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil { 94 p.Prune(drop, keep)
|
/prebuilts/go/linux-x86/src/cmd/pprof/internal/profile/ |
prune.go | 82 var keep, drop *regexp.Regexp 90 if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil { 94 p.Prune(drop, keep)
|
/external/dng_sdk/source/ |
dng_host.h | 96 // What DNG version should we keep enough data to save? 104 // Keep the original raw file data block? 301 /// Setter for flag determining whether to keep original RAW file data. 302 /// \param keep If true, origianl RAW data will be kept. 304 void SetKeepOriginalFile (bool keep) 306 fKeepOriginalFile = keep; 309 /// Getter for flag determining whether to keep original RAW file data.
|