HomeSort by relevance Sort by last modified time
    Searched defs:groupName (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
CSVGroupHandler.java 29 private final String groupName;
35 private CSVGroupHandler(final ClassRowWriter writer, final String groupName) {
37 this.groupName = groupName;
56 return groupName == null ? name : (groupName + "/" + name);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
NameTest.java 63 String groupName;
75 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
80 + "; groupName=" + groupName);
83 NameDebuggee.CHILD_GROUP, groupName);
ParentTest.java 64 String groupName;
87 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
90 + "; groupName=" + groupName);
93 NameDebuggee.PARENT_GROUP, groupName);
ChildrenTest.java 68 String groupName;
124 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
126 logWriter.println("\n==> group: groupID = " + groupID + "; groupName = " + groupName);
128 assertString("Invalid group name,", NameDebuggee.CHILD_GROUP, groupName);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroupTest.java 68 String groupName, threadName;
85 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
91 + "; groupName=" + groupName);
94 if (!groupName.equals(ThreadGroupDebuggee.TESTED_GROUP)) {