Home | History | Annotate | Download | only in calendar

Lines Matching defs:accountType

1755                 String accountType = null;
1760 accountType = account.type;
1763 verifyColorExists(accountName, accountType, color_index, Colors.TYPE_EVENT);
2218 String accountType = null;
2221 accountType = account.type;
2223 int color = verifyColorExists(accountName, accountType, color_id,
2292 String accountType = values.getAsString(
2294 final Account account = new Account(accountName, accountType);
2301 String accountType = values.getAsString(Calendars.ACCOUNT_TYPE);
2302 int color = verifyColorExists(accountName, accountType, cal_color_id,
2315 String accountType = uri.getQueryParameter(Colors.ACCOUNT_TYPE);
2317 if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(accountType)) {
2332 values.put(Colors.ACCOUNT_TYPE, accountType);
2338 c = getColorByTypeIndex(accountName, accountType, colorType, colorIndex);
2749 private Cursor getColorByTypeIndex(String accountName, String accountType, long colorType,
2752 accountName, accountType, Long.toString(colorType), colorIndex
3680 String accountType = c.getString(COLORS_ACCOUNT_TYPE_INDEX);
3686 accountName, accountType, index
3695 new String[] {accountName, accountType, index}, null);
3879 String accountType = null;
3885 accountType = c.getString(ACCOUNT_TYPE_INDEX);
3892 verifyColorExists(accountName, accountType, color_id, Colors.TYPE_EVENT);
4110 String accountType = values.getAsString(Calendars.ACCOUNT_TYPE);
4111 if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(accountType)) {
4115 accountType = account.type;
4118 verifyColorExists(accountName, accountType, color_id, Colors.TYPE_CALENDAR);
4307 * @param accountType The type of account the color is for
4312 private int verifyColorExists(String accountName, String accountType, String colorIndex,
4314 if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(accountType)) {
4321 c = getColorByTypeIndex(accountName, accountType, colorType, colorIndex);
4351 final String accountType = QueryParameterUtils.getQueryParameter(uri,
4361 .append(DatabaseUtils.sqlEscapeString(accountType));
4492 String accountType = QueryParameterUtils.getQueryParameter(uri,
4494 if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(accountType)) {
4497 accountType = selectionArgs[1];
4500 if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(accountType)) {
4578 final String accountType = cursor.getString(1);
4579 account = new Account(accountName, accountType);