Home | History | Annotate | Download | only in runtime

Lines Matching refs:constexpr

24 static constexpr uint32_t kAccPublic =       0x0001;  // class, field, method, ic
25 static constexpr uint32_t kAccPrivate = 0x0002; // field, method, ic
26 static constexpr uint32_t kAccProtected = 0x0004; // field, method, ic
27 static constexpr uint32_t kAccStatic = 0x0008; // field, method, ic
28 static constexpr uint32_t kAccFinal = 0x0010; // class, field, method, ic
29 static constexpr uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
30 static constexpr uint32_t kAccSuper = 0x0020; // class (not used in dex)
31 static constexpr uint32_t kAccVolatile = 0x0040; // field
32 static constexpr uint32_t kAccBridge = 0x0040; // method (1.5)
33 static constexpr uint32_t kAccTransient = 0x0080; // field
34 static constexpr uint32_t kAccVarargs = 0x0080; // method (1.5)
35 static constexpr uint32_t kAccNative = 0x0100; // method
36 static constexpr uint32_t kAccInterface = 0x0200; // class, ic
37 static constexpr uint32_t kAccAbstract = 0x0400; // class, method, ic
38 static constexpr uint32_t kAccStrict = 0x0800; // method
39 static constexpr uint32_t kAccSynthetic = 0x1000; // class, field, method, ic
40 static constexpr uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
41 static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
43 static constexpr uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
45 static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init>
46 static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only)
47 static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only)
49 static constexpr uint32_t kAccSkipAccessChecks = 0x00080000; // method (dex only)
51 static constexpr uint32_t kAccVerificationAttempted = 0x00080000; // class (runtime)
52 static constexpr uint32_t kAccFastNative = 0x00080000; // method (dex only)
57 static constexpr uint32_t kAccCopied = 0x00100000; // method (runtime)
58 static constexpr uint32_t kAccMiranda = 0x00200000; // method (dex only)
59 static constexpr uint32_t kAccDefault = 0x00400000; // method (runtime)
63 static constexpr uint32_t kAccDefaultConflict = 0x00800000; // method (runtime)
66 static constexpr uint32_t kAccCompileDontBother = 0x01000000; // method (runtime)
69 static constexpr uint32_t kAccMustCountLocks = 0x02000000; // method (runtime)
73 static constexpr uint32_t kAccRecursivelyInitialized = 0x20000000;
75 static constexpr uint32_t kAccHasDefaultMethod = 0x40000000;
77 static constexpr uint32_t kAccClassIsFinalizable = 0x80000000;
80 static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected |
84 static constexpr uint32_t kAccValidMethodFlags = kAccPublic | kAccPrivate | kAccProtected |
92 static constexpr uint32_t kAccValidClassFlags = kAccPublic | kAccFinal | kAccSuper |
99 static constexpr uint32_t kAccValidInterfaceFlags = kAccPublic | kAccInterface |