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

1 2 3

  /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 76 * We also move the DECLARED_SYNCHRONIZED flag into the SYNCHRONIZED
84 flags &= ~Modifier.SYNCHRONIZED;
87 flags |= Modifier.SYNCHRONIZED;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
AccessFlags.java 43 SYNCHRONIZED(0x20, "synchronized", false, true, false),
56 DECLARED_SYNCHRONIZED(0x20000, "declared-synchronized", false, true, false);
  /cts/tests/signature/src/android/signature/cts/
JDiffClassDescription.java 203 if ((modifiers & Modifier.SYNCHRONIZED) != 0) {
209 sb.append("synchronized");
458 * - synchronized is allowed to be removed from an apiMethod
468 // If the apiMethod isn't synchronized
469 if (((apiMethod.mModifier & Modifier.SYNCHRONIZED) == 0) &&
471 ((reflectedMethod.getModifiers() & Modifier.SYNCHRONIZED) != 0)) {
477 // SYNCHRONIZED since we've already handled that check.
478 int mod1 = reflectedMethod.getModifiers() & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
479 int mod2 = apiMethod.mModifier & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
    [all...]
SignatureTest.java 62 private static final String MODIFIER_SYNCHRONIZED = "synchronized";
304 return value.equals("true") ? Modifier.SYNCHRONIZED : 0;
  /cts/tests/signature-tests/src/android/signature/cts/tests/
JDiffClassDescriptionTest.java 162 "syncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void");
165 assertEquals(method.toSignatureString(), "public synchronized void syncMethod()");
337 * Test the case where the API declares the method not synchronized, but it
351 * Test the case where the API declares the method is synchronized, but it
357 "notSyncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
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);
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...]

Completed in 1062 milliseconds

1 2 3