HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 176 - 200 of 653) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
SingletonImmutableTableTest.java 43 assertEquals(ImmutableMap.of(), testTable.column(0));
44 assertEquals(ImmutableMap.of('a', "blah"), testTable.column(1));
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
browser.h 42 void __ui_browser__line_arrow(struct ui_browser *browser, unsigned int column,
53 void __ui_browser__vline(struct ui_browser *browser, unsigned int column,
  /external/chromium_org/ui/views/controls/table/
table_view.cc 135 visible_column.column = columns[i];
205 visible_column.column = FindColumnByID(id);
209 if (visible_columns_[i].column.id == id) {
225 if (!visible_columns_[visible_column_index].column.sortable)
227 const int column_id = visible_columns_[visible_column_index].column.id;
243 if (visible_columns_[i].column.id == id)
296 // recalculating column sizes.
512 // Always paint the icon in the first visible column.
527 model_->GetText(model_index, visible_columns_[j].column.id),
535 visible_columns_[j].column.alignment))
882 const int column = GetClosestVisibleColumnIndex(this, x); local
    [all...]
  /external/chromium_org/third_party/iaccessible2/
ia2_api_all.idl 235 In the case of an insertion or change the row and column offsets define the boundaries
237 the row and column offsets define the boundaries of the subtable being removed before
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarDanglingStateMessage.java 56 column = decisionASTNode.getCharPositionInLine();
NonRegularDecisionMessage.java 52 column = decisionASTNode.getCharPositionInLine();
RecursionOverflowMessage.java 64 column = decisionASTNode.getCharPositionInLine();
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 138 DBG->location(DBG, <ruleDescriptor.tree.line>, <ruleDescriptor.tree.column>);<\n>
142 DBG->location(DBG, <ruleDescriptor.EORNode.line>, <ruleDescriptor.EORNode.column>);<\n>
  /external/chromium_org/chrome/browser/resources/sync_internals/
about.css 7 -webkit-column-width: 350px;
11 -webkit-column-break-inside: avoid;
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 13 class Column;
30 // Creates a new column set with the specified id and returns it.
36 // Returns the column set for the specified id, or NULL if one doesn't exist.
44 // Starts a new row with the specified column set.
52 // Advances past columns. Use this when the current column should not
69 // Returns the column set of the last non-padding row.
91 // Next column in the current ColumnSet.
122 float GetColumnWidth(int column);
124 Column* GetColumn(int column_index) {
136 ScopedVector<Column> columns_
    [all...]
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_table_model.h 51 virtual base::string16 GetText(int row, int column) OVERRIDE;
  /external/chromium_org/mojo/examples/keyboard/
keyboard_view.h 70 // Returns the button corresponding to a key at the specified row/column.
71 views::LabelButton* GetButton(int row, int column);
  /external/chromium_org/native_client_sdk/src/resources/
index.css 12 .main-column {
17 -webkit-flex-direction: column;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.h 60 int column() const;
  /external/chromium_org/third_party/WebKit/Source/core/paint/
TableSectionPainter.cpp 166 // the column group, column, row group, row, and then the cell.
167 RenderTableCol* column = m_renderTableSection.table()->colElement(cell->col()); local
168 RenderTableCol* columnGroup = column ? column->enclosingColumnGroup() : 0;
170 // Column groups and columns first.
171 // FIXME: Columns and column groups do not currently support opacity, and they are being painted "too late" in
176 cell->paintBackgroundsBehindCell(paintInfo, cellPoint, column);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
SettingsScreen.js 483 * @param {{id: string, placeholder: (string|undefined), options: (!Array.<string>|undefined)}} column
486 _renderFileSystem: function(columnElement, column, id)
491 var textElement = columnElement.createChild("span", "list-column-text");
712 var column = this._columns[i];
713 var columnElement = listItemColumnsElement.createChild("div", "list-column settings-list-column-" + column.id);
714 listItem.columnElements[column.id] = columnElement;
715 this._itemRenderer(columnElement, column, itemId);
890 var column = this._columns[i]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
suggestBox.css 47 flex-direction: column;
69 flex-direction: column;
  /external/chromium_org/third_party/WebKit/Source/platform/
DragImage.cpp 261 for (int column = 0; column < m_bitmap.width(); ++column) {
262 uint32_t* pixel = m_bitmap.getAddr32(column, row);
  /external/chromium_org/tools/metrics/common/
pretty_print_xml.py 73 # Wrap each paragraph in the text to fit in the 80 column limit.
141 column = value_indent_level
145 if i > 0 and (column + len(word) + 1 + closing_chars > WRAP_COLUMN):
148 column = value_indent_level
150 column += len(word) + 1
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 40 int column; member in struct:__sanitizer::AddressInfo
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
RenderingContext.java 91 void setCurrentPosition(int line, int column);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main_wnd.cc 71 GtkTreeViewColumn* column, gpointer data) {
72 reinterpret_cast<GtkMainWnd*>(data)->OnRowActivated(tree_view, path, column);
87 // Our TreeView only has one column, so it is column 0.
88 GtkTreeViewColumn* column = gtk_tree_view_get_column(tree_view, 0); local
90 gtk_tree_view_row_activated(tree_view, lastpath, column);
99 GtkTreeViewColumn* column = gtk_tree_view_column_new_with_attributes( local
101 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column); local
388 GtkTreeViewColumn* column) {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 164 void AddError(int line, int column, const string& message) {
166 line, column, message);
260 EXPECT_EQ(0, tokenizer.current().column);
272 EXPECT_EQ(0, tokenizer.current().column);
283 EXPECT_EQ(kSimpleTokenCases_case.input.size(), tokenizer.current().column);
374 // Test that tabs affect column numbers correctly.
382 // Test that tabs in string literals affect column numbers correctly.
440 EXPECT_EQ(0, tokenizer.current().column);
464 EXPECT_EQ(previous.column, tokenizer.previous().column);
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 241 // The helper method extracts the column indices once every time it is called,
255 private String getSortBy(String column, SortOrder sortOrder) {
256 if (column == null) {
261 return column + " ASC";
263 return column + " DESC";
265 return column;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
AllocationProfile.js 62 var columnOffset = functionInfoFields.indexOf("column");
188 functionInfo.column
256 functionInfo.column,
353 * @param {number} column
355 WebInspector.FunctionAllocationInfo = function(functionName, scriptName, scriptId, line, column)
361 this.column = column;

Completed in 384 milliseconds

1 2 3 4 5 6 78 91011>>