Home
last modified time | relevance | path

Searched refs:getLongName (Results 1 – 11 of 11) sorted by relevance

/external/javassist/src/test/javassist/
DJvstTest3.java651 assertEquals("test3.Name.<clinit>()", cc.getClassInitializer().getLongName()); in testLongName()
652 assertEquals("test3.Name()", cc.getConstructor("()V").getLongName()); in testLongName()
653 assertEquals("test3.Name(int)", cc.getConstructor("(I)V").getLongName()); in testLongName()
654 assertEquals("test3.Name(test3.Name)", cc.getConstructor("(Ltest3/Name;)V").getLongName()); in testLongName()
656 cc.getConstructor("(Ltest3/Name;Ljava/lang/String;)V").getLongName()); in testLongName()
658 assertEquals("test3.Name.foo()", cc.getDeclaredMethod("foo").getLongName()); in testLongName()
659 assertEquals("test3.Name.foo2(int)", cc.getDeclaredMethod("foo2").getLongName()); in testLongName()
660 … assertEquals("test3.Name.foo3(java.lang.String)", cc.getDeclaredMethod("foo3").getLongName()); in testLongName()
661 … assertEquals("test3.Name.foo4(java.lang.String[])", cc.getDeclaredMethod("foo4").getLongName()); in testLongName()
662 … assertEquals("test3.Name.foo5(int,java.lang.String)", cc.getDeclaredMethod("foo5").getLongName()); in testLongName()
/external/mockito/src/test/java/org/mockitousage/stubbing/
DDeepStubbingTest.java62 public String getLongName() { in getLongName() method in DeepStubbingTest.Street
277 person.getAddress("the docks").getStreet().getLongName(); in inOrder_only_work_on_the_very_last_mock_but_it_works()
287 inOrder.verify(person.getAddress("the docks").getStreet()).getLongName(); in inOrder_only_work_on_the_very_last_mock_but_it_works()
/external/llvm-project/llvm/tools/llvm-pdbutil/
DStreamUtil.h44 std::string getLongName() const;
DStreamUtil.cpp24 std::string StreamInfo::getLongName() const { in getLongName() function in StreamInfo
DExplainOutputStyle.cpp252 StreamOff, Layout.Length, Stream, S.getLongName(), in explainPdbStreamOffset()
DDumpOutputStyle.cpp398 StreamPurposes[StreamIdx].getLongName()); in dumpStreamSummary()
/external/javassist/src/main/javassist/
DCodeConverter.java369 + substMethod.getLongName()); in redirectMethodCall()
378 + substMethod.getLongName()); in redirectMethodCall()
DCtMethod.java207 public String getLongName() { in getLongName() method in CtMethod
DCtConstructor.java134 public String getLongName() { in getLongName() method in CtConstructor
DCtClass.java795 throw new NotFoundException(b.getLongName() + " is enclosing " + getName()); in getEnclosingMethod()
DCtBehavior.java116 public abstract String getLongName(); in getLongName() method in CtBehavior