Home
last modified time | relevance | path

Searched defs:AbstractInsnNode (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DAsmUtil.kt11 val AbstractInsnNode.line: Int? constant
20 fun AbstractInsnNode.atIndex(insnList: InsnList?): String { in atIndex() method
31 val AbstractInsnNode.nextUseful: AbstractInsnNode? constant
38 val AbstractInsnNode?.thisOrPrevUseful: AbstractInsnNode? constant
45 private fun AbstractInsnNode?.isUseless() = this is LabelNode || this is LineNumberNode || this is … in AbstractInsnNode() method
57 fun AbstractInsnNode.isAload(index: Int) = in AbstractInsnNode() method
60 fun AbstractInsnNode.isGetField(owner: String) = in AbstractInsnNode() method
63 fun AbstractInsnNode.isGetStatic(owner: String) = in AbstractInsnNode() method
66 fun AbstractInsnNode.isAreturn() = in AbstractInsnNode() method
69 fun AbstractInsnNode.isReturn() = in AbstractInsnNode() method
[all …]
DFlowAnalyzer.kt79 private fun AbstractInsnNode?.isArrayStore(): Boolean = when(this?.opcode) { in AbstractInsnNode() method
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodCoverageCalculator.java54 final Map<AbstractInsnNode, Instruction> instructions) { in MethodCoverageCalculator()