HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 451 - 475 of 2687) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/database/
DatabaseUtils.java 551 // assume that if the getString threw this exception then the column is not
575 // assume that if the getString threw this exception then the column is not
825 * first column of the first row.
838 * first column of the first row.
847 * first column of the first row.
860 * first column of the first row.
869 * first column of the first row.
885 * first column of the first row.
    [all...]
  /frameworks/base/core/java/android/widget/
TableLayout.java 40 * <p>The width of a column is defined by the row with the widest cell in that
41 * column. However, a TableLayout can specify certain columns as shrinkable or
45 * marked as shrinkable, the column width can be shrunk to fit the table into
48 * container. It is important to remember that a column can be both shrinkable
49 * and stretchable. In such a situation, the column will change its size to
51 * column by calling
61 * <p> Cells must be added to a row in increasing column order, both in code and
62 * XML. Column numbers are zero-based. If you don't specify a column number for
63 * a child cell, it will autoincrement to the next available column. If you ski
599 int column = columns.keyAt(i); local
621 int column = columns.keyAt(i); local
    [all...]
  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SupportSQLiteQueryBuilder.java 67 * @param columns The list of column names that should be returned.
190 String column = columns[i]; local
194 s.append(column);
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/query/result/
PojoRowAdapter.kt 53 matchedFields = info.columns.mapNotNull { column ->
55 // column into 2 fields. (if they want to post process etc)
56 val field = remainingFields.firstOrNull { it.columnName == column.name } ?:
57 pojo.fields.firstOrNull { it.columnName == column.name }
59 unusedColumns.add(column.name)
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
FakeCursor.java 39 for (final String column : projection) {
40 mProjection.add(getColumnIndex(column));
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursor.java 151 for (String column : extras.getExtraColumnNames()) {
152 mExtraColumns.add(column);
  /prebuilts/tools/linux-x86_64/kythe/proto/
analysis.proto 132 repeated ContextDependentVersionColumn column = 2;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/
cfi-label.d 23 Return address column: (8|16)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
eh4.d 15 Return address column: 16
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
eh-frame1-n32.d 27 Return address column: 31
67 Return address column: 31
91 Return address column: 31
110 Return address column: 31
eh-frame2-n32.d 27 Return address column: 31
67 Return address column: 31
87 Return address column: 31
106 Return address column: 31
eh-frame3.d 19 Return address column: 31
43 Return address column: 31
77 Return address column: 31
104 Return address column: 31
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 874 storeValue(ContentUris.withAppendedId(contentUri, id), column, value); local
885 storeValue(ContentUris.withAppendedId(contentUri, id), column, value); local
896 assertStoredValue(ContentUris.withAppendedId(contentUri, id), column, expectedValue); local
1083 String column = entry.getKey(); local
    [all...]
  /bionic/tools/versioner/src/
Preprocessor.cpp 253 unsigned current_column = start.column;
260 .column = unsigned(result) + 1,
270 errx(1, "failed to find semicolon starting from %u:%u", start.line, start.column);
299 current_location.column = 1;
303 if (current_location.column == file_lines[current_location.line - 1].length()) {
306 ++current_location.column;
315 size_t line_index = current_location.column - 1;
326 current_location.column = pos + 2;
337 current_location.column = pos + 1;
407 file_lines[loc.end.line - 1].insert(loc.end.column, epilogue)
    [all...]
  /external/selinux/policycoreutils/semodule/
semodule.c 584 /* calculate column widths */
585 size_t column[4] = { 0, 0, 0, 0 }; local
588 column[0] = sizeof("000") - 1;
589 column[3] = sizeof("disabled") - 1;
601 if (size > column[1]) column[1] = size;
607 if (size > column[3]) column[3] = size;
632 (int)column[0], pri,
633 (int)column[1], name
    [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...]
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 42 // Tab-terminated cells in contiguous lines constitute a column. The
43 // Writer inserts padding as needed to make all cells in a column have
46 // tabwidth must be specified. Column cells must be tab-terminated, not
48 // forms a cell but that cell is not part of an aligned column.
56 // the b and c are in distinct columns (the b column is not contiguous
57 // all the way). The d and e are not in a column at all (there's no
58 // terminating tab, nor would the column be contiguous).
107 widths []int // list of column widths in runes - re-used during formatting
284 // indicate column break
332 column := len(b.widths
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 42 // Tab-terminated cells in contiguous lines constitute a column. The
43 // Writer inserts padding as needed to make all cells in a column have
46 // tabwidth must be specified. Column cells must be tab-terminated, not
48 // forms a cell but that cell is not part of an aligned column.
56 // the b and c are in distinct columns (the b column is not contiguous
57 // all the way). The d and e are not in a column at all (there's no
58 // terminating tab, nor would the column be contiguous).
107 widths []int // list of column widths in runes - re-used during formatting
284 // indicate column break
332 column := len(b.widths
    [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/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrixImpl.java 49 * returns the element in the first row, first column of the matrix.</li></ul></p>
97 * Create a new BigMatrix with the supplied row and column dimensions.
101 * @throws IllegalArgumentException if row or column dimension is not
240 * Create a new (column) BigMatrix using <code>v</code> as the
241 * data for the unique column of the <code>v.length x 1</code> matrix
246 * @param v column vector holding data for new matrix
593 * @param startColumn Initial column index
594 * @param endColumn Final column index
597 * @exception MatrixIndexException if row or column selections are not valid
634 * @param selectedColumns Array of column indices must be non-empt
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 62 frame->info.column = col;
  /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
GeneratedJavaParserTokenManagerBase.java 39 range = range.withEnd(pos(range.begin.line, range.begin.column + commentText.length()));

Completed in 1971 milliseconds

<<11121314151617181920>>