/external/testng/src/main/java/org/testng/ |
CommandLineArgs.java | 22 public static final String GROUPS = "-groups"; 23 @Parameter(names = GROUPS, description = "Comma-separated list of group names to be run") 24 public String groups; field in class:CommandLineArgs
|
TestNGAntTask.java | 55 * <li>groups (attribute)</li> 402 public void setGroups(String groups) { 403 m_includedGroups= groups; 406 public void setExcludedGroups(String groups) { 407 m_excludedGroups= groups; 550 addStringIfNotBlank(argv, CommandLineArgs.GROUPS, m_includedGroups); 879 throw new BuildException("No class filesets or xml file sets specified while using groups"); [all...] |
TestNG.java | 80 * You can also define which groups to include or exclude, assign parameters, etc... 90 * <LI>-groups</LI> 499 * If used together with threadCount, parallel, groups, excludedGroups than this one must be set first. 654 * Define which groups will be excluded from this run. 656 * @param groups A list of group names separated by a comma. 658 public void setExcludedGroups(String groups) { 659 m_excludedGroups = Utils.split(groups, ","); 664 * Define which groups will be included from this run. 666 * @param groups A list of group names separated by a comma. 668 public void setGroups(String groups) { 1748 String groups = args.groups; local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForGroupMembership.java | 24 import android.provider.ContactsContract.Groups; 58 "SELECT COUNT(*) FROM " + Tables.DATA + " LEFT OUTER JOIN " + Tables .GROUPS 63 + " AND " + Groups.FAVORITES + "!=0"; 230 Cursor c = db.query(Tables.GROUPS, Projections.ID, 240 groupValues.put(Groups.SOURCE_ID, sourceId); 241 long groupId = db.insert(Tables.GROUPS, null, groupValues);
|
ContactsDatabaseHelper.java | 67 import android.provider.ContactsContract.Groups; 144 public static final String GROUPS = "groups"; 166 GROUPS, 207 + "LEFT OUTER JOIN groups ON (groups._id = data." + GroupMembership.GROUP_ROW_ID 255 + "LEFT OUTER JOIN groups " 257 + " AND groups._id = data." + GroupMembership.GROUP_ROW_ID + ") "; 291 * Join string intended to be used with the GROUPS table/view. The main table must be named 292 * as "groups" [all...] |
LegacyApiSupport.java | 48 import android.provider.ContactsContract.Groups; 95 private static final int GROUPS = 18; 212 public static final String GROUPS = "view_v1_groups"; 292 matcher.addURI(authority, "groups", GROUPS); 293 matcher.addURI(authority, "groups/#", GROUPS_ID); 294 matcher.addURI(authority, "groups/name/*/members", GROUP_NAME_MEMBERS); 295 // matcher.addURI(authority, "groups/name/*/members/filter/*", 297 matcher.addURI(authority, "groups/system_id/*/members", GROUP_SYSTEM_ID_MEMBERS); 298 // matcher.addURI(authority, "groups/system_id/*/members/filter/*" [all...] |
ContactsProvider2.java | 96 import android.provider.ContactsContract.Groups; 401 public static final int GROUPS = 10000; 489 + " AND " + Groups.FAVORITES + " != 0"; 494 + " AND " + Groups.AUTO_ADD + " != 0"; 497 = new String[] {Tables.GROUPS + "." + Groups._ID}; 552 /** Sql where statement for filtering on groups. */ 562 + "(SELECT " + Tables.GROUPS + "." + Groups._ID 563 + " FROM " + Tables.GROUPS [all...] |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
XLIFF2ICUConverter.java | 94 private static final String GROUPS = "group"; 483 NodeList list = doc.getElementsByTagName(GROUPS); 548 NodeList groupList = doc.getElementsByTagName(GROUPS); [all...] |
/external/testng/src/main/java/org/testng/reporters/ |
SuiteHTMLReporter.java | 38 public static final String GROUPS = "groups.html"; 218 .append("<th>Groups</th>\n") 297 String[] groups = m.getGroups(); local 298 if (groups != null && groups.length > 0) { 300 for (String g : groups) { 325 private String dumpGroups(String[] groups) { 328 if (null != groups && groups.length > 0) 508 Map<String, Collection<ITestNGMethod>> groups = suite.getMethodsByGroups(); local [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsDatabaseHelperUpgradeTest.java | 28 import android.provider.ContactsContract.Groups; 325 new TableColumn(Groups._ID, INTEGER, false, null), 328 new TableColumn(Groups.SOURCE_ID, TEXT, false, null), 329 new TableColumn(Groups.VERSION, INTEGER, true, "1"), 330 new TableColumn(Groups.DIRTY, INTEGER, true, "0"), 331 new TableColumn(Groups.TITLE, TEXT, false, null), 332 new TableColumn(Groups.TITLE_RES, INTEGER, false, null), 333 new TableColumn(Groups.NOTES, TEXT, false, null), 334 new TableColumn(Groups.SYSTEM_ID, TEXT, false, null), 335 new TableColumn(Groups.DELETED, INTEGER, true, "0") [all...] |
/prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/ |
testng-6.9.10.jar | |