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

1 2

  /external/javassist/src/main/javassist/
Modifier.java 36 public static final int SYNCHRONIZED = AccessFlag.SYNCHRONIZED;
96 * Returns true if the modifiers include the <tt>synchronized</tt>
100 return (mod & SYNCHRONIZED) != 0;
SerialVersionUID.java 175 | Modifier.FINAL | Modifier.SYNCHRONIZED
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 26 "static"), FINAL("final"), SYNCHRONIZED("synchronized"), VOLATILE(
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 57 * The {@code int} value representing the {@code synchronized}
60 public static final int SYNCHRONIZED = 0x20;
155 return PUBLIC | PROTECTED | PRIVATE | ABSTRACT | STATIC | FINAL | SYNCHRONIZED | NATIVE | STRICT;
277 * synchronized} modifier.
282 * synchronized} modifier, {@code false} otherwise
285 return ((modifiers & SYNCHRONIZED) != 0);
319 * {@code public private protected abstract static final transient volatile native synchronized interface strict}
353 buf.append("synchronized ");
  /cts/tools/dasm/src/dasm/
sym.java 64 static final int SYNCHRONIZED = 47;
ReservedWords.java 95 reserved_words.put("synchronized", new token(sym.SYNCHRONIZED));
parser.cup 73 SYNCHRONIZED, DECLARED_SYNCHRONIZED, TRANSIENT, VOLATILE,
213 SYNCHRONIZED {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_SYNCHRONIZED; :}
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ModifierTest.java 88 assertTrue(Modifier.isSynchronized(Modifier.SYNCHRONIZED));
89 assertTrue(!Modifier.isSynchronized(-1 & ~Modifier.SYNCHRONIZED));
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 28 public static final int SYNCHRONIZED = 0x0020;
ClassFilePrinter.java 42 /* 0x0020 (SYNCHRONIZED) means ACC_SUPER if the modifiers
47 & ~AccessFlag.SYNCHRONIZED);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 57 int SYNCHRONIZED = 338;
MemberResolver.java 554 case SYNCHRONIZED :
555 m |= Modifier.SYNCHRONIZED;
Parser.java 161 * : ( FINAL | SYNCHRONIZED | ABSTRACT
171 || t == PRIVATE || t == SYNCHRONIZED || t == STATIC
265 else if (t == SYNCHRONIZED)
449 /* synchronized.statement :
450 * SYNCHRONIZED "(" expression ")" block.statement
453 int t = lex.get(); // SYNCHRONIZED
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 242 * {@link Modifier#FINAL} and {@link Modifier#SYNCHRONIZED}.
243 * <p><strong>Warning:</strong> the {@link Modifier#SYNCHRONIZED} flag
244 * is insufficient to generate a synchronized method. You must also use
255 | Modifier.STATIC | Modifier.FINAL | Modifier.SYNCHRONIZED;
261 // replace the SYNCHRONIZED flag with the DECLARED_SYNCHRONIZED flag
262 if ((flags & Modifier.SYNCHRONIZED) != 0) {
263 flags = (flags & ~Modifier.SYNCHRONIZED) | AccessFlags.ACC_DECLARED_SYNCHRONIZED;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AccessFlags.java 40 SYNCHRONIZED(0x20, "synchronized", false, true, false),
53 DECLARED_SYNCHRONIZED(0x20000, "declared-synchronized", false, true, false);
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 203 if ((modifiers & Modifier.SYNCHRONIZED) != 0) {
209 sb.append("synchronized");
455 * - synchronized is allowed to be removed from an apiMethod
465 // If the apiMethod isn't synchronized
466 if (((apiMethod.mModifier & Modifier.SYNCHRONIZED) == 0) &&
468 ((reflectedMethod.getModifiers() & Modifier.SYNCHRONIZED) != 0)) {
474 // SYNCHRONIZED since we've already handled that check.
475 int mod1 = reflectedMethod.getModifiers() & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
476 int mod2 = apiMethod.mModifier & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
    [all...]
SignatureTest.java 54 private static final String MODIFIER_SYNCHRONIZED = "synchronized";
261 return value.equals("true") ? Modifier.SYNCHRONIZED : 0;
SimpleSignatureTest.java 62 private static final String MODIFIER_SYNCHRONIZED = "synchronized";
286 return value.equals("true") ? Modifier.SYNCHRONIZED : 0;
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 146 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("syncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void");
149 assertEquals(method.toSignatureString(), "public synchronized void syncMethod()");
281 * synchronized, but it actually is. */
291 * synchronized, but it actually is not. */
294 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("notSyncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
MethodTest.java 80 public static synchronized void pustatsynch() {
99 public static synchronized native void pustatsynchnat();
214 mask = (Modifier.PUBLIC | Modifier.STATIC) | Modifier.SYNCHRONIZED;
219 mask = ((Modifier.PUBLIC | Modifier.STATIC) | Modifier.SYNCHRONIZED)
ModifierTest.java 142 assertTrue("Synchronized returned false", Modifier
144 assertTrue("Non-Synchronized returned true", !Modifier
188 + "volatile synchronized native strictfp interface";
203 assertEquals(32, Modifier.SYNCHRONIZED);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 89 public static synchronized void pustatsynch() {
108 public static synchronized native void pustatsynchnat();
315 mask = (Modifier.PUBLIC | Modifier.STATIC) | Modifier.SYNCHRONIZED;
323 mask = ((Modifier.PUBLIC | Modifier.STATIC) | Modifier.SYNCHRONIZED)
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 420 synchronized (proxyCache) {
471 // synchronized (proxyCache) {
679 private static synchronized String makeProxyName(String classname) {
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 32 import static java.lang.reflect.Modifier.SYNCHRONIZED;
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 67 Modifier.PROTECTED | Modifier.STATIC | Modifier.FINAL | Modifier.SYNCHRONIZED |
189 synchronized (reflectionFields) {
200 synchronized (reflectionFields) {
    [all...]

Completed in 3081 milliseconds

1 2