/external/llvm/lib/Support/ |
YAMLParser.cpp | 182 unsigned Column; 366 /// This updates Cur and Column while scanning. 377 /// \a Expected. This updates \a Column. 380 /// @brief Skip \a Distance UTF-8 code units. Updates \a Cur and \a Column. 477 /// @brief Current column number in Unicode code points. 478 unsigned Column; 699 , Column(0) 717 , Column(0) 860 ++Column; 881 Column += 2; // Consume both the ':' and ns-char [all...] |
YAMLTraits.cpp | 360 Column(0), 439 ColumnAtFlowStart = Column; 453 if (Column > 70) { 457 Column = ColumnAtFlowStart; 536 Column += s.size(); 548 Column = 0;
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
ParserTest.cpp | 134 EXPECT_EQ(StartColumn, Range.Start.Column); 135 EXPECT_EQ(EndColumn, Range.End.Column); 137 Range.Start.Column == StartColumn && Range.End.Column == EndColumn;
|
/external/llvm/include/llvm/MC/ |
MCDwarf.h | 80 // Column - the column position. 81 unsigned Column; 100 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 102 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 115 /// getColumn - Get the Column of this MCDwarfLoc. 116 unsigned getColumn() const { return Column; } 133 /// setColumn - Set the Column of this MCDwarfLoc. 134 void setColumn(unsigned column) { Column = column; [all...] |
MCObjectStreamer.h | 105 unsigned Column, unsigned Flags,
|
MCContext.h | 347 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, 352 CurrentDwarfLoc.setColumn(Column);
|
/external/llvm/lib/MC/ |
MCNullStreamer.cpp | 96 unsigned Column, unsigned Flags,
|
MCObjectStreamer.cpp | 262 unsigned Column, unsigned Flags, 270 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Diagnostics.cpp | 153 if (Range.Start.Line > 0 && Range.Start.Column > 0) { 154 OS << Range.Start.Line << ":" << Range.Start.Column << ": ";
|
/external/chromium_org/third_party/sqlite/src/src/ |
alter.c | 206 ** Note that ON cannot be a database, table or column name, so 375 ** (either with ALTER TABLE ... RENAME TO or ALTER TABLE ... ADD COLUMN). 618 ** column definition. 621 ** the new column during parsing. 629 char *zCol; /* Null-terminated column definition */ 630 Column *pCol; /* The new column */ 631 Expr *pDflt; /* Default value for the new column */ 655 /* If the default value for the new column was specified with a 663 /* Check that the new column is not specified as PRIMARY KEY or UNIQUE [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ArrayTable.java | 42 * <p>The allowed row and column keys must be supplied when the table is 43 * created. The table always contains a mapping for every row key / column pair. 44 * The value corresponding to a given row and column is null unless another 48 * keys and the number of supplied column keys. The {@code remove} and {@code 52 * <p>The ordering of the row and column keys provided when the table is 61 * <p>Null row keys or column keys are not permitted. 64 * where the array indices correspond to the position of a row or column in the 87 * @param columnKeys column keys that may be stored in the generated table 99 * iterable, to specify the allowed row keys and/or column keys. Note that 108 * separate mapping with column key {@code c}, the returned table contains [all...] |
StandardTable.java | 43 * column key / value secondary maps. This class provides rapid access to 44 * records by the row key alone or by both keys, but not by just the column key. 46 * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link 51 * <p>Lookups by row key are often faster than lookups by column key, because 53 * column(columnKey).get(rowKey)} still runs quickly, since the row key is 54 * provided. However, {@code column(columnKey).size()} takes longer, since an 200 private Map<R, V> removeColumn(Object column) { 206 V value = entry.getValue().remove(column); 222 /** Remove a row key / column key / value mapping, if present. */ 269 * <p>Each cell is an immutable snapshot of a row key / column key / valu [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/js/photo/ |
mosaic_mode.js | 812 * @return {Mosaic.Column} The last column or null for empty layout. 843 // |Mosaic.Column.density_| tracks the state of the 'local' backtracking 845 // It starts with the current global density and decreases it until the column 851 this.newColumn_ = new Mosaic.Column( 865 continue; // Column is incomplete. 1002 var column = this.getColumnIndexByTile_(index); 1003 if (column < 0) { 1004 console.error('Cannot find column for tile #' + index); 1008 var row = this.columns_[column].getRowByTileIndex(index) [all...] |
/external/clang/lib/CodeGen/ |
CodeGenAction.cpp | 271 unsigned Column = D.getColumnNo(); 272 B << SourceRange(Loc.getLocWithOffset(Range.first - Column), 273 Loc.getLocWithOffset(Range.second - Column));
|
/external/clang/tools/libclang/ |
CIndexDiagnostic.cpp | 249 // Print source location (file:line), along with optional column 252 unsigned Line, Column; 254 &File, &Line, &Column, 0); 260 Out << Column << ":";
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfDebug.h | 49 unsigned Column; // Source column. 54 : Line(L), Column(C), SourceID(S), Label(label) {} 58 unsigned getColumn() const { return Column; }
|
/external/chromium_org/chrome/browser/ |
certificate_manager_model.cc | 76 Column column) const { 78 switch (column) { 84 // TODO(xiyuan): Put this into a column when we have js tree-table.
|
/external/llvm/lib/DebugInfo/ |
DWARFDebugLine.h | 105 // An unsigned integer indicating a column number within a source line. 108 uint16_t Column;
|
DWARFDebugLine.cpp | 62 Column = 0; 73 OS << format("0x%16.16" PRIx64 " %6u %6u", Address, Line, Column) 88 OS << "Address Line Column File ISA Flags\n" 352 // column register of the state machine. 353 state.Column = debug_line_data.getULEB128(offset_ptr); 415 // column register of the state machine.
|
/external/chromium_org/third_party/sqlite/src/test/ |
fuzz_common.tcl | 199 # returned SELECT statement returns a single column of data. 241 proc Column {} { 250 SET [Column] = [Expr $::ColumnList]
|
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | 355 unsigned Column) { 357 // line and column. 365 // Truncate the named file at the given line/column. 366 PP.SetCodeCompletionPoint(Entry, Line, Column); 375 Loc.FileName, Loc.Line, Loc.Column, 381 Loc.Line, Loc.Column)) { 401 unsigned Column, 404 if (EnableCodeCompletion(PP, Filename, Line, Column)) [all...] |
/external/clang/include/clang/Frontend/ |
CompilerInstance.h | 562 /// \p Filename, \p Line, and \p Column, to the given output stream \p OS. 565 unsigned Line, unsigned Column,
|
/external/libffi/src/powerpc/ |
darwin.S | 200 .byte 0x41 ; CIE RA Column 230 .byte 0x9f ; DW_CFA_offset, column 0x1f 232 .byte 0x9e ; DW_CFA_offset, column 0x1e 234 .byte 0x9d ; DW_CFA_offset, column 0x1d 236 .byte 0x9c ; DW_CFA_offset, column 0x1c
|
darwin_closure.S | 259 .byte 0x41 ; CIE RA Column
|
linux64.S | 151 .byte 0x41 # CIE RA Column 173 .byte 0x9f # DW_CFA_offset, column 0x1f 175 .byte 0x9e # DW_CFA_offset, column 0x1e 177 .byte 0x9d # DW_CFA_offset, column 0x1d 179 .byte 0x9c # DW_CFA_offset, column 0x1c
|