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

1 2 3 4 5 6

  /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;
  /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}
32 public static final int PUBLIC = 0x1;
38 public static final int PRIVATE = 0x2;
44 public static final int PROTECTED = 0x4;
49 public static final int STATIC = 0x8;
54 public static final int FINAL = 0x10;
60 public static final int SYNCHRONIZED = 0x20;
66 public static final int VOLATILE = 0x40
    [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...]
  /external/dnsmasq/dbus/
dnsmasq.conf 1 <!DOCTYPE busconfig 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...]
CtPrimitiveType.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.
22 public final class CtPrimitiveType extends CtClass {
49 public boolean isPrimitive() { return true; }
57 public int getModifiers() {
58 return Modifier.PUBLIC | Modifier.FINAL;
65 public char getDescriptor() { return descriptor; }
72 public String getWrapperName() { return wrapperName; }
80 public String getGetMethodName() { return getMethodName; }
88 public String getGetMethodDescriptor() { return mDescriptor;
    [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/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 29 public class JDiffClassDescriptionTest extends InstrumentationTestCase {
31 public void notifyFailure(SignatureTestActivity.FAILURE_TYPE type, String name, String errmsg) {
40 public ExpectFailure(SignatureTestActivity.FAILURE_TYPE expectedType) {
44 public void notifyFailure(SignatureTestActivity.FAILURE_TYPE type, String name, String errMsg) {
57 public void validate() {
79 clz.setModifier(Modifier.PUBLIC);
83 public void testNormalClassCompliance() {
87 "public class NormalClass");
90 public void testMissingClass() {
100 public void testSimpleConstructor()
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ModifierTest.java 22 public class ModifierTest extends junit.framework.TestCase {
29 public void test_Constructor() {
37 public void test_isAbstractI() {
49 public void test_isFinalI() {
60 public void test_isInterfaceI() {
72 public void test_isNativeI() {
83 public void test_isPrivateI() {
95 public void test_isProtectedI() {
107 public void test_isPublicI() {
109 assertTrue("PUBLIC returned false", Modifier.isPublic(ALL_FLAGS))
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTypeTest.java 24 public class KeyRepTypeTest extends TestCase {
37 public void testValueOf() {
52 assertEquals(KeyRep.Type.PUBLIC, KeyRep.Type.valueOf(KeyRep.Type.PUBLIC
61 public void testValues() {
63 KeyRep.Type.PUBLIC, KeyRep.Type.PRIVATE };
KeyRepTest.java 32 public class KeyRepTest extends TestCase {
39 public final void testKeyRep01() {
41 assertNotNull(new KeyRep(KeyRep.Type.PUBLIC, "", "", new byte[] {}));
45 public final void testKeyRep02() {
62 new KeyRep(KeyRep.Type.PUBLIC, "", "", null);
68 public final void testReadResolve01() throws Exception {
91 public final void testReadResolve02() throws Exception {
92 KeyRepChild kr = new KeyRepChild(KeyRep.Type.PUBLIC, "", "", new byte[] {});
99 kr = new KeyRepChild(KeyRep.Type.PUBLIC, "", "RAW", new byte[] {});
106 kr = new KeyRepChild(KeyRep.Type.PUBLIC, "bla-bla", "X.509", new byte[] {})
    [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/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 34 | 'PUBLIC' WS pub=VALUE WS sys2=VALUE
35 {say("PUBLIC: " + $pub.text)}
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus-wpa_supplicant.conf 1 <!DOCTYPE busconfig PUBLIC
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ModifierTest.java 21 public class ModifierTest extends junit.framework.TestCase {
22 public void test_classModifiers() {
26 public void test_constructorModifiers() {
30 public void test_fieldModifiers() {
34 public void test_interfaceModifiers() {
38 public void test_methodModifiers() {
42 public void test_isAbstractI() {
47 public void test_isFinalI() {
52 public void test_isInterfaceI() {
57 public void test_isNativeI()
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 10 public class sym {
48 static final int PUBLIC = 45;
  /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,
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 53 public abstract class ConvertClassTest extends AbstractConvertTest {
56 public void convertPackageClassTest() throws IOException {
57 IApi api = convert(new CompilationUnit("a.b.A", "package a.b; public class A{}"));
67 public void convertClassClassTest() throws IOException {
68 IApi api = convert(new CompilationUnit("a.A", "package a; public class A{}"));
74 assertTrue(sigClass.getModifiers().contains(Modifier.PUBLIC));
78 public void convertClassInterfaceTest() throws IOException {
79 IApi api = convert(new CompilationUnit("a.A", "package a; public interface A{}"));
85 assertTrue(sigClass.getModifiers().contains(Modifier.PUBLIC));
89 public void convertClassEnumTest() throws IOException
    [all...]
  /cts/tools/signature-tools/test/signature/converter/doclet/
DocletTestConverter.java 43 public class DocletTestConverter extends signature.converter.util.AbstractTestSourceConverter {
56 public IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException {
78 public static void putSource(CompilationUnit source) throws IOException {
111 if(visibility == Visibility.PUBLIC){
113 com.sun.tools.javac.code.Flags.PUBLIC; // 0x1
117 com.sun.tools.javac.code.Flags.PUBLIC // 0x1
122 com.sun.tools.javac.code.Flags.PUBLIC // 0x1
128 com.sun.tools.javac.code.Flags.PUBLIC // 0x1
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 85 class DispatcherClass : public Class
87 public:
125 this->processMethod->modifiers = PUBLIC;
287 class RpcProxyClass : public Class
289 public:
305 this->modifiers = PUBLIC;
331 ctor->modifiers = PUBLIC;
346 get->modifiers = PUBLIC;
356 class EventListenerClass : public DispatcherClass
358 public
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
HelloWorldMaker.java 30 public final class HelloWorldMaker {
31 public static void main(String[] args) throws Exception {
36 dexMaker.declare(helloWorld, "HelloWorld.generated", Modifier.PUBLIC, TypeId.OBJECT);
51 * public static void hello() {
70 Code code = dexMaker.declare(hello, Modifier.STATIC | Modifier.PUBLIC);
  /external/mdnsresponder/mDNSShared/
dnsextd_lexer.l 61 public return PUBLIC;
  /external/proguard/src/proguard/classfile/editor/
AccessFixer.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
35 public class AccessFixer
49 public void visitAnyConstant(Clazz clazz, Constant constant) {}
52 public void visitStringConstant(Clazz clazz, StringConstant stringConstant)
64 public void visitAnyRefConstant(Clazz clazz, RefConstant refConstant)
78 public void visitClassConstant(Clazz clazz, ClassConstant classConstant)
89 public void visitLibraryClass(LibraryClass libraryClass) {}
92 public void visitProgramClass(ProgramClass programClass
    [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...]

Completed in 605 milliseconds

1 2 3 4 5 6