/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | Label.java | 83 static final int JSR = 128; field in Label 382 if (opcode <= Opcodes.JSR) { in resolve() 476 void visitSubroutine(final Label JSR, final long id, final int nbSubroutines) in visitSubroutine() argument 478 if (JSR != null) { in visitSubroutine() 485 if (!inSameSubroutine(JSR)) { in visitSubroutine() 488 e.successor = JSR.successors.successor; in visitSubroutine() 507 if ((status & Label.JSR) == 0 || e != successors.next) { in visitSubroutine() 508 e.successor.visitSubroutine(JSR, id, nbSubroutines); in visitSubroutine()
|
D | MethodWriter.java | 871 if (opcode == Opcodes.JSR) { in visitJumpInsn() 876 currentBlock.status |= Label.JSR; in visitJumpInsn() 908 } else if (opcode == Opcodes.JSR) { in visitJumpInsn() 1324 if ((l.status & Label.JSR) == 0) { in visitMaxs() 1352 if ((l.status & Label.JSR) != 0) { in visitMaxs() 1368 if ((l.status & Label.JSR) != 0) { in visitMaxs() 1407 if ((l.status & Label.JSR) != 0) { in visitMaxs() 2136 || opcode == Opcodes.JSR) in resizeInstructions() 2282 } else if (opcode == Opcodes.JSR) { in resizeInstructions()
|
D | Opcodes.java | 307 int JSR = 168; // - field
|
D | Frame.java | 1144 case Opcodes.JSR: in execute()
|
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
D | ScannerTest.java | 124 /* 25 */ addJump(code, Opcode.JSR, 31); in generate() 141 /* 71 */ addJump(code, Opcode.JSR, 77); in generate() 150 /* 90 */ addJump(code, Opcode.JSR, 96); in generate() 158 /* 106 */ addJump(code, Opcode.JSR, 96); in generate() 160 /* 111 */ addJump(code, Opcode.JSR, 77); in generate() 166 /* 125 */ addJump(code, Opcode.JSR, 31); in generate()
|
D | AnalyzerTest.java | 257 /* 2 */ addJump(code, Opcode.JSR, 7); in generateJsrMerge() 279 /* 0 */ addJump(code, Opcode.JSR, 5); in generateJsrMerge2()
|
/external/owasp/sanitizer/tools/findbugs/licenses/ |
D | LICENSE-jsr305.txt | 1 The JSR-305 reference implementation (lib/jsr305.jar) is 6 See the JSR-305 home page for more information:
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Util.java | 33 …return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == J… in isJumpInstruction() 41 return opcode == JSR || opcode == JSR_W; in isJsr()
|
D | SubroutineScanner.java | 104 if (opcode == JSR || opcode == JSR_W) { in scanOp()
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAnalyzer.java | 93 if (op == JSR || op == JSR_W) in visitBytecode() 118 case JSR : in processBranch() 120 if (opcode == JSR) in processBranch()
|
D | Opcode.java | 175 int JSR = 168; field
|
D | InstructionPrinter.java | 107 case JSR: in instructionString()
|
/external/owasp/sanitizer/tools/findbugs/ |
D | README.txt | 18 The JSR-305 reference implementation license is in LICENSE-jsr305.txt
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
D | Analyzer.java | 195 if (insnOpcode != GOTO && insnOpcode != JSR) { in analyze() 200 if (insnOpcode == JSR) { in analyze() 315 if (node.getOpcode() == JSR) { in findSubroutine()
|
D | BasicInterpreter.java | 119 case JSR: in newOperation()
|
D | Frame.java | 522 case Opcodes.JSR: in execute()
|
/external/owasp/sanitizer/distrib/lib/ |
D | jsr305-COPYING | 1 Per http://code.google.com/p/jsr-305/, JSR 305 uses the new BSD license.
|
/external/owasp/sanitizer/lib/jsr305/ |
D | COPYING | 1 Per http://code.google.com/p/jsr-305/, JSR 305 uses the new BSD license.
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/ |
D | LabelFlowAnalyzer.java | 84 if (opcode == Opcodes.JSR) { in visitJumpInsn()
|
/external/dagger2/ |
D | CHANGELOG.md | 39 * JSR-330 injection automation using `@Inject` signals, `@Qualifiers`
|
/external/owasp/sanitizer/tools/findbugs/doc/ |
D | AddingDetectors.txt | 115 <p> This detector looks for JSR-166 locks that are not released on all paths 130 <p> A JSR-166 lock acquired in this method is not released on all paths
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ |
D | LabelFlowAnalyzerTest.java | 355 analyzer.visitJumpInsn(JSR, label); in testVisitJumpInsnNegative()
|
/external/testng/ |
D | ANNOUNCEMENT.txt | 68 * JSR 175 Annotations (JDK 1.4 is also supported with JavaDoc annotations).
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | BasicBlock.java | 232 case Opcode.JSR :
|
D | Tracer.java | 567 case Opcode.JSR : in doOpcode148_201()
|