HomeSort by relevance Sort by last modified time
    Searched refs:SYNCHRONIZED (Results 1 - 25 of 35) 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...]
CodeGen.java 369 else if (op == SYNCHRONIZED)
647 throw new CompileError("bad type expr for synchronized block");
693 "sorry, cannot break/continue in synchronized block");
    [all...]
  /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...]
  /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...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
242 public static final int SYNCHRONIZED=69;
598 if ( (LA4_0==IDENTIFIER||LA4_0==ABSTRACT||LA4_0==BOOLEAN||LA4_0==BYTE||(LA4_0>=CHAR && LA4_0<=CLASS)||LA4_0==DOUBLE||LA4_0==ENUM||LA4_0==FINAL||LA4_0==FLOAT||(LA4_0>=INT && LA4_0<=NATIVE)||(LA4_0>=PRIVATE && LA4_0<=PUBLIC)||(LA4_0>=SHORT && LA4_0<=STRICTFP)||LA4_0==SYNCHRONIZED||LA4_0==TRANSIENT||(LA4_0>=VOID && LA4_0<=VOLATILE)||LA4_0==SEMI||LA4_0==MONKEYS_AT||LA4_0==LT) ) {
    [all...]
  /cts/tools/dx-tests/lib/
jasmin.jar 

Completed in 609 milliseconds

1 2