HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 376 - 400 of 998) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
file_grid.js 249 * Obtains the column/row index that the coordinate points.
251 * column/row.
252 * @param {number} step Length from a column/row to the next one.
255 * column/row.
256 * @return {number} Index of hit column/row.
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_win.cc 1025 long column,
1044 if (row < 0 || row >= rows || column < 0 || column >= columns)
1051 int cell_id = cell_ids[row * columns + column];
1074 long column,
1093 if (row < 0 || row >= rows || column < 0 || column >= columns)
1101 int cell_id = cell_ids[row * columns + column];
1112 STDMETHODIMP BrowserAccessibilityWin::get_columnDescription(long column,
1130 if (column < 0 || column >= columns
1642 int column; local
1701 int column; local
1835 int column; local
1865 int column; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.cpp 72 // A cell originates in this column. Ensure we have
73 // a min/max width of at least 1px for this column now.
120 // This spanning cell originates in this column. Insert the cell into spanning cells list.
150 for (RenderTableCol* column = m_table->firstColumn(); column; column = column->nextColumn()) {
151 if (column->isTableColumnGroupWithColumnChildren())
152 groupLogicalWidth = column->style()->logicalWidth();
154 Length colLogicalWidth = column->style()->logicalWidth()
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-line.c 103 unsigned long column; member in struct:dwarf2_line_state
369 if (state->column != loc->column) {
370 state->column = loc->column;
372 yasm_intnum_create_uint(state->column));
607 state.column = 0;
622 bcinfo.loc.column = 0;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.cc 285 void Parser::AddError(int line, int column, const string& error) {
287 error_collector_->AddError(line, column, error);
293 AddError(input_->current().line, input_->current().column, error);
302 location_->add_span(parser_->input_->current().column);
328 location_->add_span(parser_->input_->current().column);
343 location_->set_span(1, token.column);
475 AddError(syntax_token.line, syntax_token.column,
732 AddError(name_token.line, name_token.column,
947 // TODO(sanjay): Interpret line/column numbers to preserve formatting
    [all...]
  /external/chromium_org/v8/src/
messages.js 421 // Determine start, end and column.
428 var column = position - start;
434 column += this.column_offset;
438 return new SourceLocation(this, position, line, column, start, end);
443 * Get information on a specific source line and column possibly offset by a
445 * a line and column position. The fixed source position offset is typically
446 * used to find a source position in a function based on a line and column in
450 * @param {number} opt_column The column in within the line. Default value is 0
452 * source from where the line and column calculation starts.
465 // Default is first column. If on the first line add the offset within th
    [all...]
  /external/v8/src/
messages.js 382 // Determine start, end and column.
389 var column = position - start;
395 column += this.column_offset;
399 return new SourceLocation(this, position, line, column, start, end);
404 * Get information on a specific source line and column possibly offset by a
406 * a line and column position. The fixed source position offset is typically
407 * used to find a source position in a function based on a line and column in
411 * @param {number} opt_column The column in within the line. Default value is 0
413 * source from where the line and column calculation starts.
426 // Default is first column. If on the first line add the offset within th
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 276 exc.column.should == 10
319 exc.column.should == 6
370 exc.column.should == 3
423 exc.column.should == 1
486 exc.column.should == 1
555 exc.column.should == 1
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 143 unsigned int *column,
168 if (column)
169 *column = Loc.column;
491 Loc.column = 0;
503 Loc.column = Record[offset++];
  /external/icu4c/common/
uchar.c 520 u_getUnicodeProperties(UChar32 c, int32_t column) {
521 U_ASSERT(column>=0);
522 if(column>=propsVectorsColumns) {
526 return propsVectors[vecIndex+column];
531 uprv_getMaxValues(int32_t column) {
532 switch(column) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 589 * Gets the current column number within the XML file.
591 private int column() { method in class:ExpatParser
592 return column(this.pointer);
595 private static native int column(long pointer); method in class:ExpatParser
684 return column();
691 + ", column: " + getColumnNumber() + "]";
723 * Includes line and column in the message.
737 String message, int line, int column) {
738 return "At line " + line + ", column "
739 + column + ": " + message
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 441 * Get a CacheToken for a row as specified by its id (_id column)
512 * @param id the _id column of the desired row
557 for (String column: projection) {
558 int columnIndex = c.getColumnIndex(column);
564 if (values != null && values.containsKey(column)) {
565 Object val = values.get(column);
569 value = values.getAsString(column);
571 values.remove(column);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 142 private String getString(String column) {
143 int index = mCursor.getColumnIndexOrThrow(column);
148 private Integer getInt(String column) {
149 return mCursor.getInt(mCursor.getColumnIndexOrThrow(column));
152 private Long getLong(String column) {
153 return mCursor.getLong(mCursor.getColumnIndexOrThrow(column));
  /external/clang/bindings/python/tests/cindex/
test_translation_unit.py 190 assert location.column == 3
208 assert r.start.column == 2
210 assert r.end.column == 3
  /external/clang/utils/
token-delta.py 98 def __init__(self, type, data, flags, file, line, column):
104 self.column = column
  /external/replicaisland/tools/
ExtractPoints.js 119 var column = Math.floor(tile.centerX / tileSizeX);
122 tile.xOffset = column * tileSizeX;
128 var tileIndex = Math.floor(row * tilesPerRow + column);
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java 218 final String column = mKind.fieldList.get(i).column; local
219 final String value = item.getAsString(column);
  /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)
  /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/chromium/chrome/browser/importer/
mork_reader.cc 138 // Column map. We begin by creating a hash of column id to column name.
144 // correspond to the columns array. As we insert each column into the
146 // index given the column id.
173 // If the first line is the a=c line (column map), just skip over it.
240 // (row id 123 has the value with id 67 for the column with id 45).
241 // A '^' prefix for a column or value references an entry in the column or
248 // Column index of the cell we're parsing, minus one if invalid
363 IDString column; local
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.h 161 bool AddColumn(const ColumnSpec* column);
  /external/chromium_org/base/json/
json_parser.h 216 // Sets the error information to |code| at the current column, based on
221 // Given the line and column number of an error, formats one of the error
223 static std::string FormatErrorMessage(int line, int column,

Completed in 1746 milliseconds

<<11121314151617181920>>