/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarNonDeterminismMessage.java | 62 column = decisionASTNode.getCharPositionInLine(); 84 column = ruleStart.associatedASTNode.getCharPositionInLine();
|
GrammarDanglingStateMessage.java | 56 column = decisionASTNode.getCharPositionInLine();
|
/external/chromium-trace/trace-viewer/src/ui/ |
quad_stack.css | 8 -webkit-flex-direction: column;
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
ChromeBrowserProviderSuggestionsCursor.java | 59 public String getString(int column) { 60 switch (column) {
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
logs_view.css | 19 .logs-view-log-table-button-column {
|
/external/chromium_org/chrome/browser/resources/ |
policy_android.css | 150 .scope-column { 154 .level-column { 158 .name-column { 166 .status-column {
|
/external/chromium_org/chrome/browser/resources/signin_internals/ |
signin_index.css | 24 -webkit-column-break-inside: avoid;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
JavaScriptCallFrame.idl | 47 readonly attribute long column;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
NetworkItemView.js | 181 highlightPosition: function(line, column) 184 this._innerView.highlightPosition(line, column);
|
TextEditor.js | 64 * @param {number} column 67 cursorPositionToCoordinates: function(lineNumber, column) { return null; }, 78 * @param {number} column 81 tokenAtTextPosition: function(lineNumber, column) { return null; },
|
DataGrid.js | 83 var column = columnsArray[i]; 84 column.ordinal = i; 85 var columnIdentifier = column.identifier = column.id || i; 86 this.columns[columnIdentifier] = column; 87 if (column.disclosure) 91 if (column.width) 92 col.style.width = column.width; 93 column.element = col; 97 cell.className = columnIdentifier + "-column"; [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_bootstrap_unittest.cc | 75 void AddError(const string& filename, int line, int column, 78 filename, line, column, message);
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingTable.java | 55 public Map<R, V> column(C columnKey) { method in class:ForwardingTable 56 return delegate().column(columnKey);
|
/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/llvm/include/llvm/DebugInfo/ |
DIContext.h | 36 uint32_t Column; 40 Line(0), Column(0) {} 43 uint32_t line, uint32_t column) 45 Line(line), Column(column) {} 50 uint32_t getColumn() const { return Column; } 53 return Line == RHS.Line && Column == RHS.Column &&
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_bootstrap_unittest.cc | 75 void AddError(const string& filename, int line, int column, 78 filename, line, column, message);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAbstractCursor.java | 110 public String getColumnName(int column) { 111 return columnNameArray[column]; 125 if (idx >= 0) return idx; else throw new IllegalArgumentException("column does not exist");
|
/frameworks/base/core/java/android/database/ |
DatabaseUtils.java | 531 // assume that if the getString threw this exception then the column is not 555 // assume that if the getString threw this exception then the column is not 808 * first column of the first row. 821 * first column of the first row. 830 * first column of the first row. 843 * first column of the first row. 852 * first column of the first row. 868 * first column of the first row. 879 * Reads a String out of a column in a Cursor and writes it to a ContentValues [all...] |
/frameworks/base/core/java/android/widget/ |
TableLayout.java | 42 * <p>The width of a column is defined by the row with the widest cell in that 43 * column. However, a TableLayout can specify certain columns as shrinkable or 47 * marked as shrinkable, the column width can be shrunk to fit the table into 50 * container. It is important to remember that a column can be both shrinkable 51 * and stretchable. In such a situation, the column will change its size to 53 * column by calling 63 * <p> Cells must be added to a row in increasing column order, both in code and 64 * XML. Column numbers are zero-based. If you don't specify a column number for 65 * a child cell, it will autoincrement to the next available column. If you ski 601 int column = columns.keyAt(i); local 623 int column = columns.keyAt(i); local [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ListSuggestionCursor.java | 151 for (String column : extras.getExtraColumnNames()) { 152 mExtraColumns.add(column);
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
BaseContactsProvider2Test.java | 783 protected void storeValue(Uri contentUri, long id, String column, String value) { 784 storeValue(ContentUris.withAppendedId(contentUri, id), column, value); local 787 protected void storeValue(Uri contentUri, String column, String value) { 789 values.put(column, value); 795 storeValue(ContentUris.withAppendedId(contentUri, id), column, value); local 806 assertStoredValue(ContentUris.withAppendedId(contentUri, id), column, expectedValue); local 993 String column = entry.getKey(); local [all...] |
/external/chromium_org/ui/views/controls/table/ |
table_view.cc | 134 visible_column.column = columns[i]; 204 visible_column.column = FindColumnByID(id); 208 if (visible_columns_[i].column.id == id) { 224 if (!visible_columns_[visible_column_index].column.sortable) 226 const int column_id = visible_columns_[visible_column_index].column.id; 242 if (visible_columns_[i].column.id == id) 295 // recalculating column sizes. 511 // Always paint the icon in the first visible column. 526 model_->GetText(model_index, visible_columns_[j].column.id), font_, 534 visible_columns_[j].column.alignment)) 881 const int column = GetClosestVisibleColumnIndex(this, x); local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
dsa_old.cpp | 867 const TUint8* column = aSource; local 871 *target++ = aDsa.iLut256[*column]; 872 column += aLineLen; 880 const TUint8* column = aSource; local 884 *(--endt) = aDsa.iLut256[*column]; 885 column += aLineLen; 898 const TUint32* column = reinterpret_cast<const TUint32*>(aSource); local 902 *target++ = *column; 903 column += aLineLen; 923 const TUint32* column = reinterpret_cast<const TUint32*>(aSource) local 1009 const T* column = reinterpret_cast<const T*>(aSource); local [all...] |
/external/chromium_org/third_party/iaccessible2/ |
ia2_api_all.idl | 180 In the case of an insertion or change the row and column offsets define the boundaries 182 the row and column offsets define the boundaries of the subtable being removed before [all...] |
/frameworks/ex/widget/java/com/android/ex/widget/ |
StaggeredGridView.java | 45 * <p>StaggeredGridView presents a multi-column grid with consistent column sizes 79 * view has been removed. These let positioning and the choice of column for an item 136 public int column; field in class:StaggeredGridView.LayoutRecord 145 // all layoutrecords are purged when column count changes. 182 String result = "LayoutRecord{c=" + column + ", id=" + id + " h=" + height + 231 throw new IllegalArgumentException("Column count must be at least 1 - received " + 246 * Set a minimum column width for 508 // Repair the top and bottom column boundaries from the views we still have 519 final int colEnd = lp.column + Math.min(mColCount, lp.span) 1408 int column; field in class:StaggeredGridView.LayoutParams [all...] |