HomeSort by relevance Sort by last modified time
    Searched refs:GROUPS (Results 1 - 11 of 11) sorted by null

  /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;
59 "SELECT COUNT(*) FROM " + Tables.DATA + " LEFT OUTER JOIN " + Tables .GROUPS
64 + " AND " + Groups.FAVORITES + "!=0";
231 Cursor c = db.query(Tables.GROUPS, Projections.ID,
241 groupValues.put(Groups.SOURCE_ID, sourceId);
242 long groupId = db.insert(Tables.GROUPS, null, groupValues);
ContactsDatabaseHelper.java 74 import android.provider.ContactsContract.Groups;
164 public static final String GROUPS = "groups";
186 GROUPS,
227 + "LEFT OUTER JOIN groups ON (groups._id = data." + GroupMembership.GROUP_ROW_ID
275 + "LEFT OUTER JOIN groups "
277 + " AND groups._id = data." + GroupMembership.GROUP_ROW_ID + ") ";
311 * Join string intended to be used with the GROUPS table/view. The main table must be named
312 * as "groups"
    [all...]
LegacyApiSupport.java 48 import android.provider.ContactsContract.Groups;
95 private static final int GROUPS = 18;
190 public static final String GROUPS = "view_v1_groups";
270 matcher.addURI(authority, "groups", GROUPS);
271 matcher.addURI(authority, "groups/#", GROUPS_ID);
272 matcher.addURI(authority, "groups/name/*/members", GROUP_NAME_MEMBERS);
273 // matcher.addURI(authority, "groups/name/*/members/filter/*",
275 matcher.addURI(authority, "groups/system_id/*/members", GROUP_SYSTEM_ID_MEMBERS);
276 // matcher.addURI(authority, "groups/system_id/*/members/filter/*"
    [all...]
ContactsProvider2.java 93 import android.provider.ContactsContract.Groups;
390 public static final int GROUPS = 10000;
478 + " AND " + Groups.FAVORITES + " != 0";
483 + " AND " + Groups.AUTO_ADD + " != 0";
486 = new String[] {Tables.GROUPS + "." + Groups._ID};
541 /** Sql where statement for filtering on groups. */
551 + "(SELECT " + Tables.GROUPS + "." + Groups._ID
552 + " FROM " + Tables.GROUPS
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java 96 private static final String GROUPS = "group";
485 NodeList list = doc.getElementsByTagName(GROUPS);
550 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 32 import android.provider.ContactsContract.Groups;
394 new TableColumn(Groups._ID, INTEGER, false, null),
397 new TableColumn(Groups.SOURCE_ID, TEXT, false, null),
398 new TableColumn(Groups.VERSION, INTEGER, true, "1"),
399 new TableColumn(Groups.DIRTY, INTEGER, true, "0"),
400 new TableColumn(Groups.TITLE, TEXT, false, null),
401 new TableColumn(Groups.TITLE_RES, INTEGER, false, null),
402 new TableColumn(Groups.NOTES, TEXT, false, null),
403 new TableColumn(Groups.SYSTEM_ID, TEXT, false, null),
404 new TableColumn(Groups.DELETED, INTEGER, true, "0")
    [all...]
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 

Completed in 491 milliseconds