Home
last modified time | relevance | path

Searched refs:fqName (Results 1 – 4 of 4) sorted by relevance

/external/jdiff/src/jdiff/
DMergeChanges.java101 String fqName = pkgDiff.name_ + "." + classDiff.name_; in mergeRemoveAddCtor() local
102 …String link1 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\… in mergeRemoveAddCtor()
103 …String link2 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "#" + fqName + ".ctor_c… in mergeRemoveAddCtor()
161 String fqName = pkgDiff.name_ + "." + classDiff.name_; in mergeSingleMethods() local
162 …String link1 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\… in mergeSingleMethods()
163 …String link2 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "#" + fqName + "." + ad… in mergeSingleMethods()
238 String fqName = pkgDiff.name_ + "." + classDiff.name_; in mergeMultipleMethods() local
239 …String link1 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\… in mergeMultipleMethods()
240 …String link2 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "#" + fqName + "." + ad… in mergeMultipleMethods()
318 String fqName = pkgDiff.name_ + "." + classDiff.name_; in mergeRemoveAddField() local
[all …]
DHTMLReportGenerator.java1196 String fqName = pkgName + "." + className; in writeClassTableEntry() local
1212 String classRef = fqName; in writeClassTableEntry()
1235 reportFile.print(" <nobr><A HREF=\"" + fqName + reportFileExt + "\">"); in writeClassTableEntry()
1244 emitComment(fqName, possibleComment, linkType); in writeClassTableEntry()
1257 String fqName = pkgName + "." + className; in writeCtorTableEntry() local
1262 String commentID = fqName + ".ctor_" + lt + "(" + type + ")"; in writeCtorTableEntry()
1282 String memberRef = fqName.replace('.', '/'); in writeCtorTableEntry()
1318 String fqName = pkgName + "." + className; in writeCtorChangedTableEntry() local
1322 String commentID = fqName + ".ctor_changed(" + newSignature + ")"; in writeCtorChangedTableEntry()
1326 String memberRef = fqName.replace('.', '/'); in writeCtorChangedTableEntry()
[all …]
DAPIComparator.java279 String fqName = pkgDiff.name_ + "." + classDiff.name_; in compareClasses() local
280 …String link = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\"… in compareClasses()
392 String fqName = pkgDiff.name_ + "." + classDiff.name_; in compareAllCtors() local
393 …String link1 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\… in compareAllCtors()
394 …String link2 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "#" + fqName + ".ctor_c… in compareAllCtors()
639 String fqName = pkgDiff.name_ + "." + classDiff.name_; in compareMethods() local
640 …String link1 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\… in compareMethods()
641 …String link2 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "#" + fqName + "." + ne… in compareMethods()
753 String fqName = pkgDiff.name_ + "." + classDiff.name_; in compareAllFields() local
754 …String link1 = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\… in compareAllFields()
[all …]
DXMLToAPI.java240 String fqName = api_.currPkg_.name_ + "." + name; in addClass() local
241 ClassAPI caOld = (ClassAPI)api_.classes_.put(fqName, api_.currClass_); in addClass()
243 …System.out.println("Warning: duplicate class : " + fqName + " found. Using the first instance only… in addClass()