/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(
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_context.h | 112 #define SYNCHRONIZED do {} while(0) 126 #define SYNCHRONIZED lock_t<maybe_mutex_t<threadsafe> > lock_(this->mutex) 397 SYNCHRONIZED; \ 404 SYNCHRONIZED; \ 412 SYNCHRONIZED; \ 420 SYNCHRONIZED; \ 429 SYNCHRONIZED; \ 437 SYNCHRONIZED; \ 446 SYNCHRONIZED; \ 454 SYNCHRONIZED; \ [all...] |
d3d11_screen.h | 104 #define SYNCHRONIZED lock_t<maybe_mutex_t<threadsafe> > lock_(mutex) 242 SYNCHRONIZED; 303 SYNCHRONIZED; 382 SYNCHRONIZED; 434 SYNCHRONIZED; 470 SYNCHRONIZED; 509 SYNCHRONIZED; 564 SYNCHRONIZED; 607 SYNCHRONIZED; 648 SYNCHRONIZED; [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_context.h | 112 #define SYNCHRONIZED do {} while(0) 126 #define SYNCHRONIZED lock_t<maybe_mutex_t<threadsafe> > lock_(this->mutex) 397 SYNCHRONIZED; \ 404 SYNCHRONIZED; \ 412 SYNCHRONIZED; \ 420 SYNCHRONIZED; \ 429 SYNCHRONIZED; \ 437 SYNCHRONIZED; \ 446 SYNCHRONIZED; \ 454 SYNCHRONIZED; \ [all...] |
d3d11_screen.h | 104 #define SYNCHRONIZED lock_t<maybe_mutex_t<threadsafe> > lock_(mutex) 242 SYNCHRONIZED; 303 SYNCHRONIZED; 382 SYNCHRONIZED; 434 SYNCHRONIZED; 470 SYNCHRONIZED; 509 SYNCHRONIZED; 564 SYNCHRONIZED; 607 SYNCHRONIZED; 648 SYNCHRONIZED; [all...] |
/libcore/luni/src/main/java/java/lang/reflect/ |
Modifier.java | 54 * The {@code int} value representing the {@code synchronized} modifier. 56 public static final int SYNCHRONIZED = 0x20; 161 return PUBLIC | PROTECTED | PRIVATE | ABSTRACT | STATIC | FINAL | SYNCHRONIZED | NATIVE | STRICT; 228 * Returns true if the given modifiers contain {@link #SYNCHRONIZED}. 231 return ((modifiers & SYNCHRONIZED) != 0); 288 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;
|
/libcore/libart/src/main/java/java/lang/reflect/ |
AbstractMethod.java | 68 * We also move the DECLARED_SYNCHRONIZED flag into the SYNCHRONIZED 76 flags &= ~Modifier.SYNCHRONIZED; 79 flags |= Modifier.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 | 205 if ((modifiers & Modifier.SYNCHRONIZED) != 0) { 211 sb.append("synchronized"); 457 * - synchronized is allowed to be removed from an apiMethod 467 // If the apiMethod isn't synchronized 468 if (((apiMethod.mModifier & Modifier.SYNCHRONIZED) == 0) && 470 ((reflectedMethod.getModifiers() & Modifier.SYNCHRONIZED) != 0)) { 476 // SYNCHRONIZED since we've already handled that check. 477 int mod1 = reflectedMethod.getModifiers() & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED); 478 int mod2 = apiMethod.mModifier & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED); [all...] |
SignatureTest.java | 58 private static final String MODIFIER_SYNCHRONIZED = "synchronized"; 297 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);
|