Lines Matching full:static
22 static constexpr uint32_t kAccPublic = 0x0001; // class, field, method, ic
23 static constexpr uint32_t kAccPrivate = 0x0002; // field, method, ic
24 static constexpr uint32_t kAccProtected = 0x0004; // field, method, ic
25 static constexpr uint32_t kAccStatic = 0x0008; // field, method, ic
26 static constexpr uint32_t kAccFinal = 0x0010; // class, field, method, ic
27 static constexpr uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
28 static constexpr uint32_t kAccSuper = 0x0020; // class (not used in dex)
29 static constexpr uint32_t kAccVolatile = 0x0040; // field
30 static constexpr uint32_t kAccBridge = 0x0040; // method (1.5)
31 static constexpr uint32_t kAccTransient = 0x0080; // field
32 static constexpr uint32_t kAccVarargs = 0x0080; // method (1.5)
33 static constexpr uint32_t kAccNative = 0x0100; // method
34 static constexpr uint32_t kAccInterface = 0x0200; // class, ic
35 static constexpr uint32_t kAccAbstract = 0x0400; // class, method, ic
36 static constexpr uint32_t kAccStrict = 0x0800; // method
37 static constexpr uint32_t kAccSynthetic = 0x1000; // class, field, method, ic
38 static constexpr uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
39 static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
41 static constexpr uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
43 static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init>
44 static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only)
45 static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only)
46 static constexpr uint32_t kAccPreverified = 0x00080000; // class (runtime),
48 static constexpr uint32_t kAccFastNative = 0x00080000; // method (dex only)
49 static constexpr uint32_t kAccPortableCompiled = 0x00100000; // method (dex only)
50 static constexpr uint32_t kAccMiranda = 0x00200000; // method (dex only)
56 static constexpr uint32_t kAccClassIsFinalizable = 0x80000000;
58 static constexpr uint32_t kAccClassIsReference = 0x08000000;
60 static constexpr uint32_t kAccClassIsWeakReference = 0x04000000;
62 static constexpr uint32_t kAccClassIsFinalizerReference = 0x02000000;
64 static constexpr uint32_t kAccClassIsPhantomReference = 0x01000000;
66 static constexpr uint32_t kAccReferenceFlagsMask = (kAccClassIsReference
72 static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected |
76 static constexpr uint32_t kAccValidMethodFlags = kAccPublic | kAccPrivate | kAccProtected |
84 static constexpr uint32_t kAccValidClassFlags = kAccPublic | kAccFinal | kAccSuper |
91 static constexpr uint32_t kAccValidInterfaceFlags = kAccPublic | kAccInterface |