/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
SearchDialogBase.py | 54 l.grid(row=self.row, column=0, sticky="nw") 56 e.grid(row=self.row, column=1, sticky="nwe") 63 l.grid(row=self.row, column=0, sticky="nw") 65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe") 74 b.grid(pady=1,row=rows,column=0,sticky="ew") 137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
SearchDialogBase.py | 54 l.grid(row=self.row, column=0, sticky="nw") 56 e.grid(row=self.row, column=1, sticky="nwe") 63 l.grid(row=self.row, column=0, sticky="nw") 65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe") 74 b.grid(pady=1,row=rows,column=0,sticky="ew") 137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridMatch.java | 35 /** Row or column for the match */ 38 /** If true, create a new row/column */ 54 * @param cellIndex the index of the row or column we matched with 96 return String.format("Insert into column %1$d", cellIndex + 1); 102 return String.format("Add next to column %1$d", cellIndex + 1); 107 return String.format("Insert right-aligned into column %1$d", cellIndex + 1);
|
GridLayoutPainter.java | 69 for (int column = 0; column < grid.actualColumnCount; column++) { 70 int x = grid.getColumnX(column); 276 for (int column = 1; column < grid.actualColumnCount; column++) { 277 int x = grid.getColumnX(column); 287 int column = columnMatch.cellIndex; local 292 Rect cellBounds = grid.getCellBounds(row, column, 1, 1) [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
eh5.d | 16 Return address column: .* 35 Return address column: .* 59 Return address column: .* 80 Return address column: .* 95 Return address column: .* 117 Return address column: .*
|
/frameworks/base/telephony/java/android/telephony/ |
SubscriptionManager.java | 98 * TelephonyProvider unique key column name is the subscription id. 105 * TelephonyProvider column name for SIM ICC Identifier 112 * TelephonyProvider column name for user SIM_SlOT_INDEX 123 * TelephonyProvider column name for user displayed name. 130 * TelephonyProvider column name for the service provider name for the SIM. 143 * TelephonyProvider column name for source of the user displayed name. 175 * TelephonyProvider column name for the color of a SIM. 197 * TelephonyProvider column name for the phone number of a SIM. 204 * TelephonyProvider column name for the number display format of a SIM. 223 * TelephonyProvider column name for permission for data roaming of a SIM [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-streams.rb | 27 @stream.column.should == 1 32 @stream.column.should == 2 37 @stream.column.should == 0 42 @stream.column.should == 1 47 @stream.column.should == 2 52 @stream.column.should == 3 57 @stream.column.should == 4 62 @stream.column.should == 0 67 @stream.column.should == 0 72 @stream.column.should == [all...] |
/external/bzip2/ |
bz-fo.xsl | 131 keep-together.within-column="always" 132 keep-with-next.within-column="always"> 158 <fo:table-column column-number="1" column-width="80%"/> 159 <fo:table-column column-number="2" column-width="20%"/> 216 <fo:table-column column-number="1" column-width="40%"/ [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
error.rb | 107 attr_accessor :input, :index, :line, :column, :symbol, :token, :source_name 110 @index = @line = @column = nil 119 @column = @symbol.column 123 @column = @input.column 126 if @symbol.respond_to?( :line ) and @symbol.respond_to?( :column ) 127 @line, @column = @symbol.line, @symbol.column 133 if @symbol.respond_to?( :line ) and @symbol.respond_to?( :column ) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
Array2DRowRealMatrix.java | 49 * returns the element in the first row, first column of the matrix.</li></ul> 69 * Create a new RealMatrix with the supplied row and column dimensions. 73 * @throws IllegalArgumentException if row or column dimension is not 144 * Create a new (column) RealMatrix using <code>v</code> as the 145 * data for the unique column of the <code>v.length x 1</code> matrix 149 * @param v column vector holding data for new matrix 315 public void setSubMatrix(final double[][] subMatrix, final int row, final int column) 322 if (column > 0) { 324 LocalizedFormats.FIRST_COLUMNS_NOT_INITIALIZED_YET, column); 343 System.arraycopy(subMatrix[i], 0, data[i + row], column, nCols) [all...] |
RealMatrixImpl.java | 49 * returns the element in the first row, first column of the matrix.</li></ul> 71 * Create a new RealMatrix with the supplied row and column dimensions. 75 * @throws IllegalArgumentException if row or column dimension is not 145 * Create a new (column) RealMatrix using <code>v</code> as the 146 * data for the unique column of the <code>v.length x 1</code> matrix 150 * @param v column vector holding data for new matrix 316 public void setSubMatrix(final double[][] subMatrix, final int row, final int column) 324 if (column > 0) { 327 column); 345 System.arraycopy(subMatrix[i], 0, data[i + row], column, nCols) [all...] |
/external/eigen/Eigen/src/SparseLU/ |
SparseLU.h | 57 * \warning The input matrix A should be in a \b compressed and \b column-major form. 65 * \tparam _MatrixType The type of the sparse matrix. It must be a column-major SparseMatrix<> 110 * The input matrix should be in column-major storage. 158 * \returns a reference to the column matrix permutation\f$ P_c^T \f$ such that \f$P_r A P_c^T = L U\f$ 382 PermutationType m_perm_c; // Column permutation 384 IndexVector m_etree; // Column elimination tree 405 * Compute the column permutation to minimize the fill-in 409 * - Compute the column elimination tree on the permuted matrix 411 * - Postorder the elimination tree and the column permutation 423 // Apply the permutation to the column of the input matri [all...] |
/external/guava/guava/src/com/google/common/collect/ |
StandardTable.java | 46 * column key / value secondary maps. This class provides rapid access to 47 * records by the row key alone or by both keys, but not by just the column key. 49 * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link 54 * <p>Lookups by row key are often faster than lookups by column key, because 56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is 57 * provided. However, {@code column(columnKey).size()} takes longer, since an 160 private Map<R, V> removeColumn(Object column) { 166 V value = entry.getValue().remove(column); 182 /** Remove a row key / column key / value mapping, if present. */ 213 * <p>Each cell is an immutable snapshot of a row key / column key / valu [all...] |
TreeBasedTable.java | 40 * Implementation of {@code Table} whose row keys and column keys are ordered 43 * the column keys, or you may use natural ordering for both. 49 * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link 54 * <p>Lookups by row key are often faster than lookups by column key, because 56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is 57 * provided. However, {@code column(columnKey).size()} takes longer, since an 97 * of both row and column keys. 115 * @param columnComparator the comparator that orders the column keys 163 // TODO(user): make column return a SortedMap 312 * Overridden column iterator to return columns values in globally sorte [all...] |
/prebuilts/go/darwin-x86/src/database/sql/ |
fakedb_test.go | 233 func (db *fakeDB) columnType(table, column string) (typ string, ok bool) { 241 if cname == column { 377 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n) 379 column, value := nameVal[0], nameVal[1] 380 _, ok := c.db.columnType(stmt.table, column) 383 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column) 387 return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark", 388 stmt.table, column) 390 stmt.whereCol = append(stmt.whereCol, column) [all...] |
/prebuilts/go/linux-x86/src/database/sql/ |
fakedb_test.go | 233 func (db *fakeDB) columnType(table, column string) (typ string, ok bool) { 241 if cname == column { 377 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n) 379 column, value := nameVal[0], nameVal[1] 380 _, ok := c.db.columnType(stmt.table, column) 383 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column) 387 return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark", 388 stmt.table, column) 390 stmt.whereCol = append(stmt.whereCol, column) [all...] |
/external/llvm/utils/TableGen/ |
CodeGenMapTable.cpp | 50 // to determine the column they belong to, if any. 73 // it can specify multi-column relationships). For each column, find the 74 // instruction from the group that matches all the values for the column. 115 // in a column of the relation table. Ex: ColFields = 'predSense' 123 // each column in the relation table. 126 // table. First column requires all the instructions to have predSense 127 // set to 'true' and second column requires it to be 'false'. 130 // Each instruction map must specify at least one column for it to be valid. 214 // Find column instruction corresponding to a key instruction based on th [all...] |
/external/clang/lib/Frontend/ |
TextDiagnostic.cpp | 177 /// characters will appear at (numbering the first column as 0). 180 /// character) then the array will map that byte to the first column the 186 /// column while the subsequent bytes will be -1. 221 /// that column. This is the inverse of the mapping produced by byteToColumn() 271 /// \brief Map a byte to the column which it is at the start of, or return -1 272 /// if it is not at the start of a column (for a UTF-8 trailing byte). 278 /// \brief Map a byte to the first column which contains it. 286 /// \brief Map a column to the byte which starts the column, or return -1 if 287 /// the column the second or subsequent column of an expanded tab or simila [all...] |
/external/clang/test/Index/ |
overriding-ftemplate-comments.cpp | 16 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@>1#Tcomment_to_html_conversion_17#t0.0#v#</USR><Declaration>template <typename T> void comment_to_html_conversion_17(T AAA)</Declaration><Parameters><Parameter><Name>AAA</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>] 21 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@>1#Tcomment_to_html_conversion_17#t0.0#v#</USR><Declaration>template <typename T> void comment_to_html_conversion_17(T PPP)</Declaration><Parameters><Parameter><Name>PPP</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>] 30 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@>2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#v#</USR><Declaration>template <typename AAA, typename BBB>\nvoid comment_to_html_conversion_19(AAA aaa, BBB bbb)</Declaration><TemplateParameters><Parameter><Name>AAA</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>BBB</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter></TemplateParameters></Function>] 35 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@>2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#v#</USR><Declaration>template <typename PPP, typename QQQ>\nvoid comment_to_html_conversion_19(PPP aaa, QQQ bbb)</Declaration><TemplateParameters><Parameter><Name>PPP</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>QQQ</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter></TemplateParameters></Function>] 46 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_20</Name><USR>c:@FT@>3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#v#</USR><Declaration>template <typename AAA, typename BBB, int CCC>\nvoid comment_to_html_conversion_20(AAA aaa, BBB bbb)</Declaration><TemplateParameters><Parameter><Name>AAA</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>BBB</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>CCC</Name><Index>2</Index><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>UUU</Name><Discussion><Para> Zzz </Para></Discussion></Parameter></TemplateParameters></Function>] 51 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_20</Name><USR>c:@FT@>3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#v#</USR><Declaration>template <typename PPP, typename QQQ, int RRR>\nvoid comment_to_html_conversion_20(PPP aaa, QQQ bbb)</Declaration><TemplateParameters><Parameter><Name>PPP</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>QQQ</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>RRR</Name><Index>2</Index><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>UUU</Name><Discussion><Para> Zzz </Para></Discussion></Parameter></TemplateParameters></Function>] 62 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_21</Name><USR>c:@FT@>1#t>2#t>1#T#Tcomment_to_html_conversion_21#v#</USR><Declaration>template <template <template <typename CCC> class DDD, class BBB> class AAA>\nvoid comment_to_html_conversion_21()</Declaration><TemplateParameters><Parameter><Name>AAA</Name><Index>0</Index><Discussion><Para> Aaa </Para></Discussion></Parameter><Parameter><Name>BBB</Name><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>CCC</Name><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>DDD</Name><Discussion><Para> Ddd</Para></Discussion></Parameter></TemplateParameters></Function>] 67 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_21</Name><USR>c:@FT@>1#t>2#t>1#T#Tcomment_to_html_conversion_21#v#</USR><Declaration>template <template <template <typename RRR> class SSS, class QQQ> class PPP>\nvoid comment_to_html_conversion_21()</Declaration><TemplateParameters><Parameter><Name>PPP</Name><Index>0</Index><Discussion><Para> Aaa </Para></Discussion></Parameter><Parameter><Name>QQQ</Name><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>RRR</Name><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>SSS</Name><Discussion><Para> Ddd</Para></Discussion></Parameter></TemplateParameters></Function>] 80 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_22</Name><USR>c:@FT@>2#T#t>2#T#t>2#T#Tcomment_to_html_conversion_22#v#</USR><Declaration>template <class C1, template <class C2, template <class C3, class C4> class BBB>\n class AAA>\nvoid comment_to_html_conversion_22()</Declaration><TemplateParameters><Parameter><Name>C1</Name><Index>0</Index><Discussion><Para> Ccc 1 </Para></Discussion></Parameter><Parameter><Name>AAA</Name><Index>1</Index><Discussion><Para> Zzz </Para></Discussion></Parameter><Parameter><Name>C2</Name><Discussion><Para> Ccc 2 </Para></Discussion></Parameter><Parameter><Name>C3</Name><Discussion><Para> Ccc 3 </Para></Discussion></Parameter><Parameter><Name>C4</Name><Discussion><Para> Ccc 4 </Para></Discussion></Parameter><Parameter><Name>BBB</Name><Discussion><Para> Bbb</Para></Discussion></Parameter></TemplateParameters></Function>] 85 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_22</Name><USR>c:@FT@>2#T#t>2#T#t>2#T#Tcomment_to_htm (…) [all...] |
/external/llvm/docs/ |
HowToUseInstrMappings.rst | 46 // in a column of the relation table. 55 // each column in the relation table. These are the instructions a key 89 // List of attributes that can be used to define key and column instructions 91 // to the function used for querying relation tables. Column instructions 95 // attribute of the key (non-predicated) and column (true/false) 99 // The key column contains non-predicated instructions. 102 // Two value columns - first column contains instructions with 103 // PredSense=true while second column has instructions with PredSense=false. 172 ``PredSense`` is used to determine their column positions by comparing its value 175 a column in the relation table [all...] |
/frameworks/base/core/java/android/hardware/camera2/params/ |
ColorSpaceTransform.java | 103 * column {@code j}.</p> 126 * Get an element of this matrix by its row and column. 129 * and the column must be within the range [0, 3).</p> 133 * @throws IllegalArgumentException if column or row was out of range 135 public Rational getElement(int column, int row) { 136 if (column < 0 || column >= COLUMNS) { 137 throw new IllegalArgumentException("column out of range"); 142 int numerator = mElements[(row * COLUMNS + column) * RATIONAL_SIZE + OFFSET_NUMERATOR]; 143 int denominator = mElements[(row * COLUMNS + column) * RATIONAL_SIZE + OFFSET_DENOMINATOR] [all...] |
/development/samples/NotePad/tests/src/com/example/android/notepad/ |
NotePadProviderTest.java | 152 NotePad.Notes.COLUMN_NAME_TITLE, // column set to null if empty values map 423 // Defines a projection of column names to return for a query 430 // Defines a selection column for the query. When the selection columns are passed 498 // criteria. Use a projection so that it's easy to get the data in a particular column. 502 SELECTION_COLUMNS, // select on the title column 504 SORT_ORDER // sort ascending on the title column 515 // the title column (column 0) in the current record of the cursor 532 // Defines the selection column for a query. The "?" is replaced by entries in the 536 // Defines the argument for the selection column [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
memory_dump_sub_view_util.html | 27 * A table column for displaying memory dump row titles. 128 * Abstract table column for displaying memory dump data. 148 * columns. The column with the highest importance will be first in the 150 * columnConstructor: Mandatory memory column constructor. 172 * Given a name of a cell, the corresponding column constructor and 174 * column's name. For example, given a cell with name 'inner_size', the 175 * corresponding column will be constructed using CustomNumericMemoryColumn 186 * must be exact so a column named 'page_size2' would not match the 223 var column = new constructor(cellName, cellPath, aggregationMode); 226 column: colum [all...] |
/external/clang/lib/Format/ |
ContinuationIndenter.cpp | 75 State.Column = FirstIndent; 128 if (Current.is(TT_FunctionDeclarationName) && State.Column < 6) { 158 getLengthToMatchingParen(Previous) + State.Column - 1 > 162 (State.Column + State.Line->Last->TotalLength - Current.TotalLength + 2 > 173 if (State.Column < NewLineColumn) 269 // If there is a newline within this token, the final column will solely 270 // determined by the current end column. 271 State.Column = EndColumn; 276 State.Column += EndColumn - StartColumn; 298 State.Stack.back().VariablePos = State.Column; [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
TableRow_LayoutParamsTest.java | 61 assertEquals(-1, layoutParams.column); 69 assertEquals(-1, layoutParams.column); 74 assertEquals(-1, layoutParams.column); 78 assertEquals(5, layoutParams.column); 84 assertEquals(0, layoutParams.column); 90 assertEquals(0, layoutParams.column); 99 assertEquals(1, layoutParams.column);
|