HomeSort by relevance Sort by last modified time
    Searched defs:Column (Results 1 - 25 of 35) sorted by null

1 2

  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 28 unsigned Column;
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) &&
60 /// Source locations are of the form filename:line:column.
78 << "source location must be of the form filename:line:column\n";
LogDiagnosticPrinter.h 33 /// The source file column number, if available.
34 unsigned Column;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 32 @Column("_id")
43 public @interface Column {
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 35 uint32_t Column;
39 Line(0), Column(0) {}
42 uint32_t line, uint32_t column)
44 Line(line), Column(column) {}
49 uint32_t getColumn() const { return Column; }
52 return Line == RHS.Line && Column == RHS.Column &&
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 40 private List<Column> columns = new ArrayList<Column>();
74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
112 * Adds a new <code>Column</code>
113 * @param column the column to add.
115 public void addColumn(Column column){
116 columns.add(column);
134 public Iterator<Column> getColumns()
    [all...]
  /external/clang/unittests/AST/
MatchVerifier.h 120 void expectLocation(unsigned Line, unsigned Column) {
122 ExpectColumn = Column;
129 unsigned Column = Result.SourceManager->getSpellingColumnNumber(Loc);
130 if (Line != ExpectLine || Column != ExpectColumn) {
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 55 u32 Column;
58 SourceLocation() : Filename(), Line(), Column() {}
59 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
60 : Filename(Filename), Line(Line), Column(Column) {}
69 (__sanitizer::atomic_uint32_t *)&Column, ~u32(0),
77 return Column == ~u32(0);
84 /// \brief Get the column within the presumed line.
85 unsigned getColumn() const { return Column; }
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 321 uint32_t &Line, uint32_t &Column) {
328 // Take file number and line/column from the row.
334 Column = Row.Column;
346 uint32_t Column = 0;
365 FileName, Line, Column);
368 Line, Column);
416 // Take file number and line/column from the row.
423 FuncNameRef, Row.Line, Row.Column)));
448 uint32_t Column = 0
    [all...]
DWARFDebugLine.h 105 // An unsigned integer indicating a column number within a source line.
108 uint16_t Column;
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 254 unsigned Column = D.getColumnNo();
255 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
256 Loc.getLocWithOffset(Range.second - Column));
CGBuiltin.cpp 752 int Column = getTargetHooks().getDwarfEHStackPointer(CGM);
753 if (Column == -1) {
757 return RValue::get(llvm::ConstantInt::get(Ty, Column, true));
    [all...]
CGDebugInfo.cpp 264 /// getColumnNumber - Get column number for the location.
266 // We may not want column information at all.
270 // If the location is invalid then use the current column.
2694 unsigned column = getColumnNumber(loc); local
    [all...]
  /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 << ":";
CIndex.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 81 // Column - the column position.
82 unsigned Column;
101 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
103 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
116 /// getColumn - Get the Column of this MCDwarfLoc.
117 unsigned getColumn() const { return Column; }
134 /// setColumn - Set the Column of this MCDwarfLoc.
135 void setColumn(unsigned column) { Column = column;
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 868 int Column;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 50 unsigned Column; // Source column.
55 : Line(L), Column(C), SourceID(S), Label(label) {}
59 unsigned getColumn() const { return Column; }
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 220 unsigned Column, unsigned Flags,
857 unsigned Column, unsigned Flags,
861 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
866 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
892 << Line << ':' << Column;
    [all...]
MCDwarf.cpp 143 unsigned Column = 0;
158 if (Column != it->getColumn()) {
159 Column = it->getColumn();
161 MCOS->EmitULEB128IntValue(Column);
    [all...]
  /external/clang/lib/Format/
Format.cpp 277 /// \brief Put all the comments between \p I and \p E into \p Column.
278 void alignComments(comment_iterator I, comment_iterator E, unsigned Column) {
280 unsigned Spaces = I->Spaces + Column - I->MinColumn;
315 /// \returns The column after the last token in the last line of the
320 State.Column = FirstIndent;
347 return State.Column;
400 /// \brief The column of a \c ? in a conditional expression;
450 unsigned Column;
455 /// \brief The column of the first variable name in a variable declaration.
469 /// \brief The start column of the string literal, if we're in a strin
    [all...]
  /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...]
  /external/tinyxml/
tinyxml.h 181 The row and column are 1-based. (That is the first row and first column is
183 a row and column value.
185 Generally, the row and column value will be set when the TiXmlDocument::Load(),
193 There is a minor performance cost to computing the row and column. Computation
199 int Column() const { return location.col + 1; } ///< See Row()
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 

Completed in 534 milliseconds

1 2