Home
last modified time | relevance | path

Searched refs:TotalLength (Results 1 – 8 of 8) sorted by relevance

/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h41 uint32_t TotalLength; member
68 return PrologueLength + sizeof(TotalLength) + sizeof(Version) + in getLength()
73 return TotalLength + sizeof(TotalLength) - getLength(); in getStatementTableLength()
/external/clang/lib/Format/
DUnwrappedLineFormatter.cpp58 Limit = TheLine->Last->TotalLength > Limit in tryFitMultipleLinesInOne()
60 : Limit - TheLine->Last->TotalLength; in tryFitMultipleLinesInOne()
131 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimplePPDirective()
152 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimpleControlStatement()
184 Length += I[1 + NumStmts]->Last->TotalLength + 1; // 1 for the space. in tryMergeShortCaseLabels()
289 return 1 + I[1]->Last->TotalLength + 1 + I[2]->Last->TotalLength <= Limit; in nextTwoLinesFitInto()
421 if (TheLine.Last->TotalLength + Indent <= ColumnLimit || in format()
549 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore; in join()
551 Tok->TotalLength += LengthA; in join()
709 Previous.Children[0]->Last->TotalLength + State.Column + 2 > in formatChildren()
[all …]
DFormatToken.cpp126 assert(End->TotalLength >= Begin->TotalLength); in CodePointsBetween()
127 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth; in CodePointsBetween()
DFormatToken.h115 PackingKind(PPK_Inconclusive), TotalLength(0), UnbreakableTailLength(0), in FormatToken()
216 unsigned TotalLength; member
DTokenAnnotator.cpp1405 Line.First->TotalLength = in calculateFormattingInformation()
1462 : LastOfChild.TotalLength + 1; in calculateFormattingInformation()
1469 Current->TotalLength = Prev->TotalLength + Style.ColumnLimit; in calculateFormattingInformation()
1471 Current->TotalLength = Prev->TotalLength + Current->ColumnWidth + in calculateFormattingInformation()
2129 << " L=" << Tok->TotalLength << " PPK=" << Tok->PackingKind in printDebugInfo()
DContinuationIndenter.cpp38 return End->TotalLength - Tok.TotalLength + 1; in getLengthToMatchingParen()
329 (Previous.TotalLength - Previous.MatchingParen->TotalLength > 10))) { in addTokenOnCurrentLine()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp25 TotalLength = Version = PrologueLength = 0; in clear()
35 << format(" total_length: 0x%8.8x\n", TotalLength) in dump()
73 TotalLength = debug_line_data.getU32(offset_ptr); in parse()
260 const uint32_t end_offset = debug_line_offset + Prologue.TotalLength + in parse()
261 sizeof(Prologue.TotalLength); in parse()
/external/llvm/lib/MC/
DMCAssembler.cpp676 unsigned TotalLength = BundlePadding + static_cast<unsigned>(FSize); in writeFragmentPadding() local
677 if (F.alignToBundleEnd() && TotalLength > getBundleAlignSize()) { in writeFragmentPadding()
686 unsigned DistanceToBoundary = TotalLength - getBundleAlignSize(); in writeFragmentPadding()