Home
last modified time | relevance | path

Searched refs:branchName (Results 1 – 2 of 2) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DBranchEntity.java51 public BranchEntity(String branchName) { in BranchEntity() argument
52 this.name = branchName; in BranchEntity()
60 public static List<String> getByBranch(String branchName) { in getByBranch() argument
61 if (branchName.equals("*")) { in getByBranch()
71 com.googlecode.objectify.Key.create(BranchEntity.class, branchName); in getByBranch()
73 int lastPosition = branchName.length() - 1; in getByBranch()
74 int lastCharValue = branchName.charAt(lastPosition); in getByBranch()
77 String nextBranchName = branchName.substring(0, lastPosition) + nextChar; in getByBranch()
108 String branchName = e.getKey().getName(); in fromEntity() local
109 return new BranchEntity(branchName); in fromEntity()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java191 private String branchName; field in TestDataForDevServlet.TestReportDataObject.Test.TestRun.Branch
499 new BranchEntity(branch.branchName); in doPost()