/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/ |
D | ReportOutputFolderTest.java | 71 assertEquals("test.html", base.getLink(base, "test.html")); in testRelativeLinkInSameFolder() 77 assertEquals("../../test.html", root.getLink(base, "test.html")); in testRelativeLinkInParentFolder() 83 assertEquals("f1/f2/test.html", folder.getLink(root, "test.html")); in testRelativeLinkInSubFolder() 91 folder.getLink(base, "test.html")); in testRelativeLinkInSibling1() 98 assertEquals("../f2/test.html", folder.getLink(base, "test.html")); in testRelativeLinkInSibling2() 106 folder.getLink(base, "test.html"); in testInvalidRelativeLink()
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
D | MethodItemTest.java | 59 assertNull(item.getLink(null)); in testGetLinkNone() 66 assertEquals("../Source.java", item.getLink(null)); in testGetLink() 74 assertEquals("../Source.java#L15", item.getLink(null)); in testGetLinkWithLine() 87 public String getLink(ReportOutputFolder base) { in getLink() method in MethodItemTest.SourceLink
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/ |
D | ReportPage.java | 93 context.getResources().getLink(folder, Resources.STYLESHEET), in head() 96 context.getResources().getLink(folder, "report.gif"), in head() 178 public final String getLink(final ReportOutputFolder base) { in getLink() method in ReportPage 179 return folder.getLink(base, getFileName()); in getLink()
|
D | MethodItem.java | 49 public String getLink(final ReportOutputFolder base) { in getLink() method in MethodItem 53 final String link = sourcePage.getLink(base); in getLink()
|
D | SourceFilePage.java | 71 head.link("stylesheet", context.getResources().getLink(folder, in head() 73 head.script(context.getResources().getLink(folder, in head()
|
D | SourceFileItem.java | 41 public String getLink(final ReportOutputFolder base) { in getLink() method in SourceFileItem
|
D | TablePage.java | 69 context.getResources().getLink(folder, Resources.SORT_SCRIPT)); in head()
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/ |
D | ReportOutputFolder.java | 106 public String getLink(final ReportOutputFolder base, final String name) { in getLink() method in ReportOutputFolder 113 return "../" + this.getLink(base.parent, name); in getLink()
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/ |
D | Resources.java | 67 public String getLink(final ReportOutputFolder base, final String name) { in getLink() method in Resources 68 return folder.getLink(base, name); in getLink()
|
/external/doclava/src/com/google/doclava/ |
D | SampleCode.java | 629 if (list.get(i).getLink().indexOf(".html") > -1) { in renderGroupNodesTOCYaml() 630 buf.append(indent + " path: " + list.get(i).getLink() + "\n"); in renderGroupNodesTOCYaml() 643 String xmlToHtmlPath = list.get(i).getLink().replace(".xml", ".html"); in renderGroupNodesTOCYaml() 671 buf.append("<a href=\"" + list.get(i).getLink() + "\" title=\"" in renderGroupNodesTOC() 699 buf.append("<a href=\"" + list.get(i).getLink() + "\" title=\"" in renderProjectNodesTOC() 724 buf.append("<a href=\"" + list.get(i).getLink() + "\" title=\"" in renderChildrenToc() 755 public String getLink() { in getLink() method in SampleCode.Node
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLSteensAliasAnalysis.cpp | 148 auto &Link = Sets.getLink(SetIndex); in FunctionInfo() 309 auto AttrsA = Sets.getLink(SetA.Index).Attrs; in query() 310 auto AttrsB = Sets.getLink(SetB.Index).Attrs; in query()
|
D | StratifiedSets.h | 101 const StratifiedLink &getLink(StratifiedIndex Index) const { in getLink() function 258 const StratifiedLink &getLink() const { return Link; } in getLink() function 276 StratLinks.push_back(Link.getLink()); in finalizeSets()
|
/external/icu/icu4c/source/common/ |
D | ushape.cpp | 441 getLink(UChar ch) { in getLink() function 1242 currLink = getLink(dest[i]); in shapeUnicode() 1249 if ((currLink & 0xFF00) > 0 || (getLink(dest[i]) & IRRELEVANT) != 0) { in shapeUnicode() 1256 nextLink = getLink(dest[Nw]); in shapeUnicode() 1274 … currLink = getLink(wLamalef); /* LAMALEF_SPACE_SUB is added here and is replaced by spaces */ in shapeUnicode() 1348 currLink = getLink(dest[i]); in shapeUnicode() 1521 currLink = getLink(source[i]); in u_shapeArabic() 1525 currLink = getLink(tempsource[j]); in u_shapeArabic()
|
/external/cronet/third_party/icu/source/common/ |
D | ushape.cpp | 441 getLink(UChar ch) { in getLink() function 1242 currLink = getLink(dest[i]); in shapeUnicode() 1249 if ((currLink & 0xFF00) > 0 || (getLink(dest[i]) & IRRELEVANT) != 0) { in shapeUnicode() 1256 nextLink = getLink(dest[Nw]); in shapeUnicode() 1274 … currLink = getLink(wLamalef); /* LAMALEF_SPACE_SUB is added here and is replaced by spaces */ in shapeUnicode() 1348 currLink = getLink(dest[i]); in shapeUnicode() 1521 currLink = getLink(source[i]); in u_shapeArabic() 1525 currLink = getLink(tempsource[j]); in u_shapeArabic()
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/ |
D | ILinkable.java | 30 String getLink(ReportOutputFolder base); in getLink() method
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | OatFile.java | 411 public abstract int getLink(); 420 @Override public int getLink() { return readSmallUint(offset + 24); } 429 @Override public int getLink() { return readSmallUint(offset + 40); } 441 this.stringTable = new StringTable(getSections().get(header.getLink()));
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/ |
D | LinkableStub.java | 32 public String getLink(ReportOutputFolder base) { in getLink() method in LinkableStub
|
/external/llvm/lib/Analysis/ |
D | CFLSteensAliasAnalysis.cpp | 160 auto &Link = Sets.getLink(SetIndex); in FunctionInfo() 320 auto AttrsA = Sets.getLink(SetA.Index).Attrs; in query() 321 auto AttrsB = Sets.getLink(SetB.Index).Attrs; in query()
|
D | StratifiedSets.h | 111 const StratifiedLink &getLink(StratifiedIndex Index) const { in getLink() function 268 const StratifiedLink &getLink() const { return Link; } in getLink() function 286 StratLinks.push_back(Link.getLink()); in finalizeSets()
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/ |
D | OatFile.java | 422 public abstract int getLink(); 431 @Override public int getLink() { return readSmallUint(offset + 24); } 440 @Override public int getLink() { return readSmallUint(offset + 40); } 452 this.stringTable = new StringTable(getSections().get(header.getLink()));
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/index/ |
D | ElementIndex.java | 56 allClasses.put(Long.valueOf(classid), link.getLink(baseFolder)); in addClass()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ArabicShaping.java | 971 private static int getLink(char ch) { in getLink() method in ArabicShaping 1685 int currLink = getLink(dest[i]); in shapeUnicode() 1704 nextLink = getLink(dest[nw]); in shapeUnicode() 1724 currLink = getLink(wLamalef); // requires '\u0000', unfortunately in shapeUnicode() 1800 currLink = getLink(dest[i]); in shapeUnicode()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | ArabicShaping.java | 925 private static int getLink(char ch) { in getLink() method in ArabicShaping 1643 int currLink = getLink(dest[i]); in shapeUnicode() 1662 nextLink = getLink(dest[nw]); in shapeUnicode() 1682 currLink = getLink(wLamalef); // requires '\u0000', unfortunately in shapeUnicode() 1758 currLink = getLink(dest[i]); in shapeUnicode()
|
/external/setupdesign/main/src/com/google/android/setupdesign/span/ |
D | LinkSpan.java | 140 public String getLink() { in getLink() method in LinkSpan
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/ |
D | ResourcesTest.java | 47 resources.getLink(base, "test.png")); in testGetLink()
|