/external/tensorflow/tensorflow/python/feature_column/ |
feature_column_test.py | 85 column = TransformCounter() 86 self.assertEqual(0, column.num_transform) 87 builder.get(column) 88 self.assertEqual(1, column.num_transform) 89 builder.get(column) 90 self.assertEqual(1, column.num_transform) 108 column = Transformer() 109 self.assertEqual('Output', builder.get(column)) 110 self.assertEqual('Output', builder.get(column)) 349 'source_column must be a column generated with numeric_column') [all...] |
/external/ImageMagick/MagickCore/ |
matrix.c | 446 % Producing an 'array of column vectors'. 455 % That is values can be assigned as matrix[row][column] where 'row' is 456 % typically the equation, and 'column' is the term of the equation. 459 % However 'vectors' is a 'array of column pointers' which can have any number 460 % of columns, with each column array the same 'rank' size as 'matrix'. 463 % column 'vector' is all that is required to produce the desired solution. 485 % though as a 'column first array' rather than a 'row first array'. For 512 column, 535 column=0; 554 column=k 506 column, local [all...] |
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/picker/ |
Picker.java | 44 * column value range or labels change. Call {@link #setColumnValue(int, int, boolean)} to update 52 * three items only on currently activated column. If the Picker has focus, it will intercept DPAD 53 * directions and select activated column. 60 public void onValueChanged(Picker picker, int column); 104 * Returns the list of separators that will be populated between the picker column fields. 106 * @return The list of separators populated between the picker column fields. 115 * the columns fields (and nothing will be placed before the first and after the last column), 118 * column all the way to the position after the last column. 287 * When column labels change or column range changes, call this function to re-populate th 311 PickerColumn column = mColumns.get(columnIndex); local 359 VerticalGridView column = mColumnViews.get(colIndex); local 420 PickerColumn column = mColumns.get(columnIndex); local 534 int column = getSelectedColumn(); local 638 int column = getSelectedColumn(); local [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarSemanticsMessage.java | 71 column = 0; 74 column = offendingToken.getCharPositionInLine();
|
GrammarSyntaxMessage.java | 65 column = 0; 68 column = offendingToken.getCharPositionInLine();
|
GrammarUnreachableAltsMessage.java | 58 column = decisionASTNode.getCharPositionInLine(); 76 column = ruleStart.associatedASTNode.getCharPositionInLine();
|
/external/freetype/src/tools/docmaker/ |
sources.py | 42 ## The `column' pattern must contain a group to `unbox' the content of 50 def __init__( self, id, start, column, end ): 55 self.column = re.compile( column, re.VERBOSE ) 74 column = r''' 82 re_source_block_format1 = SourceBlockFormat( 1, start, column, start ) 100 column = r''' 111 re_source_block_format2 = SourceBlockFormat( 2, start, column, end ) 280 m = self.format.column.match( line0 ) 367 elif self.format.column.match( line ) [all...] |
/external/icu/icu4c/source/tools/toolutil/ |
pkg_genc.cpp | 62 write8(FileStream *out, uint8_t byte, uint32_t column); 65 write32(FileStream *out, uint32_t byte, uint32_t column); 69 write8str(FileStream *out, uint8_t byte, uint32_t column); 263 uint32_t column = MAX_COLUMN; local 323 column = write32(out, buffer[i], column); 350 uint32_t column = MAX_COLUMN; local 419 column = write8str(out, (uint8_t)buffer[i], column); 446 column = write8(out, (uint8_t)buffer[i], column) [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
TableResultX.java | 26 this.column = tr.column;
|
/external/ltp/testcases/open_posix_testsuite/functional/threads/pi_test/ |
do-plot | 23 column[$count]=$(echo $cols | awk -vcount=$count '{print $(2 + count);}') 24 if [ -z "${column[$count]}" ] 26 column[$count]=$count; 35 set xlabel "${column[1]} (s)" 60 echo "plot '$FILE' using 1:2 title \"${column[$count]}\" $with" >> $TMP/gnuplot.script 64 echo "replot '$FILE' using 1:$count title \"${column[$count]}\" $with" \
|
/external/skia/src/core/ |
SkTaskGroup2D.h | 19 // Return false iff the column needs initialization and such initialization is not finished yet. 20 virtual bool work2D(int row, int column, int thread) = 0; 23 // maybe some other thread is initializing the column). 24 virtual bool initColumn(int column, int thread) = 0; 34 // The task on row i and column j is abstracted as work2D(i, j, t). Parameter t is the thread id and 40 // There are also width number of init calls, one per column. work2D(i, j, t) may return false if 41 // column j requires initialization but it's not initialized yet. In that case, a thread t needs to 42 // call initColumn(j, t) once to unblock all rows that depend on the initialization of column j. 46 // Multiple therads may try to init the same column j at the same time. InitFn is expected to handle 56 virtual void addColumn(); // Add a new column of tasks [all...] |
/external/toolchain-utils/cros_utils/ |
html_tools.py | 80 return '<tr>%s</tr>' % '\n'.join([GetTableCell(column) for column in columns])
|
/external/trappy/tests/ |
test_duplicates.py | 53 column=['utilization'], 87 column=['utilization'],
|
/frameworks/base/core/java/android/util/ |
DayOfMonthCursor.java | 24 * <li>Keeps track of current cursor position (row, column)</li> 91 public boolean isSelected(int row, int column) { 92 return (mRow == row) && (mColumn == column); 106 // flip back to previous month, same column, first position within month 126 // flip to next month, same column, first position within month
|
/packages/apps/Calendar/src/com/android/calendar/ |
DayOfMonthCursor.java | 26 * <li>Keeps track of current cursor position (row, column)</li> 93 public boolean isSelected(int row, int column) { 94 return (mRow == row) && (mColumn == column); 108 // flip back to previous month, same column, first position within month 128 // flip to next month, same column, first position within month
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
UIProviderValidator.java | 96 for (String column : projection) { 97 if (!validColumns.contains(column)) {
|
/system/tools/hidl/ |
Location.h | 29 Position(std::string filename, size_t line, size_t column); 34 size_t column() const; 46 // Current column number.
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/ |
cfi-alpha-1.d | 10 Return address column: 26
|
cfi-arc-1.d | 11 Return address column: 31
|
cfi-common-1.d | 11 Return address column: .*
|
cfi-common-2.d | 11 Return address column: .*
|
cfi-common-5.d | 10 Return address column: .*
|
cfi-common-7.d | 11 Return address column: .*
|
cfi-i386-2.d | 10 Return address column: 8
|
cfi-mips-1.d | 10 Return address column: 31
|