Searched refs:column (Results 1 – 14 of 14) sorted by relevance
/system/tools/hidl/ |
D | Location.cpp | 24 Position::Position(std::string filename, size_t line, size_t column) in Position() argument 25 : mFilename(filename), mLine(line), mColumn(column) {} in Position() 35 size_t Position::column() const { in column() function in android::Position 51 return ostr << pos.line() << "." << pos.column(); in operator <<() 96 std::max<size_t>(1u, loc.end().column() - 1)); in operator <<() 101 ostr << "-" << last.line() << "." << last.column(); in operator <<() 102 } else if (loc.begin().column() != last.column()) { in operator <<() 103 ostr << "-" << last.column(); in operator <<()
|
D | Location.h | 34 Position(std::string filename, size_t line, size_t column); 39 size_t column() const;
|
D | hidl-gen_y.yy | 59 loc.begin.line, loc.begin.column), 61 loc.end.line, loc.end.column));
|
/system/media/audio_utils/ |
D | PowerLog.cpp | 125 size_t column = 0; in dumpToString() local 142 if (column != 0) { in dumpToString() 143 column = 0; in dumpToString() 150 if (column == 0 && time < limitNs) { in dumpToString() 154 if (++column == maxColumns) { in dumpToString() 155 column = 0; in dumpToString() 177 size_t column = 0; in dumpToString() local 197 column = 0; in dumpToString() 201 if (column == 0) { in dumpToString() 213 if (++column >= maxColumns) { in dumpToString() [all …]
|
/system/tools/aidl/ |
D | location.cpp | 25 os << ":" << l.begin_.line << "." << l.begin_.column << "-"; in operator <<() 29 os << l.end_.column; in operator <<()
|
D | location.h | 26 int column; member
|
D | aidl_language_y.yy | 37 .column = begin.begin.column, 41 .column = end.end.column,
|
D | aidl_language.cpp | 85 ss << location_.file_ << ":" << location_.begin_.line << ":" << location_.begin_.column << ":" in PrintLocation() 86 << location_.end_.line << ":" << location_.end_.column; in PrintLocation()
|
D | aidl.cpp | 431 AidlLocation::Point point = {.line = lineno, .column = 0 /*column*/}; in parse_preprocessed_file()
|
/system/tools/hidl/lint/ |
D | Lint.cpp | 73 lint["begin"]["column"] = Json::UInt(mLocation.begin().column()); in asJson() 75 lint["end"]["column"] = Json::UInt(mLocation.end().column()); in asJson()
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone_proto_to_text.cpp | 270 for (size_t column = 0; column < kNumTagColumns; ++column) { in print_tag_dump() local 271 uintptr_t granule_addr = row_addr + column * kTagGranuleSize; in print_tag_dump()
|
/system/media/camera/docs/ |
D | html.mako | 40 /* table column sizes */ 53 /* hide the first thead, we need it there only to enforce column sizes */
|
/system/extras/simpleperf/doc/ |
D | executable_commands_reference.md | 544 several columns, each column shows piece of information belonging to a sample entry. The first 545 column is Overhead, which shows the percentage of events inside the current sample entry in total
|
/system/extras/simpleperf/scripts/ |
D | report_html.js | 702 dataTable.column(7).visible(false);
|