/external/llvm/test/Transforms/SampleProfile/ |
gcc-simple.ll | 165 !18 = !DILocation(line: 3, column: 24, scope: !4) 166 !19 = !DILocation(line: 4, column: 7, scope: !20) 167 !20 = distinct !DILexicalBlock(scope: !4, file: !1, line: 4, column: 7) 168 !21 = !DILocation(line: 4, column: 14, scope: !20) 169 !22 = !DILocation(line: 4, column: 7, scope: !4) 170 !23 = !DILocation(line: 4, column: 21, scope: !24) 172 !25 = !DILocation(line: 4, column: 40, scope: !26) 174 !27 = distinct !DILexicalBlock(scope: !20, file: !1, line: 4, column: 40) 175 !28 = !DILocation(line: 4, column: 47, scope: !27) 176 !29 = !DILocation(line: 4, column: 40, scope: !20 [all...] |
branch.ll | 178 !18 = !DILocation(line: 4, column: 15, scope: !6) 180 !20 = !DILocation(line: 4, column: 27, scope: !6) 181 !21 = !DILocation(line: 5, column: 8, scope: !22) 182 !22 = distinct !DILexicalBlock(scope: !6, file: !1, line: 5, column: 8) 183 !23 = !DILocation(line: 5, column: 13, scope: !22) 184 !24 = !DILocation(line: 5, column: 8, scope: !6) 185 !25 = !DILocation(line: 6, column: 6, scope: !22) 187 !27 = !DILocation(line: 7, column: 11, scope: !6) 189 !29 = !DILocation(line: 8, column: 8, scope: !6) 190 !30 = !DILocation(line: 8, column: 21, scope: !6 [all...] |
/external/v8/test/mjsunit/ |
debug-sourceinfo.js | 69 // This is the last column of last line (note: starting at 0 and +1, due 102 // column progresses as expected. 105 var column; variable 111 assertEquals(column + 1, location.column); 114 assertEquals(0, location.column); 119 assertEquals(0, location.column); 125 column = location.column; 132 for (column = 0; column < line_length_d; column++) [all...] |
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 40 // column index for our query 41 int column; field in class:MtpPropertyGroup.Property 43 Property(int code, int type, int column) { 46 this.column = column; 90 String column = null; local 95 column = Files.FileColumns.STORAGE_ID; 99 column = Files.FileColumns.FORMAT; 107 column = Files.FileColumns.SIZE; 111 column = Files.FileColumns.DATA 357 int column = property.column; local [all...] |
/libcore/ojluni/src/main/java/java/sql/ |
ResultSet.java | 68 * for retrieving column values from the current row. 70 * column or the name of the column. In general, using the 71 * column index will be more efficient. Columns are numbered from 1. 73 * read in left-to-right order, and each column should be read only once. 81 * <P>Column names used as input to getter methods are case 83 * a column name and several columns have the same name, 84 * the value of the first matching column will be returned. 85 * The column name option is 86 * designed to be used when column names are used in the SQ [all...] |
/external/cblas/examples/ |
cblas_example1.c | 19 m = 4; /* Size of Column ( the number of rows ) */ 30 /* The elements of the first column */ 35 /* The elements of the second column */ 40 /* The elements of the third column */ 45 /* The elements of the fourth column */
|
/external/llvm/test/CodeGen/X86/ |
2010-09-16-EmptyFilename.ll | 26 !8 = !DILocation(line: 53, column: 13, scope: !9) 27 !9 = distinct !DILexicalBlock(line: 53, column: 11, file: !14, scope: !0) 28 !10 = !DILocation(line: 4, column: 13, scope: !11) 29 !11 = distinct !DILexicalBlock(line: 4, column: 13, file: !15, scope: !12) 30 !12 = distinct !DILexicalBlock(line: 4, column: 11, file: !15, scope: !6)
|
/external/llvm/test/Transforms/LoopReroll/ |
reroll_with_dbg.ll | 104 !16 = distinct !DILexicalBlock(scope: !4, file: !1, line: 2, column: 3) 111 !23 = !DILocation(line: 1, column: 27, scope: !4) 112 !24 = !DILocation(line: 1, column: 47, scope: !4) 113 !25 = !DILocation(line: 1, column: 54, scope: !4) 114 !26 = !DILocation(line: 2, column: 11, scope: !16) 115 !27 = !DILocation(line: 2, column: 20, scope: !28) 116 !28 = distinct !DILexicalBlock(scope: !16, file: !1, line: 2, column: 3) 117 !29 = !DILocation(line: 2, column: 3, scope: !16) 118 !30 = !DILocation(line: 3, column: 12, scope: !31) 119 !31 = distinct !DILexicalBlock(scope: !28, file: !1, line: 2, column: 31 [all...] |
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_SupernodalMatrix.h | 86 * Return the array of nonzero values packed by column 97 * Return the pointers to the beginning of each column in \ref valuePtr() 120 * Return the location in \em rowvaluePtr() which starts each column 130 * Return the array of column-to-supernode mapping 139 * Return the array of supernode-to-column mapping 167 Scalar* m_nzval; //array of nonzero values packed by column 168 Index* m_nzval_colptr; //nzval_colptr[j] Stores the location in nzval[] which starts column j 170 Index* m_rowind_colptr; //rowind_colptr[j] stores the location in rowind[] which starts column j 171 Index* m_col_to_sup; // col_to_sup[j] is the supernode number to which column j belongs 172 Index* m_sup_to_col; //sup_to_col[s] points to the starting column of the s-th supernod [all...] |
/external/clang/tools/libclang/ |
CXSourceLocation.cpp | 124 unsigned column) { 131 if (line == 0 || column == 0) 138 SourceLocation SLoc = CXXUnit->getLocation(File, line, column); 142 File->getName(), line, column); 149 *Log << llvm::format("(\"%s\", %d, %d) = ", File->getName(), line, column) 184 unsigned *column, unsigned *offset) { 189 if (column) 190 *column = 0; 197 unsigned *column, unsigned *offset = nullptr) { 202 if (column) [all...] |
/development/samples/XmlAdapters/res/values/ |
attrs.xml | 33 <!-- The name of the column to bind from. Mandatory. --> 42 <li>string, The content of the column is interpreted as a string.</li> 43 <li>image, The content of the column is interpreted as a blob describing an image.</li> 44 <li>image-uri, The content of the column is interpreted as a URI to an image.</li> 45 <li>drawable, The content of the column is interpreted as a resource id to a drawable.</li> 55 <!-- The name of the column to select. Mandatory. --> 56 <attr name="column" format="string" /> 61 <!-- The original value from the column. Mandatory. --> 63 <!-- The new value from the column. Mandatory. -->
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
PhotoPagerAdapter.java | 87 for(String column : PhotoQuery.PROJECTION) { 88 mColumnIndices.put(column, newCursor.getColumnIndexOrThrow(column)); 91 for(String column : PhotoQuery.OPTIONAL_COLUMNS) { 92 int index = newCursor.getColumnIndex(column); 94 mColumnIndices.put(column, index); 127 private String getString(Cursor cursor, String column) { 128 if (mColumnIndices.containsKey(column)) { 129 return cursor.getString(mColumnIndices.get(column));
|
/external/elfutils/libdw/ |
dwarf_getsrc_file.c | 1 /* Find line information for given file/line/column triple. 43 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, 81 file and line/column number. If any of the numbers is zero, 108 /* See whether line and possibly column match. */ 111 || (column != 0 && column > line->column))) 124 || (column != 0 125 && (match[inner]->column != line->column [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/ |
CounterColumn.java | 30 * Column that prints the counter values of entities for each item and a summary 31 * in the footer. If the total number of items is zero, no column is emitted at 37 * Creates a new column that shows the total count for the given entity. 40 * counter entity for this column 43 * @return column instance 57 * Creates a new column that shows the missed count for the given entity. 60 * counter entity for this column 63 * @return column instance 77 * Creates a new column that shows the covered count for the given entity. 80 * counter entity for this column [all...] |
/external/llvm/lib/Support/ |
FormattedStream.cpp | 22 /// column we end up in after output, and how many line breaks are contained. 25 unsigned &Column = Position.first; 28 // Keep track of the current column and line by scanning the string for 31 ++Column; 36 Column = 0; 40 Column += (8 - (Column & 0x7)) & 0x7; 46 /// ComputePosition - Examine the current output and update line and column 54 // column. 63 /// PadToColumn - Align the output to some column number [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
AbstractKeyboardBuilder.java | 26 * and a column number, both numbers starts from 1. 112 * @param column the column number to set or insert the <code>element</code>. 113 * @param element the element to set or insert at <code>row,column</code>. 114 * @param insert if true, the <code>element</code> is inserted at <code>row,column</code>. 115 * Otherwise the <code>element</code> replace the element at <code>row,column</code>. 116 * @throws RuntimeException if <code>row</code> or <code>column</code> is illegal. 118 void setElementAt(final int row, final int column, final E element, final boolean insert) { 120 final int columnIndex = column - 1; 122 throw new RuntimeException("Illegal column number: " + column) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
OpenMapRealMatrix.java | 45 * Build a sparse matrix with the supplied row and column dimensions. 226 public double getEntry(int row, int column) throws MatrixIndexException { 228 MatrixUtils.checkColumnIndex(this, column); 229 return entries.get(computeKey(row, column)); 240 public void setEntry(int row, int column, double value) 243 MatrixUtils.checkColumnIndex(this, column); 245 entries.remove(computeKey(row, column)); 247 entries.put(computeKey(row, column), value); 253 public void addToEntry(int row, int column, double increment) 256 MatrixUtils.checkColumnIndex(this, column); [all...] |
/frameworks/base/core/java/com/android/internal/database/ |
SortCursor.java | 185 public String getString(int column) 187 return mCursor.getString(column); 191 public short getShort(int column) 193 return mCursor.getShort(column); 197 public int getInt(int column) 199 return mCursor.getInt(column); 203 public long getLong(int column) 205 return mCursor.getLong(column); 209 public float getFloat(int column) 211 return mCursor.getFloat(column); [all...] |
/packages/apps/Music/src/com/android/music/ |
SortCursor.java | 185 public String getString(int column) 187 return mCursor.getString(column); 191 public short getShort(int column) 193 return mCursor.getShort(column); 197 public int getInt(int column) 199 return mCursor.getInt(column); 203 public long getLong(int column) 205 return mCursor.getLong(column); 209 public float getFloat(int column) 211 return mCursor.getFloat(column); [all...] |
/external/autotest/frontend/migrations/ |
103_add_5_columns_to_tko_jobs.py | 3 ADD COLUMN (afe_parent_job_id INT default NULL, 89 DROP COLUMN afe_parent_job_id, 90 DROP COLUMN build, 91 DROP COLUMN build_version, 92 DROP COLUMN suite, 93 DROP COLUMN board;
|
/external/llvm/test/CodeGen/ARM/ |
debug-info-s16-reg.ll | 96 !23 = distinct !DILexicalBlock(line: 18, column: 1, file: !51, scope: !7) 97 !24 = !DILocation(line: 4, column: 22, scope: !0) 98 !25 = !DILocation(line: 4, column: 33, scope: !0) 99 !26 = !DILocation(line: 4, column: 52, scope: !0) 100 !27 = !DILocation(line: 6, column: 3, scope: !28) 101 !28 = distinct !DILexicalBlock(line: 5, column: 1, file: !51, scope: !0) 102 !29 = !DILocation(line: 7, column: 3, scope: !28) 103 !30 = !DILocation(line: 11, column: 42, scope: !6) 104 !31 = !DILocation(line: 11, column: 53, scope: !6) 105 !32 = !DILocation(line: 11, column: 72, scope: !6 [all...] |
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/ |
PhotoContract.java | 27 * This column is a {@link Uri} that can be queried 32 * This column is a {@link String} that can be queried for this 37 * This column is a {@link Uri} that points to the downloaded local file. 42 * This column is a {@link Uri} that points to a thumbnail of the image 48 * This string column is the MIME type. 52 * This boolean column indicates that a loading indicator should display permanently
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
GLTracePerspective.java | 34 // Create a 3 column layout 35 // The first column contains the function trace in an editor. 36 // The second column contains the GL State View. 37 // The third column contains the texture view and the top and the framebuffer at the bottom. 44 // Add the Texture View in the 3rd column 49 // Add the OpenGL Framebuffer view below the texture view (bottom of 3rd column)
|
/external/bison/data/ |
location.cc | 48 , column (c) 60 column = c; 63 /** \name Line and Column related manipulators 68 column = ]b4_location_initial_column[u; 72 /// (column related) Advance to the COUNT next columns. 75 column = std::max (]b4_location_initial_column[u, column + count); 83 /// Current column number. 84 unsigned int column; 122 && pos1.column == pos2.colum [all...] |
/external/llvm/test/CodeGen/AArch64/ |
aarch64-2014-08-11-MachineCombinerCrash.ll | 83 !39 = !DILocation(line: 154, column: 8, scope: !40) 84 !40 = distinct !DILexicalBlock(line: 154, column: 8, file: !1, scope: !41) 85 !41 = distinct !DILexicalBlock(line: 154, column: 8, file: !1, scope: !42) 86 !42 = distinct !DILexicalBlock(line: 154, column: 3, file: !1, scope: !4) 87 !43 = !DILocation(line: 157, column: 5, scope: !44) 88 !44 = distinct !DILexicalBlock(line: 154, column: 42, file: !1, scope: !42) 89 !45 = !DILocation(line: 159, column: 5, scope: !44) 94 !50 = !DILocation(line: 160, column: 5, scope: !44) 95 !51 = !DILocation(line: 161, column: 5, scope: !44) 96 !52 = !DILocation(line: 188, column: 5, scope: !44 [all...] |