/frameworks/base/core/java/android/provider/ |
SyncStateContract.java | 34 public interface Columns extends BaseColumns { 54 public static class Constants implements Columns { 59 private static final String[] DATA_PROJECTION = new String[]{Columns.DATA, Columns._ID}; 61 Columns.ACCOUNT_NAME + "=? AND " + Columns.ACCOUNT_TYPE + "=?"; 85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); 106 values.put(Columns.DATA, data); 107 values.put(Columns.ACCOUNT_NAME, account.name); 108 values.put(Columns.ACCOUNT_TYPE, account.type) [all...] |
BrowserContract.java | 35 * for the supported URIS and columns. 69 * Generic columns for use by sync adapters. The specific functions of 70 * these columns are private to the sync adapter. Other clients of the API 71 * should not attempt to either read or write these columns. 108 * Columns that appear when each row of a table belongs to a specific 506 public static final class SyncState implements SyncStateContract.Columns {
|
CalendarContract.java | 45 * definitions for the supported URIs and data columns. 196 * Generic columns for use by sync adapters. The specific functions of these 197 * columns are private to the sync adapter. Other clients of the API should 198 * not attempt to either read or write this column. These columns are 267 * Columns for Sync information used by Calendars and Events tables. These 333 * Columns specific to the Calendars Uri that other Uris can query. 594 * columns but are restricted to a single account at a time. Calendars are 642 * <h3>Calendar Columns</h3> The following Calendar columns are writable by 650 * The following Calendars columns are writable only by a sync adapte [all...] |
ContactsContract.java | 57 * definitions for the supported URIs and columns. These APIs supersede 400 * {@link #ACCOUNT_TYPE} columns (nulls are allowed). Since directory IDs are assigned 628 public interface SyncStateColumns extends SyncStateContract.Columns { 636 public static final class SyncState implements SyncStateContract.Columns { 690 public static final class ProfileSyncState implements SyncStateContract.Columns { 738 * Generic columns for use by sync adapters. The specific functions of 739 * these columns are private to the sync adapter. Other clients of the API 758 * Columns that appear when each row of a table belongs to a specific 801 * Columns of {@link ContactsContract.Contacts} that track the user's [all...] |
/frameworks/ex/common/java/com/android/common/content/ |
SyncStateContentProviderHelper.java | 34 SyncStateContract.Columns.ACCOUNT_NAME + "=? AND " 35 + SyncStateContract.Columns.ACCOUNT_TYPE + "=?"; 44 new String[]{SyncStateContract.Columns.ACCOUNT_NAME, 45 SyncStateContract.Columns.ACCOUNT_TYPE}; 52 + " WHERE " + SyncStateContract.Columns._ID + "=?"; 57 + SyncStateContract.Columns._ID + " INTEGER PRIMARY KEY," 58 + SyncStateContract.Columns.ACCOUNT_NAME + " TEXT NOT NULL," 59 + SyncStateContract.Columns.ACCOUNT_TYPE + " TEXT NOT NULL," 60 + SyncStateContract.Columns.DATA + " TEXT," 61 + "UNIQUE(" + SyncStateContract.Columns.ACCOUNT_NAME + ", [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
FileCache.java | 42 FileEntry.Columns.HASH_CODE + "=? AND " + FileEntry.Columns.CONTENT_URL + "=?"; 43 private static final String ID_WHERE = FileEntry.Columns.ID + "=?"; 45 {String.format("sum(%s)", FileEntry.Columns.SIZE)}; 47 FileEntry.Columns.ID, FileEntry.Columns.FILENAME, 48 FileEntry.Columns.CONTENT_URL, FileEntry.Columns.SIZE}; 50 String.format("%s ASC", FileEntry.Columns.LAST_ACCESS); 184 values.put(FileEntry.Columns.LAST_ACCESS, System.currentTimeMillis()) [all...] |
Entry.java | 27 public static interface Columns {
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
WeatherDataProvider.java | 54 public static class Columns { 95 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE }); 129 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE }); 132 data.degrees = values.getAsInteger(Columns.TEMPERATURE);
|
WeatherWidgetService.java | 76 final int dayColIndex = mCursor.getColumnIndex(WeatherDataProvider.Columns.DAY); 78 WeatherDataProvider.Columns.TEMPERATURE);
|
WeatherWidgetProvider.java | 126 values.put(WeatherDataProvider.Columns.TEMPERATURE, 194 int tempColIndex = c.getColumnIndex(WeatherDataProvider.Columns.TEMPERATURE);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DownloadCache.java | 28 import com.android.gallery3d.data.DownloadEntry.Columns; 48 private static final String QUERY_PROJECTION[] = {Columns.ID, Columns.DATA}; 50 "%s = ? AND %s = ?", Columns.HASH_CODE, Columns.CONTENT_URL); 55 Columns.ID, Columns.DATA, Columns.CONTENT_URL, Columns.CONTENT_SIZE}; 57 String.format("%s ASC", Columns.LAST_ACCESS) [all...] |
DownloadEntry.java | 26 public static interface Columns extends Entry.Columns {
|
/external/clang/lib/Frontend/ |
DependencyFile.cpp | 187 unsigned Columns = 0; 192 if (Columns == 0) { 193 Columns += N; 194 } else if (Columns + N + 2 > MaxColumns) { 195 Columns = N + 2; 198 Columns += N + 1; 206 Columns += 1; 216 if (Columns + (N + 1) + 2 > MaxColumns) { 218 Columns = 2; 222 Columns += N + 1 [all...] |
TextDiagnostic.cpp | 174 /// of the printable representation of the line to the columns those printable 177 /// If a byte 'i' corresponds to muliple columns (e.g. the byte contains a tab 187 /// and instead is the number of columns needed to display the source 193 /// (\\u3042 is represented in UTF-8 by three bytes and takes two columns to 206 int columns = 0; 209 out[i] = columns; 212 columns += llvm::sys::locale::columnWidth(res.first); 214 out.back() = columns; 217 /// This function takes a raw source line and produces a mapping from columns 227 /// (\\u3042 is represented in UTF-8 by three bytes and takes two columns t [all...] |
/packages/apps/Email/src/com/android/email/provider/ |
AttachmentProvider.java | 38 import com.android.emailcommon.utility.AttachmentUtilities.Columns; 182 new String[] { Columns.DATA }, null, null, null); 254 Columns._ID, 255 Columns.DATA, 286 if (Columns._ID.equals(column)) { 289 else if (Columns.DATA.equals(column)) { 292 else if (Columns.DISPLAY_NAME.equals(column)) { 295 else if (Columns.SIZE.equals(column)) {
|
/external/clang/include/clang/Frontend/ |
TextDiagnostic.h | 69 /// \param Columns The number of columns to use in line-wrapping, 0 disables 75 unsigned CurrentColumn, unsigned Columns,
|
/external/chromium_org/ui/views/controls/table/ |
table_header.cc | 27 // Distace from edge columns can be resized by. 58 typedef std::vector<TableView::VisibleColumn> Columns; 81 const Columns& columns = table_->visible_columns(); local 84 for (size_t i = 0; i < columns.size(); ++i) { 85 if (columns[i].width >= 2) { 87 columns[i].x + columns[i].width - 1); 93 const int x = columns[i].x + kHorizontalPadding; 94 int width = columns[i].width - kHorizontalPadding - kHorizontalPadding [all...] |
/packages/apps/Email/tests/src/com/android/email/provider/ |
AttachmentProviderTests.java | 129 // Return a row with all columns specified 133 new String[] { AttachmentUtilities.Columns._ID, 134 AttachmentUtilities.Columns.DATA, 135 AttachmentUtilities.Columns.DISPLAY_NAME, 136 AttachmentUtilities.Columns.SIZE }, 145 // Return a row with permuted columns 149 new String[] { AttachmentUtilities.Columns.SIZE, 150 AttachmentUtilities.Columns.DISPLAY_NAME, 151 AttachmentUtilities.Columns.DATA, 152 AttachmentUtilities.Columns._ID } [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/ |
d3d11shader.idl | 86 UINT Columns;
|
d3d10shader.idl | 119 UINT Columns;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/ |
d3d11shader.idl | 86 UINT Columns;
|
d3d10shader.idl | 119 UINT Columns;
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
AttachmentUtilities.java | 54 public static class Columns { 278 new String[] { Columns.DATA },
|
/external/chromium_org/tools/stats_viewer/ |
stats_viewer.Designer.cs | 74 this.listViewCounters.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
283 this.listViewRates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarDatabaseHelper.java | 81 // columns used to duplicate an event row 121 // columns used to duplicate a reminder row 126 // columns used to duplicate an attendee row 136 // columns used to duplicate an extended property row 370 + SyncStateContract.Columns.ACCOUNT_NAME + "," 371 + SyncStateContract.Columns.ACCOUNT_TYPE + "," 372 + SyncStateContract.Columns.DATA 517 // IMPORTANT: when adding new columns, be sure to update ALLOWED_IN_EXCEPTION and 572 // SYNC_DATAX columns are available for use by sync adapters 635 // SYNC_DATAX columns are available for use by sync adapter 3103 String[] columns = { local [all...] |