/external/toolchain-utils/cros_utils/ |
tabulator.py | 36 columns = [Column(LiteralResult(), 39 Column(AmeanResult(), 41 Column(StdResult(), 43 Column(CoeffVarResult(), 45 Column(NonEmptyCountResult(), 47 Column(AmeanRatioResult(), 49 Column(AmeanRatioResult(), 51 Column(GmeanRatioResult(), 53 Column(PValueResult(), 552 """A class that represents the format of a column."" [all...] |
/external/python/cpython3/Lib/ |
tokenize.py | 13 the starting (row, column) indices of the token (a 2-tuple of ints) 14 the ending (row, column) indices of the token (a 2-tuple of ints) 475 column where the token begins in the source; a 2-tuple (erow, ecol) of 476 ints specifying the row and column where the token ends in the source; 544 column = 0 547 column += 1 549 column = (column//tabsize + 1)*tabsize 551 column = 0 571 if column > indents[-1]: # count indents or dedent [all...] |
/prebuilts/go/darwin-x86/src/database/sql/ |
fakedb_test.go | 163 Column string 318 func (db *fakeDB) columnType(table, column string) (typ string, ok bool) { 326 if cname == column { 503 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n) 505 column, value := nameVal[0], nameVal[1] 506 _, ok := c.db.columnType(stmt.table, column) 509 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column) 513 return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark", 514 stmt.table, column) [all...] |
/prebuilts/go/linux-x86/src/database/sql/ |
fakedb_test.go | 163 Column string 318 func (db *fakeDB) columnType(table, column string) (typ string, ok bool) { 326 if cname == column { 503 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n) 505 column, value := nameVal[0], nameVal[1] 506 _, ok := c.db.columnType(stmt.table, column) 509 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column) 513 return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark", 514 stmt.table, column) [all...] |
/external/clang/tools/c-index-test/ |
c-index-test.c | 669 unsigned line, column; local 704 clang_getSpellingLocation(Loc, 0, &line, &column, 0); 705 printf("%d:%d", line, column); 710 clang_getSpellingLocation(Loc, 0, &line, &column, 0); 711 printf(":%d:%d", line, column); 834 clang_getSpellingLocation(Loc, 0, &line, &column, 0); 836 clang_getCString(Name), line, column); 875 clang_getSpellingLocation(Loc, 0, &line, &column, 0); 877 lineCols[I].col = column; 1100 unsigned line, column; local 1227 unsigned line, column; local 2155 unsigned column; local 2286 unsigned column; member in struct:__anon17008 2395 unsigned line, column; local 2500 unsigned line, column; local 2537 unsigned line, column; local 2862 unsigned line, column; local 2908 unsigned line, column; local 3580 unsigned column, second_column; local 4093 unsigned line, column, offset; local 4150 unsigned line, column, offset; local [all...] |
/art/compiler/debug/dwarf/ |
debug_line_opcode_writer.h | 79 void SetColumn(int column) { 81 this->PushUleb128(column);
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
ContactsContract_DirectoryTest.java | 65 private static String getString(Cursor c, String column) { 66 return c.getString(c.getColumnIndex(column)); 127 // The result is stored in the display_name column.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
AdamsNordsieckTransformer.java | 180 public BigFraction visit(int row, int column, BigFraction value) { 181 return ((column & 0x1) == 0x1) ? value : value.negate();
|
/external/guava/guava/src/com/google/common/collect/ |
Tables.java | 56 * Returns an immutable cell with the specified row key, column key, and 62 * @param columnKey the column key to be associated with the returned cell 126 * Creates a transposed view of a given table that flips its row and column 158 public Map<C, V> column(R columnKey) { method in class:Tables.TransposeTable 215 return original.column(rowKey); 266 * <p>The views returned by the {@code Table} methods {@link Table#column}, 271 * <p>Lookups by row key are often faster than lookups by column key, because 273 * {@code column(columnKey).get(rowKey)} still runs quickly, since the row key 274 * is provided. However, {@code column(columnKey).size()} takes longer, since 290 * corresponding column key / value ma 385 @Override public Map<R, V2> column(C columnKey) { method in class:Tables.TransformedTable [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
AbstractTableReadTest.java | 39 * @param data the table data, repeating the sequence row key, column key, 169 assertEquals(ImmutableMap.of("foo", 'a', "bar", 'b'), table.column(1)); 176 table.column(null);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
AbstractTableReadTest.java | 41 * @param data the table data, repeating the sequence row key, column key, 171 assertEquals(ImmutableMap.of("foo", 'a', "bar", 'b'), table.column(1)); 178 table.column(null);
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetSelector.java | 62 int column = i / 32; local 69 pvec.setValue(startChar, endChar, column, ~0, mask);
|
/external/jline/src/src/main/java/jline/ |
ANSIBuffer.java | 162 * wrapping (useful for writing the right-most column without 186 * equal to the current cursor column, the cursor is moved to the 187 * first column. 195 * cursor column is greater than the rightmost column, the cursor 196 * is moved to the rightmost column. 203 * Moves the cursor n rows up without changing the current column. 220 * Moves the cursor to the given row and column. (1,1) represents 224 public static String gotoxy(final int row, final int column) { 225 return ESC + "[" + row + ";" + column + "H" [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
importer.h | 91 // has the ability to determine exact line and column numbers of errors 192 // Line and column numbers are zero-based. A line number of -1 indicates 194 virtual void AddError(const string& filename, int line, int column, 197 virtual void AddWarning(const string& filename, int line, int column,
|
/external/skia/src/xml/ |
SkXMLParser.cpp | 168 int column = XML_GetCurrentColumnNumber(ctx.fXMLParser); local 170 SkDebugf("parse error @%d:%d: %d (%s).\n", line, column, error, errorString);
|
/external/skqp/src/xml/ |
SkXMLParser.cpp | 168 int column = XML_GetCurrentColumnNumber(ctx.fXMLParser); local 170 SkDebugf("parse error @%d:%d: %d (%s).\n", line, column, error, errorString);
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
feature_column.py | 23 When using FeatureColumns with `Estimator` models, the type of feature column 30 column (`sparse_column_with_keys`, `sparse_column_with_vocabulary_file`, 41 To feed sparse features into DNN models, wrap the column with 171 """Represents the information needed from a column for embedding lookup. 190 """Represents the information needed from a column for embedding lookup. 198 """Represents a feature column abstraction. 202 column. For example "country:US" is a feature which is in "country" feature 203 column and has a feature value ("US"). 215 """Returns the name of column or transformed column."" [all...] |
/external/v8/src/inspector/ |
debugger_script_externs.js | 55 * @param {number=} column 60 Debug.setScriptBreakPointById = function(scriptId, line, column, condition, groupId, positionAlignment) {} 102 * position: !{start: !{line: number, column: number}}, 169 * column:number,
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
SimContact.java | 111 String column, String value) { 115 .withValue(column, value)
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
MatrixUtils.java | 107 "--- invalid length. column should be 2 times larger than row."); 152 final int column = a[0].length; local 159 for (int j = 0; j < column; ++j) {
|
/packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/ |
PublicApiAccessTest.java | 119 for (String column : DISALLOWED_COLUMNS) { 121 values.put(column, 1);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
configSectionNameDialog.py | 53 self.buttonOk.grid(row=0,column=0,padx=5,pady=5) 56 self.buttonCancel.grid(row=0,column=1,padx=5,pady=5)
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
configSectionNameDialog.py | 53 self.buttonOk.grid(row=0,column=0,padx=5,pady=5) 56 self.buttonCancel.grid(row=0,column=1,padx=5,pady=5)
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue21317.go | 8 // column matching so instead match the output manually
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue21317.go | 8 // column matching so instead match the output manually
|