Lines Matching refs:constexpr
54 constexpr bool IsInstructionDirectConst(Instruction::Code opcode) {
58 constexpr bool IsInstructionConstWide(Instruction::Code opcode) {
62 constexpr bool IsInstructionReturn(Instruction::Code opcode) {
66 constexpr bool IsInstructionInvoke(Instruction::Code opcode) {
71 constexpr bool IsInstructionQuickInvoke(Instruction::Code opcode) {
76 constexpr bool IsInstructionInvokeStatic(Instruction::Code opcode) {
80 constexpr bool IsInstructionGoto(Instruction::Code opcode) {
84 constexpr bool IsInstructionIfCc(Instruction::Code opcode) {
88 constexpr bool IsInstructionIfCcZ(Instruction::Code opcode) {
92 constexpr bool IsInstructionIGet(Instruction::Code code) {
96 constexpr bool IsInstructionIPut(Instruction::Code code) {
100 constexpr bool IsInstructionSGet(Instruction::Code code) {
104 constexpr bool IsInstructionSPut(Instruction::Code code) {
108 constexpr bool IsInstructionAGet(Instruction::Code code) {
112 constexpr bool IsInstructionAPut(Instruction::Code code) {
116 constexpr bool IsInstructionIGetOrIPut(Instruction::Code code) {
120 constexpr bool IsInstructionIGetQuickOrIPutQuick(Instruction::Code code) {
125 constexpr bool IsInstructionSGetOrSPut(Instruction::Code code) {
129 constexpr bool IsInstructionAGetOrAPut(Instruction::Code code) {
133 constexpr bool IsInstructionBinOp2Addr(Instruction::Code code) {
139 constexpr bool IsInvokeInstructionRange(Instruction::Code opcode) {
140 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
146 constexpr DexInvokeType InvokeInstructionType(Instruction::Code opcode) {
147 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
155 constexpr DexMemAccessType IGetMemAccessType(Instruction::Code code) {
156 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
162 constexpr DexMemAccessType IPutMemAccessType(Instruction::Code code) {
163 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
169 constexpr DexMemAccessType SGetMemAccessType(Instruction::Code code) {
170 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
176 constexpr DexMemAccessType SPutMemAccessType(Instruction::Code code) {
177 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
183 constexpr DexMemAccessType AGetMemAccessType(Instruction::Code code) {
184 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
190 constexpr DexMemAccessType APutMemAccessType(Instruction::Code code) {
191 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
197 constexpr DexMemAccessType IGetOrIPutMemAccessType(Instruction::Code code) {
198 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
227 constexpr DexMemAccessType SGetOrSPutMemAccessType(Instruction::Code code) {
228 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.
234 constexpr DexMemAccessType AGetOrAPutMemAccessType(Instruction::Code code) {
235 #if __cplusplus >= 201402 // C++14 allows the DCHECK() in constexpr functions.