HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 126 - 150 of 962) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.cc 146 // Should be used for all gtk_tree_view functions that require a column index on
150 // column index, not the column id, and both kTaskManagerIcon and
151 // kTaskManagerPage are in the same column index, so all column IDs are off by
157 // Shows or hides a treeview column.
160 GtkTreeViewColumn* column = gtk_tree_view_get_column( local
162 gtk_tree_view_column_set_visible(column, visible);
166 GtkTreeViewColumn* column = gtk_tree_view_get_column( local
168 return gtk_tree_view_column_get_visible(column);
173 GtkTreeViewColumn* column = gtk_tree_view_column_new(); local
193 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column); local
207 GtkTreeViewColumn* column = gtk_tree_view_get_column( local
902 GtkTreeViewColumn* column = NULL; local
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 102 int TestingImage::getPixelValue(int row, int column, int channel) const {
104 assert ((column >= 0) && (column < mWidth));
106 return (int)mImage[row * mRowSpan + column * mChannels + channel];
109 Vec3i TestingImage::getPixelValue(int row, int column) const {
110 Vec3i current_color(getPixelValue(row, column, 0),
111 getPixelValue(row, column, 1),
112 getPixelValue(row, column, 2));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSemanticsMessage.java 71 column = 0;
74 column = offendingToken.getCharPositionInLine();
GrammarSyntaxMessage.java 65 column = 0;
68 column = offendingToken.getCharPositionInLine();
GrammarUnreachableAltsMessage.java 58 column = decisionASTNode.getCharPositionInLine();
76 column = ruleStart.associatedASTNode.getCharPositionInLine();
  /external/chromium_org/components/test/data/autofill/merge/tools/
flatten.py 50 # Prepare format strings so that we can align the contents of each column.
53 for column in transposed:
54 widths = [len(value) for value in column]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextPosition.h 63 TextPosition(OrdinalNumber line, OrdinalNumber column)
65 , m_column(column)
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_genc.c 63 write8(FileStream *out, uint8_t byte, uint32_t column);
66 write32(FileStream *out, uint32_t byte, uint32_t column);
70 write8str(FileStream *out, uint8_t byte, uint32_t column);
247 uint32_t column = MAX_COLUMN; local
307 column = write32(out, buffer[i], column);
334 uint32_t column = MAX_COLUMN; local
400 column = write8str(out, (uint8_t)buffer[i], column);
424 column = write8(out, (uint8_t)buffer[i], column)
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
re2_arg_test.cc 93 #define PARSE_FOR_TYPE(type, column) { \
99 bool success = kSuccessTable[i].success[column]; \
  /external/icu4c/tools/toolutil/
pkg_genc.c 59 write8(FileStream *out, uint8_t byte, uint32_t column);
62 write32(FileStream *out, uint32_t byte, uint32_t column);
66 write8str(FileStream *out, uint8_t byte, uint32_t column);
243 uint32_t column = MAX_COLUMN; local
303 column = write32(out, buffer[i], column);
330 uint32_t column = MAX_COLUMN; local
399 column = write8str(out, (uint8_t)buffer[i], column);
426 column = write8(out, (uint8_t)buffer[i], column)
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
TableResultX.java 26 this.column = tr.column;
  /external/regex-re2/re2/testing/
re2_arg_test.cc 93 #define PARSE_FOR_TYPE(type, column) { \
99 bool success = kSuccessTable[i].success[column]; \
  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 24 * <li>Keeps track of current cursor position (row, column)</li>
91 public boolean isSelected(int row, int column) {
92 return (mRow == row) && (mColumn == column);
106 // flip back to previous month, same column, first position within month
126 // flip to next month, same column, first position within month
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java 26 * <li>Keeps track of current cursor position (row, column)</li>
93 public boolean isSelected(int row, int column) {
94 return (mRow == row) && (mColumn == column);
108 // flip back to previous month, same column, first position within month
128 // flip to next month, same column, first position within month
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProviderValidator.java 96 for (String column : projection) {
97 if (!validColumns.contains(column)) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
profilesPanel.css 86 .profile-view .data-grid th.average-column {
90 .profile-view .data-grid td.average-column {
94 .profile-view .data-grid th.self-column {
98 .profile-view .data-grid td.self-column {
102 .profile-view .data-grid th.total-column {
106 .profile-view .data-grid td.total-column {
110 .profile-view .data-grid .calls-column {
ConsoleModel.js 162 * @param {number=} column
165 WebInspector.ConsoleMessage = function(source, level, url, line, column, repeatCount)
171 this.column = column || 0;
218 * @param {number=} column
226 WebInspector.ConsoleMessage.create = function(source, level, message, type, url, line, column, repeatCount, parameters, stackTrace, requestId, isOutdated)
292 payload.column,
  /external/chromium_org/third_party/mesa/src/src/glx/
singlepix.c 39 GLvoid * row, GLvoid * column, GLvoid * span)
96 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
113 GLvoid * column, GLvoid * span)
123 p(target, format, type, row, column, span);
187 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf, column);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.h 46 GLint img, GLint row, GLint column );
54 GLint img, GLint row, GLint column );
61 GLint column );
68 GLint row, GLint column );
75 GLint img, GLint row, GLint column );
  /external/chromium_org/ui/views/examples/
table_example.cc 23 ui::TableColumn column; local
24 column.id = id;
25 column.title = ASCIIToUTF16(title.c_str());
26 column.sortable = true;
27 return column;
43 ASCIIToUTF16("Fruit column visible"));
47 ASCIIToUTF16("Color column visible"));
51 ASCIIToUTF16("Origin column visible"));
55 ASCIIToUTF16("Price column visible"));
  /external/mesa3d/src/glx/
singlepix.c 39 GLvoid * row, GLvoid * column, GLvoid * span)
96 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
113 GLvoid * column, GLvoid * span)
123 p(target, format, type, row, column, span);
187 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf, column);
  /external/mesa3d/src/mesa/main/
