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

1 2 3 4 56 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 27 * output writers, one of which ends up writing to the left column and
34 /** {@code > 0;} the left column width */
37 /** {@code non-null;} pending left column output */
40 /** {@code non-null;} pending right column output */
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
51 * two-column string.
54 * @param width1 {@code > 0;} width of the first column
57 * @param width2 {@code > 0;} width of the second column
84 * @param leftWidth {@code > 0;} width of the left column, in character
    [all...]
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 27 * output writers, one of which ends up writing to the left column and
34 /** {@code > 0;} the left column width */
37 /** {@code non-null;} pending left column output */
40 /** {@code non-null;} pending right column output */
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
51 * two-column string.
54 * @param width1 {@code > 0;} width of the first column
57 * @param width2 {@code > 0;} width of the second column
84 * @param leftWidth {@code > 0;} width of the left column, in character
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 27 * output writers, one of which ends up writing to the left column and
34 /** {@code > 0;} the left column width */
37 /** {@code non-null;} pending left column output */
40 /** {@code non-null;} pending right column output */
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
51 * two-column string.
54 * @param width1 {@code > 0;} width of the first column
57 * @param width2 {@code > 0;} width of the second column
84 * @param leftWidth {@code > 0;} width of the left column, in character
    [all...]
  /frameworks/base/core/jni/
android_database_CursorWindow.cpp 50 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) {
54 row, column);
156 jint row, jint column) {
158 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window);
160 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
164 //throwExceptionWithRowCol(env, row, column);
171 jint row, jint column) {
173 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window);
175 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
    [all...]
  /external/llvm/test/Transforms/SampleProfile/
