Lines Matching full:method
25 static constexpr uint32_t ACC_PUBLIC = 0x0001; // field, method, class
26 static constexpr uint32_t ACC_PRIVATE = 0x0002; // field, method
27 static constexpr uint32_t ACC_PROTECTED = 0x0004; // field, method
28 static constexpr uint32_t ACC_STATIC = 0x0008; // field, method
29 static constexpr uint32_t ACC_FINAL = 0x0010; // field, method, class
31 static constexpr uint32_t ACC_SYNCHRONIZED = 0x0020; // method
32 static constexpr uint32_t ACC_BRIDGE = 0x0040; // method
35 static constexpr uint32_t ACC_VARARGS = 0x0080; // method
36 static constexpr uint32_t ACC_NATIVE = 0x0100; // method
38 static constexpr uint32_t ACC_ABSTRACT = 0x0400; // method, class
39 static constexpr uint32_t ACC_STRICT = 0x0800; // method
40 static constexpr uint32_t ACC_SYNTHETIC = 0x1000; // field, method, class
52 static constexpr uint32_t ACC_CONSTRUCTOR = 0x00010000; // method (runtime)
53 static constexpr uint32_t ACC_DEFAULT_INTERFACE_METHOD = 0x00020000; // method (runtime)
54 static constexpr uint32_t ACC_SINGLE_IMPL = 0x00040000; // method (runtime)
55 static constexpr uint32_t ACC_INTRINSIC = 0x00200000; // method (runtime)
63 static constexpr uint32_t ACC_FAST_NATIVE = 0x00080000; // method (java runtime)
64 static constexpr uint32_t ACC_CRITICAL_NATIVE = 0x00100000; // method (java runtime)
66 static constexpr uint32_t ACC_VERIFICATION_STATUS = 0x00400000; // method (runtime)
70 static constexpr uint32_t ACC_COMPILATION_STATUS = 0x02000000; // method (runtime)