Searched refs:SYNCHRONIZED (Results 1 – 6 of 6) sorted by relevance
56 public static final int SYNCHRONIZED = 0x20; field in Modifier161 … return PUBLIC | PROTECTED | PRIVATE | ABSTRACT | STATIC | FINAL | SYNCHRONIZED | NATIVE | STRICT; in methodModifiers()231 return ((modifiers & SYNCHRONIZED) != 0); in isSynchronized()
88 assertTrue(Modifier.isSynchronized(Modifier.SYNCHRONIZED)); in test_isSynchronizedI()89 assertTrue(!Modifier.isSynchronized(-1 & ~Modifier.SYNCHRONIZED)); in test_isSynchronizedI()
95 flags &= ~Modifier.SYNCHRONIZED; in fixMethodFlags()98 flags |= Modifier.SYNCHRONIZED; in fixMethodFlags()
203 assertEquals(32, Modifier.SYNCHRONIZED); in test_Constants_Value()
315 mask = (Modifier.PUBLIC | Modifier.STATIC) | Modifier.SYNCHRONIZED; in test_getModifiers()323 mask = ((Modifier.PUBLIC | Modifier.STATIC) | Modifier.SYNCHRONIZED) in test_getModifiers()
67 Modifier.PROTECTED | Modifier.STATIC | Modifier.FINAL | Modifier.SYNCHRONIZED |