/external/eigen/failtest/ |
block_nonconst_ctor_on_const_xpr_2.cpp | 12 // row/column constructor
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
FilteringCursorWrapper.java | 101 public double getDouble(int column) { 102 return mCursor.getDouble(column); 106 public float getFloat(int column) { 107 return mCursor.getFloat(column); 111 public int getInt(int column) { 112 return mCursor.getInt(column); 116 public long getLong(int column) { 117 return mCursor.getLong(column); 121 public short getShort(int column) { 122 return mCursor.getShort(column); [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/content/ |
ThreadSafeCursorWrapper.java | 45 public String getString(int column) { 48 return super.getString(column); 53 public short getShort(int column) { 56 return super.getShort(column); 61 public int getInt(int column) { 64 return super.getInt(column); 69 public long getLong(int column) { 72 return super.getLong(column); 77 public float getFloat(int column) { 80 return super.getFloat(column); [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
wpagui.ui | 21 <item row="0" column="0" > 28 <item row="0" column="1" > 31 <item row="1" column="0" > 38 <item row="1" column="1" > 41 <item row="2" column="0" colspan="2" > 51 <item row="0" column="0" colspan="5" > 60 <item row="0" column="0" > 67 <item row="1" column="0" > 74 <item row="2" column="0" > 81 <item row="3" column="0" [all...] |
networkconfig.ui | 16 <item row="1" column="3" > 23 <item row="0" column="0" colspan="4" > 32 <item row="0" column="0" > 39 <item row="0" column="1" > 49 <item row="1" column="0" > 56 <item row="1" column="1" > 100 <item row="2" column="0" > 107 <item row="2" column="1" > 131 <item row="3" column="0" > 138 <item row="3" column="1" [all...] |
/external/autotest/frontend/migrations/ |
022_implement_sync_count.py | 2 ALTER TABLE jobs ADD COLUMN synchronizing tinyint(1) default NULL; 3 ALTER TABLE autotests ADD COLUMN synch_type smallint(6) NOT NULL; 6 ALTER TABLE jobs ADD COLUMN synch_type int(11) default NULL; 9 ALTER TABLE host_queue_entries DROP COLUMN `execution_subdir`; 14 manager.execute("""ALTER TABLE host_queue_entries ADD COLUMN 43 manager.execute('ALTER TABLE jobs DROP COLUMN synch_type') 44 manager.execute('ALTER TABLE autotests DROP COLUMN synch_type') 46 manager.execute('ALTER TABLE jobs DROP COLUMN synchronizing')
|
058_drone_management.py | 42 ADD COLUMN drone_set_id INT; 50 ADD COLUMN drone_set_id INT; 62 MODIFY COLUMN requested_by_id INT NOT NULL; 68 MODIFY COLUMN requested_by_id INT DEFAULT NULL; 74 DROP COLUMN drone_set_id; 80 DROP COLUMN drone_set_id;
|
/external/autotest/tko/migrations/ |
028_add_tests_jobs_foreign_key.py | 2 ALTER TABLE tests MODIFY COLUMN job_idx int(10) unsigned NOT NULL; 12 ALTER TABLE tests MODIFY COLUMN job_idx int(11) NOT NULL;
|
/external/eigen/doc/examples/ |
Tutorial_BlockOperations_colrow.cpp | 15 cout << "After adding 3 times the first column into the third column, the matrix m is:\n";
|
/external/skia/src/gpu/glsl/ |
GrGLSLUtil.h | 14 * Helper for converting SkMatrix to a column-major float array. We assume that all GLSL backends 15 * use a column major representation for matrices.
|
/external/webrtc/tools/matlab/ |
parseLog.m | 5 % filename, into a struct with each column name as a field, and with the 6 % column data stored as a vector in that field. 14 % parsed: A struct containing each column parsed from the input file 15 % as a field and with the column data stored as a vector in that 40 % Checking for a multi-value column. 43 % Parse a multi-value column 48 % Parse a single-value column 52 error('Empty column');
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
LinearLayoutGrid.java | 39 public Button getButtonAt(int column, int row) { 43 if (column < 0 || column > 2) { 44 throw new IllegalArgumentException("column out of range"); 46 return (Button) getColumn(column).getChildAt(row); 51 private LinearLayout getColumn(int column) { 52 switch (column) { 60 throw new IllegalArgumentException("column out of range");
|
/frameworks/ex/common/java/com/android/common/content/ |
ProjectionMap.java | 32 public Builder add(String column) { 33 mMap.putColumn(column, column); 43 for (String column : columns) { 44 add(column); 73 * Returns a sorted array of all column names in the projection map. 79 private void putColumn(String alias, String column) { 80 super.put(alias, column);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
BigMatrix.java | 27 * returns the element in the first row, first column of the matrix.</p> 130 * @param startColumn Initial column index 131 * @param endColumn Final column index 144 * @param selectedColumns Array of column indices. 147 * @exception MatrixIndexException if row or column selections are not valid 163 * Returns the entries in column number <code>column</code> 164 * as a column matrix. Column indices start at 0. 166 * @param column the column to be fetche [all...] |
/libcore/ojluni/src/main/java/javax/sql/ |
RowSetMetaData.java | 59 * Sets whether the designated column is automatically numbered, 63 * @param columnIndex the first column is 1, the second is 2, ... 64 * @param property <code>true</code> if the column is automatically 72 * Sets whether the designated column is case sensitive. 75 * @param columnIndex the first column is 1, the second is 2, ... 76 * @param property <code>true</code> if the column is case sensitive; 84 * Sets whether the designated column can be used in a where clause. 87 * @param columnIndex the first column is 1, the second is 2, ... 88 * @param property <code>true</code> if the column can be used in a 96 * Sets whether the designated column is a cash value [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
JSilverAutoEscapingException.java | 26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) { 27 super(createMessage(message, templateName, line, column)); 37 private static String createMessage(String message, String resourceName, int line, int column) { 45 if (column != UNKNOWN_POSITION) { 46 result.append(" column=").append(column);
|
/external/bison/src/ |
location.c | 32 INT_MAX) to COLUMN; otherwise, add mbsnwidth (BUF, BUFSIZE, 0) to 33 COLUMN. If an overflow occurs, or might occur but is undetectable, 34 return INT_MAX. Assume COLUMN is nonnegative. */ 37 add_column_width (int column, char const *buf, size_t bufsize) 40 unsigned int remaining_columns = INT_MAX - column; 51 return width <= remaining_columns ? column + width : INT_MAX; 61 int column = cur->column; local 73 column = 1; 78 column = add_column_width (column, p0, p - p0) [all...] |
/external/javasqlite/src/main/java/SQLite/ |
Stmt.java | 172 * Retrieve integer column from exec'ed SQLite3 statement. 173 * @param col column number, 0-based 174 * @return int column value 180 * Retrieve long column from exec'ed SQLite3 statement. 181 * @param col column number, 0-based 182 * @return long column value 187 * Retrieve double column from exec'ed SQLite3 statement. 188 * @param col column number, 0-based 189 * @return double column value 194 * Retrieve blob column from exec'ed SQLite3 statement 227 public Object column(int col) throws SQLite.Exception { method in class:Stmt [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/testclient/ |
fusiontables_v1_messages.py | 13 class Column(_messages.Message): 15 """Specifies the id, name and type of a column in a table. 18 BaseColumnValue: Optional identifier of the base column. If present, this 19 column is derived from the specified base column. 22 baseColumn: Optional identifier of the base column. If present, this 23 column is derived from the specified base column. 24 columnId: Identifier for the column. 25 description: Optional column description [all...] |
/external/clang/bindings/python/tests/cindex/ |
test_location.py | 10 def assert_location(loc, line, column, offset): 12 assert loc.column == column 23 assert_location(one.location,line=1,column=5,offset=4) 24 assert_location(two.location,line=2,column=5,offset=13) 34 assert_location(one.location,line=2,column=5,offset=5) 35 assert_location(two.location,line=3,column=5,offset=14) 37 # adding a space should affect column on first line only 42 assert_location(one.location,line=1,column=6,offset=5) 43 assert_location(two.location,line=2,column=5,offset=14 [all...] |
/external/autotest/frontend/client/src/autotest/common/ui/ |
RightClickTable.java | 19 int column; field in class:RightClickTable.RowColumn 21 public RowColumn(int row, int column) { 23 this.column = column; 52 return new HTMLTable.Cell(position.row, position.column) { 64 int column = DOM.getChildIndex(tr, td); 65 return new RowColumn(row, column);
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/ |
SimpleKey.java | 33 private int column; field in class:SimpleKey 36 public SimpleKey(int tokenNumber, boolean required, int index, int line, int column, Mark mark) { 41 this.column = column; 50 return this.column; 72 + index + " line=" + line + " column=" + column;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/ |
mock_test.py | 15 client_class.column.List.Expect(request=1, response=2) 17 self.assertEqual(client.column.List(1), 2) 19 client.column.List(3) 23 client_class.column.List.Expect( 28 client.column.List(1) 32 client_class.column.List.Expect(request=1, response=2) 33 client_class.column.List.Expect(request=2, response=1) 35 self.assertEqual(client.column.List(1), 2) 36 self.assertEqual(client.column.List(2), 1) 40 client_class.column.List.Expect(request=1, response=2 [all...] |
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_DataMatrixBitMatrixParser.cpp | 75 int32_t column = 0;
local 83 if ((row == numRows) && (column == 0) && !corner1Read) {
86 column += 2;
88 } else if ((row == numRows - 2) && (column == 0) &&
92 column += 2;
94 } else if ((row == numRows + 4) && (column == 2) &&
98 column += 2;
100 } else if ((row == numRows - 2) && (column == 0) &&
104 column += 2;
108 if ((row < numRows) && (column >= 0) && [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
EntrySchema.java | 51 // Get table and column metadata from reflection. 62 ColumnInfo column = columns[i]; local 63 projection[i] = column.name; 64 if (column.fullText) { 86 for (ColumnInfo column : mColumnInfo) { 87 if (column.name.equals(columnName)) { 88 return column.projectionIndex; 105 for (ColumnInfo column : mColumnInfo) { 106 int columnIndex = column.projectionIndex; 107 Field field = column.field 251 ColumnInfo column = getColumn(columnName); local [all...] |