HomeSort by relevance Sort by last modified time
    Searched full:columnid (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/chrome/browser/resources/task_manager/
preload.js 47 * @return {boolean} the given column (at |columnId|) is enabled or not.
48 * @param {string} columnId The ID of the collumn to be checked.
50 function isColumnEnabled(columnId) {
51 return (getEnabledColumns())[columnId];
56 * @param {string} columnId The ID of the collumn to be set.
59 function setColumnEnabled(columnId, newChecked) {
60 commands.setUpdateColumn(columnId, newChecked);
61 cachedEnabledColumns[columnId] = newChecked;
69 var columnId = DEFAULT_COLUMNS[i][0];
70 if (isColumnEnabled(columnId))
    [all...]
commands.js 51 setUpdateColumn: function(columnId, isEnabled) {
52 chrome.send('setUpdateColumn', [columnId, isEnabled]);
55 if (columnId == 'title')
main.js 122 var columnId = DEFAULT_COLUMNS[i][0];
124 var columnIdToSort = columnId;
125 if (COLUMNS_SORTED_BY_VALUE.indexOf(columnId) != -1)
136 dm.setCompareFunction(columnId, compareFunc);
189 var columnId = DEFAULT_COLUMNS[j][0];
191 var row = dm.item(i)[columnId];
196 var labelId = 'detail-' + columnId + '-pid' + processId + '-' + k;
218 var columnId = column[0];
219 if (!isColumnEnabled(columnId))
222 tableColumns.push(new cr.ui.table.TableColumn(columnId,
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_types.cc 31 HistoryAndBookmarkRow::ColumnID> {
39 static_cast<HistoryAndBookmarkRow::ColumnID>(i);
44 // The mapping from Android column name to ColumnID; It is initialized
49 SearchRow::ColumnID> {
56 static_cast<SearchRow::ColumnID>(i);
61 // The mapping from Android column name to ColumnID; It is initialized
80 std::string HistoryAndBookmarkRow::GetAndroidName(ColumnID id) {
84 HistoryAndBookmarkRow::ColumnID HistoryAndBookmarkRow::GetColumnID(
104 std::string SearchRow::GetAndroidName(ColumnID id) {
108 SearchRow::ColumnID SearchRow::GetColumnID
    [all...]
sql_handler.cc 17 SQLHandler::SQLHandler(const HistoryAndBookmarkRow::ColumnID columns[],
26 for (std::set<HistoryAndBookmarkRow::ColumnID>::const_iterator i =
34 bool SQLHandler::HasColumn(HistoryAndBookmarkRow::ColumnID id) {
android_history_types.h 33 enum ColumnID {
52 static std::string GetAndroidName(ColumnID id);
54 static ColumnID GetColumnID(const std::string& name);
160 bool is_value_set_explicitly(ColumnID id) const {
165 void set_value_explicitly(ColumnID id) {
182 std::set<ColumnID> values_set_;
197 enum ColumnID {
210 static std::string GetAndroidName(ColumnID id);
212 static ColumnID GetColumnID(const std::string& name);
255 bool is_value_set_explicitly(ColumnID id) const
    [all...]
sql_handler.h 42 SQLHandler(const HistoryAndBookmarkRow::ColumnID columns[], int column_count);
64 bool HasColumn(HistoryAndBookmarkRow::ColumnID id);
68 const std::set<HistoryAndBookmarkRow::ColumnID> columns_;
android_urls_sql_handler.cc 15 const HistoryAndBookmarkRow::ColumnID kInterestingColumns[] = {
android_history_provider_service.cc 23 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
216 const std::vector<history::SearchRow::ColumnID>& projections,
android_provider_backend.h 66 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
112 const std::vector<SearchRow::ColumnID>& projections,
269 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
275 const std::vector<SearchRow::ColumnID>& projections,
300 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
favicon_sql_handler.cc 19 const HistoryAndBookmarkRow::ColumnID kInterestingColumns[] = {
visit_sql_handler.cc 17 const HistoryAndBookmarkRow::ColumnID kInterestingColumns[] = {
android_history_provider_service.h 70 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
165 const std::vector<history::SearchRow::ColumnID>& projections,
android_history_provider_service_unittest.cc 168 std::vector<HistoryAndBookmarkRow::ColumnID> projections;
223 std::vector<SearchRow::ColumnID> projections;
android_provider_backend.cc 138 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
495 const std::vector<SearchRow::ColumnID>& projections,
851 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
857 for (std::vector<HistoryAndBookmarkRow::ColumnID>::const_iterator i =
927 const std::vector<SearchRow::ColumnID>& projections,
931 for (std::vector<SearchRow::ColumnID>::const_iterator i =
953 std::vector<HistoryAndBookmarkRow::ColumnID> projections;
    [all...]
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_column.js 49 * @param {string} columnId The column id.
53 renderFunction_: function(dataItem, columnId, table) {
55 div.textContent = dataItem[columnId];
  /external/chromium_org/ui/webui/resources/js/cr/ui/table/
table_column.js 55 * @param {string} columnId The column id.
59 renderFunction_: function(dataItem, columnId, table) {
61 div.textContent = dataItem[columnId];
  /external/chromium_org/chrome/browser/ui/cocoa/
task_manager_mac.mm 32 int columnId;
103 - (NSTableColumn*)addColumnWithId:(int)columnId visible:(BOOL)isVisible;
218 - (NSTableColumn*)addColumnWithId:(int)columnId visible:(BOOL)isVisible {
220 initWithIdentifier:[NSString stringWithFormat:@"%d", columnId]]);
223 (columnId == IDS_TASK_MANAGER_TASK_COLUMN ||
224 columnId == IDS_TASK_MANAGER_PROFILE_NAME_COLUMN) ?
228 setStringValue:l10n_util::GetNSStringWithFixup(columnId)];
239 BOOL ascending = columnId == IDS_TASK_MANAGER_TASK_COLUMN;
243 initWithKey:[NSString stringWithFormat:@"%d", columnId]
253 if (columnWidths[i].columnId == columnId)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
task_manager_mac.mm 28 int columnId;
92 - (NSTableColumn*)addColumnWithId:(int)columnId visible:(BOOL)isVisible;
217 - (NSTableColumn*)addColumnWithId:(int)columnId visible:(BOOL)isVisible {
219 initWithIdentifier:[NSNumber numberWithInt:columnId]]);
221 NSTextAlignment textAlignment = columnId == IDS_TASK_MANAGER_PAGE_COLUMN ?
225 setStringValue:l10n_util::GetNSStringWithFixup(columnId)];
236 BOOL ascending = columnId == IDS_TASK_MANAGER_PAGE_COLUMN;
239 initWithKey:[NSString stringWithFormat:@"%d", columnId]
249 if (columnWidths[i].columnId == columnId) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SettingsScreen.js 719 _fileMappingValuesProvider: function(itemId, columnId)
724 switch (columnId) {
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
file_table.js 474 * @param {string} columnId The id of the column to be rendered.
479 FileTable.prototype.renderName_ = function(entry, columnId, table) {
481 label.appendChild(this.renderIconType_(entry, columnId, table));
494 * @param {string} columnId The id of the column to be rendered.
499 FileTable.prototype.renderSelection_ = function(entry, columnId, table) {
514 * @param {string} columnId The id of the column to be rendered.
519 FileTable.prototype.renderSize_ = function(entry, columnId, table) {
553 * @param {string} columnId The id of the column to be rendered.
558 FileTable.prototype.renderType_ = function(entry, columnId, table) {
569 * @param {string} columnId The id of the column to be rendered
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend_android.cc 26 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
168 const std::vector<SearchRow::ColumnID>& projections,
  /external/chromium_org/ui/webui/resources/js/cr/ui/
table.js 327 var columnId = cm.getId(index);
342 dm.prepareSort(columnId, function() {
353 div.appendChild(render(item, columnId, table));
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.cc 752 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
MetadataDbHelper.java 478 * @param columnId the column ID to read.
480 private static void putStringResult(ContentValues result, Cursor cursor, String columnId) {
481 result.put(columnId, cursor.getString(cursor.getColumnIndex(columnId)));
488 * @param columnId the column ID to read.
490 private static void putIntResult(ContentValues result, Cursor cursor, String columnId) {
491 result.put(columnId, cursor.getInt(cursor.getColumnIndex(columnId)));
    [all...]

Completed in 560 milliseconds

1 2