cov-zero-samples.ll 109 !32 = !DILocation(line: 5, column: 27, scope: !31)
111 !34 = !DILocation(line: 8, column: 7, scope: !8)
113 !36 = distinct !DILexicalBlock(scope: !8, file: !1, line: 9, column: 3)
114 !37 = !DILocation(line: 9, column: 18, scope: !36)
115 !38 = !DILocation(line: 9, column: 8, scope: !36)
116 !39 = !DILocation(line: 9, column: 25, scope: !40)
118 !41 = distinct !DILexicalBlock(scope: !36, file: !1, line: 9, column: 3)
119 !42 = !DILocation(line: 9, column: 29, scope: !40)
120 !43 = !DILocation(line: 9, column: 27, scope: !40)
121 !44 = !DILocation(line: 9, column: 3, scope: !40
    [all...]
  /external/llvm/test/DebugInfo/Mips/
dsr-non-fixed-objects.ll 99 !17 = !DILocation(line: 20, column: 12, scope: !4)
101 !19 = !DILocation(line: 20, column: 19, scope: !4)
103 !21 = !DILocation(line: 21, column: 7, scope: !4)
104 !22 = !DILocation(line: 21, column: 40, scope: !4)
105 !23 = !DILocation(line: 21, column: 44, scope: !4)
106 !24 = !DILocation(line: 21, column: 42, scope: !4)
107 !25 = !DILocation(line: 22, column: 3, scope: !4)
108 !26 = !DILocation(line: 23, column: 10, scope: !4)
109 !27 = !DILocation(line: 23, column: 3, scope: !4)
111 !29 = !DILocation(line: 27, column: 13, scope: !8
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
TkoSpreadsheetUtils.java 24 if (cellInfo.column != null) {
25 setSomeFields(testSet, columnFields, cellInfo.column);
41 // column header
44 if (cellInfo.column == null) {
  /external/eigen/Eigen/src/MetisSupport/
MetisSupport.h 18 * Row (column) i of A is the matperm(i) row (column) of Ap.
43 // Get the nonzeros in row/column j of A
46 Index idx = it.index(); // Get the row index (for column major) or column index (for row major)
53 //Get the nonzeros in row/column j of At
68 // Now compute the real adjacency list of each column/row
76 // Add the pattern of row/column j of A to A+At
79 Index idx = it.index(); // Get the row index (for column major) or column index (for row major
    [all...]
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp 11 std::cout << "Column's maximum: " << std::endl
  /external/eigen/doc/snippets/
Tutorial_Map_rowmajor.cpp 3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 31 private final List<Column> columns;
39 this.columns = new ArrayList<Table.Column>();
43 * Adds a new column with the given properties to the table.
46 * column header caption
49 * column
51 * callback for column rendering
53 * If <code>true</code>, this column is the default sorting
54 * column. Only one column can be selected for default sorting.
59 columns.add(new Column(columns.size(), header, style, renderer
    [all...]
IColumnRenderer.java 24 * Renderer for a single column of a coverage table. The methods are always
31 * Initializes the column before any output method is called.
37 * @return <code>true</code> if the column should be visible
42 * Renders the footer for this column.
59 * Renders a single item in this column.
76 * Returns the comparator to sort this table column.
78 * @return comparator for this column
  /external/llvm/test/Transforms/AddDiscriminators/
oneline.ll 83 !18 = !DILocation(line: 1, column: 13, scope: !4)
84 !19 = !DILocation(line: 2, column: 7, scope: !20)
85 !20 = distinct !DILexicalBlock(scope: !4, file: !1, line: 2, column: 7)
86 !21 = !DILocation(line: 2, column: 9, scope: !20)
87 !22 = !DILocation(line: 2, column: 14, scope: !20)
88 !23 = !DILocation(line: 2, column: 17, scope: !20)
89 !24 = !DILocation(line: 2, column: 19, scope: !20)
90 !25 = !DILocation(line: 2, column: 7, scope: !4)
91 !26 = !DILocation(line: 2, column: 25, scope: !20)
92 !27 = !DILocation(line: 2, column: 42, scope: !20
    [all...]
  /external/mesa3d/
.dir-locals.el 6 (fill-column . 78)
  /external/selinux/policycoreutils/sepolicy/sepolicy/help/
transition_from_boolean_1.txt 1 After selecting the arrow under Boolean Enabled column, the line will expand to show a link which you can click. This will take you to the booleans page and allow you to enable the boolean which will enable or disable the transition.
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ProfilesTableModel.java 39 public Object getValueAt(int row, int column) {
42 if (column == 0) {
56 public String getColumnName(int column) {
57 return column == 0 ? "Operation" : "Duration (ms)";
  /toolchain/binutils/binutils-2.25/gold/
NEWS 11 fill-column: 79
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursor_SelfContentObserverTest.java 69 public double getDouble(int column) {
74 public float getFloat(int column) {
79 public int getInt(int column) {
84 public long getLong(int column) {
89 public short getShort(int column) {
94 public String getString(int column) {
99 public boolean isNull(int column) {
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProviderContract.java 9 * contract assists in accessing the provider's available content URIs, column names, MIME types,
43 * Picture table primary key column name
59 * Picture table thumbnail URL column name
64 * Picture table thumbnail filename column name
69 * Picture table full picture URL column name
74 * Picture table full picture filename column name
90 * Modification date table date column name
  /external/javasqlite/src/main/java/SQLite/
TableResult.java 45 * Column names of the result set.
48 public String column[]; field in class:TableResult
96 column = new String[0];
108 column = coldata;
109 ncolumns = column.length;
144 sb.append(column[i] == null ? "NULL" : column[i]);
  /external/llvm/test/Transforms/LoopSimplify/
single-backedge.ll 10 ; CHECK: [[BACKEDGE_LOC]] = !DILocation(line: 101, column: 1, scope: !{{.*}})
34 !6 = !DILocation(line: 100, column: 1, scope: !5)
35 !7 = !DILocation(line: 101, column: 1, scope: !5)
36 !8 = !DILocation(line: 102, column: 1, scope: !5)
37 !9 = !DILocation(line: 103, column: 1, scope: !5)
38 !10 = !DILocation(line: 104, column: 1, scope: !5)
39 !11 = !DILocation(line: 105, column: 1, scope: !5)
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java 36 @Column(value = "hash_code", indexed = true)
39 @Column("content_url")
42 @Column("_size")
45 @Column("etag")
48 @Column(value = "last_access", indexed = true)
51 @Column(value = "last_updated")
54 @Column("_data")
  /external/autotest/frontend/client/src/autotest/common/spreadsheet/
Spreadsheet.java 82 public Header row, column; field in class:Spreadsheet.CellInfo
90 public CellInfo(Header row, Header column, String contents) {
92 this.column = column;
97 return !isEmpty() && (row == null || column == null);
101 return row == null && column == null;
263 public CellInfo getCellInfo(int row, int column) {
265 Header columnHeader = columnHeaderValues.get(column);
266 if (dataCells[row][column] == null) {
267 dataCells[row][column] = new CellInfo(rowHeader, columnHeader, "")
527 int column = tableCell.getCellIndex(); local
    [all...]
  /external/bison/src/
location.h 38 /* If nonnegative, the (origin-1) column just after the boundary.
40 column count. If this is INT_MAX, the column number has
45 int column; member in struct:__anon6629
55 b->column = c;
67 res = a.column - b.column;
75 return (a.column == b.column
123 /* LOC_STR must be formatted as `file:line.column', it will be modified. *
    [all...]
  /external/llvm/test/DebugInfo/ARM/
single-constant-use-preserves-dbgloc.ll 63 !12 = !DILocation(line: 3, column: 9, scope: !4)
64 !13 = !DILocation(line: 4, column: 9, scope: !14)
65 !14 = distinct !DILexicalBlock(scope: !4, file: !1, line: 4, column: 9)
66 !15 = !DILocation(line: 4, column: 11, scope: !14)
67 !16 = !DILocation(line: 4, column: 9, scope: !4)
68 !17 = !DILocation(line: 5, column: 13, scope: !14)
69 !18 = !DILocation(line: 5, column: 9, scope: !14)
70 !19 = !DILocation(line: 6, column: 7, scope: !4)
71 !20 = !DILocation(line: 7, column: 5, scope: !4)
72 !21 = !DILocation(line: 8, column: 1, scope: !4
    [all...]

Completed in 1350 milliseconds

1 2 3 4 56 7 8 91011>>