HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 651 - 675 of 2687) sorted by null

<<21222324252627282930>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 166 final int column = getColumnNumber(index); local
167 if (column == 0)
169 if (column == numColumnInRow - 1)
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 129 + " to version 2: adding " + Words.SHORTCUT + " column");
354 for (String column : projection) {
355 if (sDictProjectionMap.get(column) == null) {
356 throw new IllegalArgumentException("Unknown column: " + column);
  /prebuilts/checkstyle/
checkstyle.py 223 column = ''
224 if error.hasAttribute('column'):
225 column = '%s:' % error.attributes['column'].value
231 result = ' %s%s:%s:%s %s' % (project, file_name, line, column, message)
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
parser.h 81 // and column numbers for errors reported by DescriptorPool during validation.
200 void AddError(int line, int column, const string& error);
202 // Invokes error_collector_->AddError() with the line and column number
529 // DescriptorPool when validating descriptors -- to line and column numbers
542 // *column with the line and column numbers. If not found, sets *line to
543 // -1 and *column to 0 (since line = -1 is used to mean "error has no exact
548 int* line, int* column) const;
553 int line, int column);
  /bionic/tools/versioner/src/
DeclarationDatabase.cpp 210 .column = src_manager.getExpansionColumnNumber(expansion_range.getBegin()),
214 .column = src_manager.getExpansionColumnNumber(expansion_range.getEnd()),
225 location.filename.c_str(), location.start.line, location.start.column);
405 ss << loc.filename << ":" << loc.start.line << ":" << loc.start.column;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventProxy.h 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventProxy.h 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventProxy.h 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugEventProxy.h 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 65 /** Column label for negative vars. */
80 /** The variables each column represents */
281 * Checks whether the given column is basic.
282 * @param col index of the column to check
283 * @return the row that the variable is basic in. null if the column is not basic
445 * @param column column index
446 * @return entry at (row, column)
448 protected final double getEntry(final int row, final int column) {
449 return tableau.getEntry(row, column);
    [all...]
  /external/clang/utils/
FuzzTest 113 # Compute the line and column.
115 line = column = 1
120 column = 1
122 column += 1
124 options['picked_input_col'] = column
193 'picked_input_col' - (with --pick-input) the selected input column
  /external/google-styleguide/include/
styleguide.css 96 -webkit-column-count: 2;
97 column-count: 2;
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableTableTest.java 256 assertThat(table.column(5).keySet()).has().exactly('e', 'x').inOrder();
278 assertThat(table.column(1).keySet()).has().exactly('a', 'b', 'c').inOrder();
296 assertThat(table.column(5).keySet()).has().exactly('e', 'x').inOrder();
313 assertThat(table.column(1).keySet()).has().exactly('a', 'b', 'c').inOrder();
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableTableTest.java 257 assertThat(table.column(5).keySet()).has().exactly('e', 'x').inOrder();
279 assertThat(table.column(1).keySet()).has().exactly('a', 'b', 'c').inOrder();
297 assertThat(table.column(5).keySet()).has().exactly('e', 'x').inOrder();
314 assertThat(table.column(1).keySet()).has().exactly('a', 'b', 'c').inOrder();
  /external/libchrome/base/json/
json_parser.h 69 // Returns the error column number if parse error happened. Otherwise always
214 // Sets the error information to |code| at the current column, based on
219 // Given the line and column number of an error, formats one of the error
221 static std::string FormatErrorMessage(int line, int column,
  /external/libffi/src/powerpc/
darwin.S 331 .byte 0x41 ; CIE RA Column
362 .byte 0x9f ; DW_CFA_offset, column 0x1f
364 .byte 0x9e ; DW_CFA_offset, column 0x1e
366 .byte 0x9d ; DW_CFA_offset, column 0x1d
368 .byte 0x9c ; DW_CFA_offset, column 0x1c
  /external/lisa/libs/utils/analysis/
cpus_analysis.py 71 :returns: :mod:`pandas.DataFrame` with one column ``cpu``, where each
  /external/llvm/test/DebugInfo/SystemZ/
eh_frame.s 46 # Return address column: 14
eh_frame_personality.s 44 # Return address column: 14
  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 78 void AddError(const string& filename, int line, int column,
81 filename, line, column, message);
84 void AddWarning(const string& filename, int line, int column,
87 filename, line, column, message);
  /external/python/cpython2/Demo/turtle/
turtleDemo.py 89 self.output_lbl.grid(row=2, column=0, sticky='news', padx=(0,5))
90 self.start_btn.grid(row=2, column=1, sticky='ew')
91 self.stop_btn.grid(row=2, column=2, sticky='ew')
92 self.clear_btn.grid(row=2, column=3, sticky='ew')
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
darwin.S 331 .byte 0x41 ; CIE RA Column
362 .byte 0x9f ; DW_CFA_offset, column 0x1f
364 .byte 0x9e ; DW_CFA_offset, column 0x1e
366 .byte 0x9d ; DW_CFA_offset, column 0x1d
368 .byte 0x9c ; DW_CFA_offset, column 0x1c
  /external/python/cpython2/Modules/_ctypes/libffi_osx/powerpc/
ppc-darwin.S 295 .byte 0x41 ; CIE RA Column
326 .byte 0x9f ; DW_CFA_offset, column 0x1f
328 .byte 0x9e ; DW_CFA_offset, column 0x1e
330 .byte 0x9d ; DW_CFA_offset, column 0x1d
332 .byte 0x9c ; DW_CFA_offset, column 0x1c
  /external/python/cpython3/Lib/turtledemo/
__main__.py 183 self.output_lbl.grid(row=1, column=0, sticky='news', padx=(0,5))
184 self.start_btn.grid(row=1, column=1, sticky='ew')
185 self.stop_btn.grid(row=1, column=2, sticky='ew')
186 self.clear_btn.grid(row=1, column=3, sticky='ew')
  /external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/
darwin.S 331 .byte 0x41 ; CIE RA Column
362 .byte 0x9f ; DW_CFA_offset, column 0x1f
364 .byte 0x9e ; DW_CFA_offset, column 0x1e
366 .byte 0x9d ; DW_CFA_offset, column 0x1d
368 .byte 0x9c ; DW_CFA_offset, column 0x1c

Completed in 1997 milliseconds

<<21222324252627282930>>