Home | History | Annotate | Download | only in bytecode

Lines Matching refs:PRIVATE

24     public static final int PRIVATE   = 0x0002;
47 * Truns the public bit on. The protected and private bits are
51 return (accflags & ~(PRIVATE | PROTECTED)) | PUBLIC;
59 return (accflags & ~(PRIVATE | PUBLIC)) | PROTECTED;
63 * Truns the private bit on. The protected and private bits are
67 return (accflags & ~(PROTECTED | PUBLIC)) | PRIVATE;
71 * Clears the public, protected, and private bits.
74 return (accflags & ~(PROTECTED | PUBLIC | PRIVATE));
92 * Returns true if the access flags include the private bit.
95 return (accflags & PRIVATE) != 0;
100 * or private.
103 return (accflags & (PROTECTED | PUBLIC | PRIVATE)) == 0;