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

1 2 3 4

  /external/jarjar/src/main/com/tonicsystems/jarjar/
Keep.java 19 public class Keep extends PatternElement
MainProcessor.java 35 List<Keep> keepList = new ArrayList<Keep>();
41 } else if (pattern instanceof Keep) {
42 keepList.add((Keep) pattern);
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);
RulesFileParser.java 63 } else if (type.equals("keep")) {
64 element = new Keep();
  /external/proguard/examples/annotations/examples/
Applet.java 13 @Keep
NativeCallBack.java 19 * The -keep option regular ProGuard configuration will make sure it is
31 @Keep
Bean.java 13 @Keep
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/examples/
Applet.java 13 @Keep
NativeCallBack.java 19 * The -keep option regular ProGuard configuration will make sure it is
31 @Keep
Bean.java 13 @Keep
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.idl 52 * Keep - pass first parameter (used to access the InstrumentingAgents instance) to agents.
71 void didClearDocumentOfWindowObject([Keep] LocalFrame*);
77 void willInsertDOMNode([Keep] Node* parent);
80 void didInsertDOMNode([Keep] Node*);
83 void willRemoveDOMNode([Keep] Node*);
86 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const AtomicString& newValue);
89 void didModifyDOMAttr([Keep] Element*, const AtomicString& name, const AtomicString& value);
92 void didRemoveDOMAttr([Keep] Element*, const AtomicString& name);
95 void characterDataModified([Keep] CharacterData*);
98 void didInvalidateStyleAttr([Keep] Node*)
    [all...]
  /external/llvm/lib/Support/
ToolOutputFile.cpp 20 : Filename(filename), Keep(false) {
28 if (!Keep && Filename != "-")
42 Installer.Keep = true;
  /external/proguard/examples/annotations/src/proguard/annotation/
Keep.java 18 public @interface Keep {}
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/src/proguard/annotation/
Keep.java 18 public @interface Keep {}
  /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
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 34 {".init", ".init", InputSectDesc::Keep},
35 {".fini", ".fini", InputSectDesc::Keep},
36 {".preinit_array*", ".preinit_array", InputSectDesc::Keep},
37 {".init_array*", ".init_array", InputSectDesc::Keep},
38 {".fini_array*", ".fini_array", InputSectDesc::Keep},
40 {".ctors*", ".ctors", InputSectDesc::Keep},
41 {".dtors*", ".dtors", InputSectDesc::Keep},
42 {".jcr", ".jcr", InputSectDesc::Keep},
52 {".gcc_except_table*", ".gcc_except_table", InputSectDesc::Keep},
  /frameworks/compile/mclinker/lib/Support/
ToolOutputFile.cpp 29 : Keep(false), m_Path(pPath) {
40 if (!Keep && "_" != m_Path.native()) {
63 m_Installer.Keep = true;
79 void ToolOutputFile::keep() function in class:ToolOutputFile
81 m_Installer.Keep = true;
  /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...]
annotations.jar 
  /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...]
annotations.jar 
  /frameworks/compile/mclinker/include/mcld/Support/
ToolOutputFile.h 28 * destoryed unless the client calls keep().
48 /// keep - Indicate that the tool's job wrt this output file has been
50 void keep();
60 /// Keep - The flag which indicates whether we should not delete the file.
61 bool Keep;
  /external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
background.js 25 // Keep the sendResponse channel open, so a response can be sent
  /frameworks/compile/mclinker/lib/Script/
InputSectDesc.cpp 37 if (m_KeepPolicy == Keep)
38 mcld::outs() << "KEEP (";
93 if (m_KeepPolicy == Keep)
  /frameworks/compile/mclinker/include/mcld/Script/
InputSectDesc.h 30 Keep,

Completed in 737 milliseconds

1 2 3 4