/cts/tools/signature-tools/src/signature/converter/ |
Visibility.java | 23 * <li><code>PUBLIC</code> only the public classes and members are included. 24 * <li><code>PROTECTED</code> the public and protected classes members are 26 * <li><code>PACKAGE</code> the public, protected and package visible classes 34 public enum Visibility { 35 PUBLIC, PROTECTED, PACKAGE, PRIVATE;
|
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
u_compiler.h | 31 #ifndef PUBLIC 33 # define PUBLIC __attribute__((visibility("default"))) 35 # define PUBLIC __declspec(dllexport) 37 # define PUBLIC
|
/external/mesa3d/src/mapi/mapi/ |
u_compiler.h | 31 #ifndef PUBLIC 33 # define PUBLIC __attribute__((visibility("default"))) 35 # define PUBLIC __declspec(dllexport) 37 # define PUBLIC
|
/libcore/luni/src/main/java/java/lang/reflect/ |
Member.java | 27 public interface Member { 30 * Designates all public members of a class or interface (including 33 public static final int PUBLIC = 0; 39 public static final int DECLARED = 1;
|
Modifier.java | 26 public class Modifier { 29 * The {@code int} value representing the {@code public} modifier. 31 public static final int PUBLIC = 0x1; 36 public static final int PRIVATE = 0x2; 41 public static final int PROTECTED = 0x4; 46 public static final int STATIC = 0x8; 51 public static final int FINAL = 0x10; 56 public static final int SYNCHRONIZED = 0x20; 61 public static final int VOLATILE = 0x40 [all...] |
/external/proguard/src/proguard/classfile/util/ |
AccessUtil.java | 8 * under the terms of the GNU General Public License as published by the Free 14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 17 * You should have received a copy of the GNU General Public License along 29 * <code>PACKAGE_VISIBLE</code>, <code>PROTECTED</code>, and <code>PUBLIC</code>. 33 public class AccessUtil 35 public static final int PRIVATE = 0; 36 public static final int PACKAGE_VISIBLE = 1; 37 public static final int PROTECTED = 2; 38 public static final int PUBLIC = 3 [all...] |
/cts/tools/signature-tools/src/signature/model/ |
Modifier.java | 24 public enum Modifier { 25 PUBLIC("public"), PRIVATE("private"), PROTECTED("protected"), STATIC( 37 public String toString() { 41 public static String toString(Set<Modifier> modifiers) {
|
/external/chromium_org/third_party/mesa/src/src/egl/main/ |
eglcompiler.h | 97 #ifndef PUBLIC 99 # define PUBLIC __attribute__((visibility("default"))) 101 # define PUBLIC __declspec(dllexport) 103 # define PUBLIC
|
/external/mesa3d/src/egl/main/ |
eglcompiler.h | 97 #ifndef PUBLIC 99 # define PUBLIC __attribute__((visibility("default"))) 101 # define PUBLIC __declspec(dllexport) 103 # define PUBLIC
|
/libcore/luni/src/main/java/java/security/ |
KeyRep.java | 34 public class KeyRep implements Serializable { 64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) { 93 * <li> {@code Type.PUBLIC} | "X.509": returns a {@link PublicKey} instance, 115 case PUBLIC: 157 public static enum Type { 163 * Type for public keys. 165 PUBLIC,
|
/art/dalvikvm/ |
dalvikvm.cc | 31 // Determine whether or not the specified method is public. 51 static const int PUBLIC = 0x0001; // java.lang.reflect.Modifiers.PUBLIC 52 if ((modifiers & PUBLIC) == 0) { 88 // Make sure the method is public. JNI doesn't prevent us from 91 fprintf(stderr, "Sorry, main() is not public in '%s'\n", class_name.c_str());
|
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/ |
p_compiler.h | 152 #ifndef PUBLIC 154 # define PUBLIC __attribute__((visibility("default"))) 156 # define PUBLIC __declspec(dllexport) 158 # define PUBLIC
|
/external/mesa3d/src/gallium/include/pipe/ |
p_compiler.h | 152 #ifndef PUBLIC 154 # define PUBLIC __attribute__((visibility("default"))) 156 # define PUBLIC __declspec(dllexport) 158 # define PUBLIC
|
/external/javassist/src/main/javassist/ |
Modifier.java | 5 * The contents of this file are subject to the Mozilla Public License Version 8 * the terms of the GNU Lesser General Public License Version 2.1 or later. 30 public class Modifier { 31 public static final int PUBLIC = AccessFlag.PUBLIC; 32 public static final int PRIVATE = AccessFlag.PRIVATE; 33 public static final int PROTECTED = AccessFlag.PROTECTED; 34 public static final int STATIC = AccessFlag.STATIC; 35 public static final int FINAL = AccessFlag.FINAL [all...] |
/external/javassist/src/main/javassist/bytecode/ |
AccessFlag.java | 5 * The contents of this file are subject to the Mozilla Public License Version 8 * the terms of the GNU Lesser General Public License Version 2.1 or later. 20 * for access modifiers such as public, rivate, ... 22 public class AccessFlag { 23 public static final int PUBLIC = 0x0001; 24 public static final int PRIVATE = 0x0002; 25 public static final int PROTECTED = 0x0004; 26 public static final int STATIC = 0x0008; 27 public static final int FINAL = 0x0010 [all...] |
/development/scripts/app_engine_server/ |
memcache_zipserve.py | 46 def create_handler(zip_files, max_age=None, public=None): 54 public: Whether this should be declared public in the client-side cache 83 if public is not None: 84 PUBLIC = public 98 PUBLIC = True # public cache setting 678 if self.PUBLIC: 679 cache_control.append('public') [all...] |
/external/chromium_org/third_party/codesighs/ |
msmap.h | 6 * The contents of this file are subject to the Mozilla Public License Version 28 * either the GNU General Public License Version 2 or later (the "GPL"), or 29 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 64 PUBLIC,
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
compiler.h | 144 * PUBLIC/USED macros 147 * use the PUBLIC macro to mark functions that are to be exported. 152 #ifndef PUBLIC 154 # define PUBLIC __attribute__((visibility("default"))) 157 # define PUBLIC
|
/external/mesa3d/src/mesa/main/ |
compiler.h | 144 * PUBLIC/USED macros 147 * use the PUBLIC macro to mark functions that are to be exported. 152 #ifndef PUBLIC 154 # define PUBLIC __attribute__((visibility("default"))) 157 # define PUBLIC
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
AccessFlags.java | 33 public enum AccessFlags 35 PUBLIC(0x1, "public", true, true, true), 84 public static AccessFlags[] getAccessFlagsForClass(int accessFlagValue) { 119 public static String formatAccessFlagsForClass(int accessFlagValue) { 123 public static AccessFlags[] getAccessFlagsForMethod(int accessFlagValue) { 141 public static String formatAccessFlagsForMethod(int accessFlagValue) { 145 public static AccessFlags[] getAccessFlagsForField(int accessFlagValue) { 163 public static String formatAccessFlagsForField(int accessFlagValue) { 167 public static AccessFlags getAccessFlag(String accessFlag) [all...] |
/cts/tools/dasm/src/dasm/ |
sym.java | 10 public class sym { 48 static final int PUBLIC = 45;
|
/frameworks/base/tools/aidl/ |
AST.h | 16 PUBLIC = 0x00000001, 48 struct LiteralExpression : public Expression 58 struct StringLiteralExpression : public Expression 67 struct Variable : public Expression 83 struct FieldVariable : public Expression 96 struct Field : public ClassElement 117 struct StatementBlock : public Statement 129 struct ExpressionStatement : public Statement 138 struct Assignment : public Expression 150 struct MethodCall : public Expressio [all...] |
/external/javassist/src/main/javassist/compiler/ |
TokenId.java | 5 * The contents of this file are subject to the Mozilla Public License Version 8 * the terms of the GNU Lesser General Public License Version 2.1 or later. 18 public interface TokenId { 51 int PUBLIC = 332;
|
/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlParser.java | 39 public class KXmlParser implements XmlPullParser, Closeable { 71 private static final char[] PUBLIC = { 'P', 'U', 'B', 'L', 'I', 'C' }; 179 public final StringPool stringPool = new StringPool(); 187 public void keepNamespaceAttributes() { 309 public int next() throws XmlPullParserException, IOException { 313 public int nextToken() throws XmlPullParserException, IOException { 606 * PUBLIC "quoted public id" "quoted system name" 608 * If the system name is not required, this also supports lone public IDs of 610 * PUBLIC "quoted public id [all...] |
/external/dexmaker/src/test/java/com/google/dexmaker/ |
DexMakerTest.java | 30 import static java.lang.reflect.Modifier.PUBLIC; 45 public final class DexMakerTest extends TestCase { 68 dexMaker.declare(GENERATED, "Generated.java", PUBLIC, TypeId.OBJECT); 71 public void testNewInstance() throws Exception { 73 * public static Constructable call(long a, boolean b) { 81 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); 95 public static class Constructable { 98 public Constructable(long a, boolean b) { 104 public void testVoidNoArgMemberMethod() throws Exception { 106 * public void call() [all...] |