OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:apiDiff
(Results
1 - 6
of
6
) sorted by null
/external/jdiff/src/jdiff/
HTMLStatistics.java
29
public void emitStatistics(String filename,
APIDiff
apiDiff
) {
36
if (
apiDiff
.oldAPIName_ != null)
37
oldAPIName =
apiDiff
.oldAPIName_;
39
if (
apiDiff
.newAPIName_ != null)
40
newAPIName =
apiDiff
.newAPIName_;
114
h_.writeText("<p>The overall difference between the two APIs is approximately <span style=\"color:222;font-weight:bold;\">" + (int)(
apiDiff
.pdiff) + "%</span>.");
125
emitPackagesByDiff(
apiDiff
);
130
emitClassesByDiff(
apiDiff
);
139
emitNumbersByElement(
apiDiff
);
[
all
...]
HTMLIndexes.java
30
APIDiff
apiDiff
) {
36
emitBottomLeftFile(packagesIndexName,
apiDiff
, 3, "Package");
37
emitBottomLeftFile(classesIndexName,
apiDiff
, 3, "Class");
38
emitBottomLeftFile(constructorsIndexName,
apiDiff
, 3, "Constructor");
39
emitBottomLeftFile(methodsIndexName,
apiDiff
, 3, "Method");
40
emitBottomLeftFile(fieldsIndexName,
apiDiff
, 3, "Field");
43
emitBottomLeftFile(allDiffsIndexName,
apiDiff
, 3, "All");
46
emitBottomLeftFile(packagesIndexName,
apiDiff
, indexType, "Package");
47
emitBottomLeftFile(classesIndexName,
apiDiff
, indexType, "Class")
[
all
...]
HTMLFiles.java
27
APIDiff
apiDiff
) {
35
if (
apiDiff
.oldAPIName_ != null)
36
oldAPIName =
apiDiff
.oldAPIName_;
38
if (
apiDiff
.newAPIName_ != null)
39
newAPIName =
apiDiff
.newAPIName_;
125
public void emitHelp(String fullReportFileName,
APIDiff
apiDiff
) {
143
h_.writeText(" <TD BGCOLOR=\"#EEEEFF\" CLASS=\"NavBarCell1\"> <A HREF=\"" + h_.newDocPrefix + "index.html\" target=\"_top\"><FONT CLASS=\"NavBarFont1\"><B><tt>" +
apiDiff
.newAPIName_ + "</tt></B></FONT></A> </TD>");
HTMLReportGenerator.java
67
apiDiff
= comp.
apiDiff
;
74
if (
apiDiff
.oldAPIName_ != null)
75
oldAPIName =
apiDiff
.oldAPIName_;
77
if (
apiDiff
.newAPIName_ != null)
78
newAPIName =
apiDiff
.newAPIName_;
92
apiDiff
.packagesRemoved.size() != 0,
93
apiDiff
.packagesAdded.size() != 0,
94
apiDiff
.packagesChanged.size() != 0);
128
writeReport(
apiDiff
);
[
all
...]
APIComparator.java
7
* The differences are stored in an
APIDiff
object.
18
public
APIDiff
apiDiff
;
29
apiDiff
= new
APIDiff
();
47
apiDiff
.oldAPIName_ = oldAPI.name_;
48
apiDiff
.newAPIName_ = newAPI.name_;
73
apiDiff
.packagesRemoved.add(oldPkg);
98
apiDiff
.packagesAdded.add(newPkg);
108
MergeChanges.mergeRemoveAdd(
apiDiff
);
[
all
...]
MergeChanges.java
36
public static void mergeRemoveAdd(
APIDiff
apiDiff
) {
38
Iterator iter =
apiDiff
.packagesChanged.iterator();
Completed in 33 milliseconds