image.h 46 GLint img, GLint row, GLint column );
54 GLint img, GLint row, GLint column );
61 GLint column );
68 GLint row, GLint column );
75 GLint img, GLint row, GLint column );
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 151 LogUtils.e(TAG, "Unsupported column: " + columnName);
231 final String column = projection[i]; local
232 if (column.equals(Directory.ACCOUNT_NAME)) {
234 } else if (column.equals(Directory.ACCOUNT_TYPE)) {
236 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) {
248 } else if (column.equals(Directory.DISPLAY_NAME)) {
260 } else if (column.equals(Directory.EXPORT_SUPPORT)) {
262 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) {
371 final String column = projection[i]; local
372 if (Contacts.DISPLAY_NAME.equals(column) ||
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
task_manager_gtk.cc 156 // Should be used for all gtk_tree_view functions that require a column index on
160 // column index, not the column id, and both kTaskManagerIcon and
161 // kTaskManagerTask are in the same column index, so all column IDs are off by
167 // Shows or hides a treeview column.
170 GtkTreeViewColumn* column = gtk_tree_view_get_column( local
172 gtk_tree_view_column_set_visible(column, visible);
176 GtkTreeViewColumn* column = gtk_tree_view_get_column( local
178 return gtk_tree_view_column_get_visible(column);
185 GtkTreeViewColumn* column = gtk_tree_view_column_new(); local
199 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column); local
212 GtkTreeViewColumn* column = gtk_tree_view_get_column( local
851 GtkTreeViewColumn* column = NULL; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 136 int column; field in class:LockPatternView.Cell
150 * @param column The column of the cell.
152 private Cell(int row, int column) {
153 checkRange(row, column);
155 this.column = column;
163 return column;
168 * @param column The column of the cell
    [all...]

Completed in 1288 milliseconds

1 2 3 4 56 7 8 91011>>