Home
last modified time | relevance | path

Searched refs:Lines (Results 1 – 25 of 396) sorted by relevance

12345678910>>...16

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h174 if (Lines.empty()) in first()
176 return Lines.front(); in first()
183 if (Lines.empty()) in last()
185 return Lines.back(); in last()
188 Lines.push_back(LE); in push()
194 return Lines.size(); in size()
198 return Lines[i]; in get()
202 return Lines[i]; in get()
211 return Lines == RHS.Lines;
214 return Lines != RHS.Lines;
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/Format/
H A DBreakableToken.cpp382 Content.resize(Lines.size()); in BreakableBlockComment()
383 Content[0] = Lines[0]; in BreakableBlockComment()
384 ContentColumn.resize(Lines.size()); in BreakableBlockComment()
387 Tokens.resize(Lines.size()); in BreakableBlockComment()
465 if ((Lines[0] == "*" || Lines[0].startswith("* ")) && Lines.size() > 1) { in BreakableBlockComment()
468 } else if (Lines[0].startswith("* ") && Lines.size() == 1) { in BreakableBlockComment()
771 TokenText.split(Lines, "\n"); in BreakableLineCommentSection()
772 Content.resize(Lines.size()); in BreakableLineCommentSection()
775 Tokens.resize(Lines.size()); in BreakableLineCommentSection()
776 Prefix.resize(Lines.size()); in BreakableLineCommentSection()
[all …]
H A DAffectedRangeManager.cpp23 SmallVectorImpl<AnnotatedLine *> &Lines) { in computeAffectedLines() argument
24 SmallVectorImpl<AnnotatedLine *>::iterator I = Lines.begin(); in computeAffectedLines()
25 SmallVectorImpl<AnnotatedLine *>::iterator E = Lines.end(); in computeAffectedLines()
51 if (nonPPLineAffected(Line, PreviousLine, Lines)) in computeAffectedLines()
103 SmallVectorImpl<AnnotatedLine *> &Lines) { in nonPPLineAffected() argument
144 Lines[Line->MatchingOpeningBlockLineIndex]->Affected; in nonPPLineAffected()
H A DAffectedRangeManager.h34 bool computeAffectedLines(SmallVectorImpl<AnnotatedLine *> &Lines);
56 SmallVectorImpl<AnnotatedLine *> &Lines);
/netbsd/games/phantasia/
H A Dfight.c60 Lines = 9; in encounter()
97 Lines = 8; in encounter()
126 more(Lines); in encounter()
127 move(Lines = 8, 0); in encounter()
133 more(Lines); in encounter()
150 more(Lines); in encounter()
161 more(Lines); in encounter()
166 more(Lines + 1); in encounter()
242 Lines = 9; in playerhits()
374 mvaddstr(Lines++, 0, in monsthits()
[all …]
H A Dinterplayer.c73 Lines = 8; in battleplayer()
200 mvprintw(Lines++, 0, "%s ran away!", Enemyname); in battleplayer()
235 if (Lines > LINES - 2) { in battleplayer()
236 more(Lines); in battleplayer()
237 move(Lines = 8, 0); in battleplayer()
282 more(Lines); /* pause */ in battleplayer()
305 move(Lines = 8, 0); in myturn()
322 mvaddstr(Lines++, 0, "You got away!"); in myturn()
340 mvaddstr(Lines++, 0, "You already tried that!"); in myturn()
342 mvaddstr(Lines++, 0, "Not this time . . ."); in myturn()
[all …]
/netbsd/external/bsd/libfido2/dist/fuzz/
H A Dfunctions.txt2 Name Regions Miss Cover Lines Miss Cover
16 Name Regions Miss Cover Lines Miss Cover
81 Name Regions Miss Cover Lines Miss Cover
92 Name Regions Miss Cover Lines Miss Cover
147 Name Regions Miss Cover Lines Miss Cover
163 Name Regions Miss Cover Lines Miss Cover
171 Name Regions Miss Cover Lines Miss Cover
230 Name Regions Miss Cover Lines Miss Cover
239 Name Regions Miss Cover Lines Miss Cover
255 Name Regions Miss Cover Lines Miss Cover
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp132 SourceLineInfo Lines; member
419 Result->setRelocationAddress(Lines.RelocSegment, Lines.RelocOffset); in toCodeViewSubsection()
420 Result->setFlags(Lines.Flags); in toCodeViewSubsection()
585 Result->Lines.CodeSize = Lines.header()->CodeSize; in fromCodeViewSubsection()
586 Result->Lines.RelocOffset = Lines.header()->RelocOffset; in fromCodeViewSubsection()
587 Result->Lines.RelocSegment = Lines.header()->RelocSegment; in fromCodeViewSubsection()
588 Result->Lines.Flags = static_cast<LineFlags>(uint16_t(Lines.header()->Flags)); in fromCodeViewSubsection()
589 for (const auto &L : Lines) { in fromCodeViewSubsection()
595 if (Lines.hasColumnInfo()) { in fromCodeViewSubsection()
625 for (const auto &IL : Lines) { in fromCodeViewSubsection()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()
73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
86 B.Lines.push_back(LNE); in addLineInfo()
94 assert(B.Lines.size() == B.Columns.size()); in addLineAndColumnInfo()
115 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty()); in commit()
117 BlockHeader.NumLines = B.Lines.size(); in commit()
126 if (auto EC = Writer.writeArray(makeArrayRef(B.Lines))) in commit()
141 Size += B.Lines.size() * sizeof(LineNumberEntry); in calculateSerializedSize()
/netbsd/external/apache2/llvm/dist/clang/lib/Driver/
H A DDistro.cpp31 SmallVector<StringRef, 16> Lines; in DetectOsRelease() local
32 File.get()->getBuffer().split(Lines, "\n"); in DetectOsRelease()
36 for (StringRef Line : Lines) in DetectOsRelease()
57 SmallVector<StringRef, 16> Lines; in DetectLsbRelease() local
58 File.get()->getBuffer().split(Lines, "\n"); in DetectLsbRelease()
61 for (StringRef Line : Lines) in DetectLsbRelease()
171 SmallVector<StringRef, 8> Lines; in DetectDistro() local
172 Data.split(Lines, "\n"); in DetectDistro()
173 for (const StringRef &Line : Lines) { in DetectDistro()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DHost.cpp161 SmallVector<StringRef, 32> Lines; in getHostCPUNameForARM() local
162 ProcCpuinfoContent.split(Lines, "\n"); in getHostCPUNameForARM()
171 if (Lines[I].startswith("Hardware")) in getHostCPUNameForARM()
173 if (Lines[I].startswith("CPU part")) in getHostCPUNameForARM()
274 for (auto I : Lines) in getHostCPUNameForARM()
280 for (auto I : Lines) in getHostCPUNameForARM()
304 SmallVector<StringRef, 32> Lines; in getHostCPUNameForS390x() local
305 ProcCpuinfoContent.split(Lines, "\n"); in getHostCPUNameForS390x()
311 size_t Pos = Lines[I].find(':'); in getHostCPUNameForS390x()
1603 SmallVector<StringRef, 32> Lines; in getHostCPUFeatures() local
[all …]
H A DSignals.cpp189 SmallVector<StringRef, 32> Lines; in printSymbolizedStackTrace() local
190 Output.split(Lines, "\n"); in printSymbolizedStackTrace()
191 auto CurLine = Lines.begin(); in printSymbolizedStackTrace()
207 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
215 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
H A DSpecialCaseList.cpp130 SmallVector<StringRef, 16> Lines; in parse() local
131 MB->getBuffer().split(Lines, '\n'); in parse()
136 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) { in parse()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp462 if (SS.kind() != DebugSubsectionKind::Lines) in findLineTable()
465 DebugLinesSubsectionRef Lines; in findLineTable() local
467 if (auto EC = Lines.initialize(Reader)) { in findLineTable()
472 uint32_t RelocSegment = Lines.header()->RelocSegment; in findLineTable()
473 uint32_t RelocOffset = Lines.header()->RelocOffset; in findLineTable()
474 for (const LineColumnEntry &Group : Lines) { in findLineTable()
499 if (Lines.hasColumnInfo() && ColIt != ColsEnd) { in findLineTable()
533 std::vector<LineTableEntry> Lines = findLineTable(Modi); in findLineNumbersByVA() local
534 if (Lines.empty()) in findLineNumbersByVA()
544 if (LineIter == Lines.end() || LineIter->Addr > VA) { in findLineNumbersByVA()
[all …]
H A DNativeEnumLineNumbers.cpp25 : Lines(std::move(LineNums)), Index(0) {} in NativeEnumLineNumbers()
28 return static_cast<uint32_t>(Lines.size()); in getChildCount()
35 return std::make_unique<NativeLineNumber>(Lines[N]); in getChildAtIndex()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h77 bool valid() const { return Lines.valid(); }
80 Iterator begin() const { return Lines.begin(); }
81 Iterator end() const { return Lines.end(); }
85 LinesArray Lines;
H A DDebugLinesSubsection.h88 return S->kind() == DebugSubsectionKind::Lines; in classof()
111 std::vector<LineNumberEntry> Lines; member
120 return S->kind() == DebugSubsectionKind::Lines; in classof()
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp80 void NotifyDebug(uint64_t CodeAddr, DILineInfoTable Lines);
280 DILineInfoTable Lines = Context->getLineInfoForAddressRange( in notifyObjectLoaded() local
283 NotifyDebug(*AddrOrErr, Lines); in notifyObjectLoaded()
434 DILineInfoTable Lines) { in NotifyDebug() argument
438 if (Lines.empty()) in NotifyDebug()
446 rec.NrEntry = Lines.size(); in NotifyDebug()
449 DILineInfoTable::iterator Begin = Lines.begin(); in NotifyDebug()
450 DILineInfoTable::iterator End = Lines.end(); in NotifyDebug()
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp115 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in notifyObjectLoaded() local
117 size_t num_entries = Lines.size(); in notifyObjectLoaded()
122 for (auto& It : Lines) { in notifyObjectLoaded()
126 const_cast<char *>(Lines.front().second.FileName.c_str()); in notifyObjectLoaded()
/netbsd/lib/libc/net/
H A Dnsparser.y73 | Lines
76 Lines
78 | Lines Entry
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp38 if (Lines <= 0) in load()
73 const int Lines; member in llvm::symbolize::SourceCode
79 StringRef FileName, int64_t Line, int Lines, in SourceCode() argument
81 : Line(Line), Lines(Lines), in SourceCode()
82 FirstLine(std::max(static_cast<int64_t>(1), Line - Lines / 2)), in SourceCode()
83 LastLine(FirstLine + Lines - 1), in SourceCode()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp133 if (Lines.size() == 1) { in encode()
139 for (const auto &line_entry : Lines) { in encode()
193 LineEntry Prev(BaseAddr, 1, Lines.front().Line); in encode()
201 for (const auto &Curr : Lines) { in encode()
255 LT.Lines.push_back(Row); in decode()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/
H A Dllvm-cfi-verify.cpp71 SmallVector<StringRef, 100> Lines; in printBlameContext() local
72 File->getBuffer().split(Lines, '\n'); in printBlameContext()
76 std::min<size_t>(Lines.size() + 1, LineInfo.Line + Context + 1); in printBlameContext()
83 outs() << i << ": " << Lines[i - 1] << "\n"; in printBlameContext()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DPrettyCompilandDumper.cpp56 if (opts & Flags::Lines) { in start()
70 auto Lines = Session.findLineNumbers(Symbol, *File); in start() local
71 if (!Lines) in start()
75 while (auto Line = Lines->getNext()) { in start()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
H A DDelta.cpp56 int Lines = 0; in getLines() local
61 ++Lines; in getLines()
63 return Lines; in getLines()

12345678910>>...16