Home
last modified time | relevance | path

Searched refs:Lines (Results 1 - 25 of 64) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h53 /// push "Row" onto the end of the "LineTable.Lines" vector. The end result
75 /// LineEntry.Lines array. They do this by using some of the bits to
104 /// Lines.push_back(Row);
115 /// Opcodes that will push "Row" onto the LineEntry.Lines include the
120 Collection Lines; ///< All line entries in the line table. member in llvm::gsym::LineTable
167 bool empty() const { return Lines.empty(); } in empty()
168 void clear() { Lines.clear(); } in clear()
170 Lines.push_back(LE); in push()
173 return !Lines.empty(); in isValid()
176 return Lines in size()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DModuleWithExportedAndNonExportedImportAlias.js21 import Lines = B;
26 export var Unit: Lines.Line = new Lines.Line(Origin, { x: 1, y: 0 });
38 var line = Geometry.Lines.Line;
56 var Lines = B;
59 Geometry.Unit = new Lines.Line(Geometry.Origin, { x: 1, y: 0 });
68 var line = Geometry.Lines.Line;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp121 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} in YAMLLinesSubsection()
130 const DebugLinesSubsectionRef &Lines);
132 SourceLineInfo Lines; member
146 const DebugInlineeLinesSubsectionRef &Lines);
279 IO.mapRequired("Lines", Obj.Lines); in mapping()
325 IO.mapTag("!Lines", true); in map()
326 IO.mapRequired("CodeSize", Lines.CodeSize); in map()
328 IO.mapRequired("Flags", Lines.Flags); in map()
329 IO.mapRequired("RelocOffset", Lines in map()
580 fromCodeViewSubsection( const DebugStringTableSubsectionRef &Strings, const DebugChecksumsSubsectionRef &Checksums, const DebugLinesSubsectionRef &Lines) fromCodeViewSubsection() argument
618 fromCodeViewSubsection( const DebugStringTableSubsectionRef &Strings, const DebugChecksumsSubsectionRef &Checksums, const DebugInlineeLinesSubsectionRef &Lines) fromCodeViewSubsection() argument
798 visitLines( DebugLinesSubsectionRef &Lines, const StringsAndChecksumsRef &State) visitLines() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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()
H A DDebugInlineeLinesSubsection.cpp49 Lines.getExtractor().HasExtraFiles = hasExtraFiles(); in initialize()
50 if (auto EC = Reader.readArray(Lines, Reader.bytesRemaining())) in initialize()
H A DDebugSubsectionVisitor.cpp33 case DebugSubsectionKind::Lines: { in visitDebugSubsection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DHost.cpp155 SmallVector<StringRef, 32> Lines; in getHostCPUNameForARM() local
156 ProcCpuinfoContent.split(Lines, "\n"); in getHostCPUNameForARM()
161 for (unsigned I = 0, E = Lines.size(); I != E; ++I) { in getHostCPUNameForARM()
162 if (Lines[I].startswith("CPU implementer")) in getHostCPUNameForARM()
163 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUNameForARM()
164 if (Lines[I].startswith("Hardware")) in getHostCPUNameForARM()
165 Hardware = Lines[I].substr(8).ltrim("\t :"); in getHostCPUNameForARM()
176 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUNameForARM()
177 if (Lines[I].startswith("CPU part")) in getHostCPUNameForARM()
181 return StringSwitch<const char *>(Lines[ in getHostCPUNameForARM()
288 SmallVector<StringRef, 32> Lines; getHostCPUNameForS390x() local
[all...]
H A DSignals.cpp179 SmallVector<StringRef, 32> Lines; in printSymbolizedStackTrace() local
180 Output.split(Lines, "\n"); in printSymbolizedStackTrace()
181 auto CurLine = Lines.begin(); in printSymbolizedStackTrace()
197 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
205 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DSignals.cpp145 SmallVector<StringRef, 32> Lines; in printSymbolizedStackTrace() local
146 Output.split(Lines, "\n"); in printSymbolizedStackTrace()
147 auto CurLine = Lines.begin(); in printSymbolizedStackTrace()
157 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
165 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h77 bool valid() const { return Lines.valid(); } in valid()
80 Iterator begin() const { return Lines.begin(); } in begin()
81 Iterator end() const { return Lines.end(); } in end()
85 LinesArray Lines; member in llvm::codeview::final
H A DDebugLinesSubsection.h48 // LineNumberEntry Lines[NumLines];
88 return S->kind() == DebugSubsectionKind::Lines; in classof()
111 std::vector<LineNumberEntry> Lines; member
120 return S->kind() == DebugSubsectionKind::Lines; in classof()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp81 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()
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()
433 NotifyDebug(uint64_t CodeAddr, DILineInfoTable Lines) NotifyDebug() argument
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/
H A Dlangsvr.go251 sb.WriteString(fmt.Sprintf("```\n%v\n```", v.Definition.Range.Text(f.res.Lines)))
265 if s := tok.Text(f.res.Lines); s != "" {
268 sb.WriteString(id.Definition.Range.Text(f.res.Lines))
299 if s := tok.Text(f.res.Lines); s != "" {
316 if s := tok.Text(f.res.Lines); s != "" {
374 if _, isInst := schema.Opcodes[t.Text(f.res.Lines)]; isInst && instOffset == 0 {
385 curOffset += utf8.RuneCountInString(t.Text(f.res.Lines))
409 sb.WriteString(t.Text(f.res.Lines))
441 if s := tok.Text(f.res.Lines); s != "" {
474 End: parser.Position{Line: len(res.Lines), Colum
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/
H A Dlangsvr.go251 sb.WriteString(fmt.Sprintf("```\n%v\n```", v.Definition.Range.Text(f.res.Lines)))
265 if s := tok.Text(f.res.Lines); s != "" {
268 sb.WriteString(id.Definition.Range.Text(f.res.Lines))
299 if s := tok.Text(f.res.Lines); s != "" {
316 if s := tok.Text(f.res.Lines); s != "" {
374 if _, isInst := schema.Opcodes[t.Text(f.res.Lines)]; isInst && instOffset == 0 {
385 curOffset += utf8.RuneCountInString(t.Text(f.res.Lines))
409 sb.WriteString(t.Text(f.res.Lines))
441 if s := tok.Text(f.res.Lines); s != "" {
474 End: parser.Position{Line: len(res.Lines), Colum
[all...]
/third_party/spirv-tools/utils/vscode/src/
H A Dlangsvr.go251 sb.WriteString(fmt.Sprintf("```\n%v\n```", v.Definition.Range.Text(f.res.Lines)))
265 if s := tok.Text(f.res.Lines); s != "" {
268 sb.WriteString(id.Definition.Range.Text(f.res.Lines))
299 if s := tok.Text(f.res.Lines); s != "" {
316 if s := tok.Text(f.res.Lines); s != "" {
374 if _, isInst := schema.Opcodes[t.Text(f.res.Lines)]; isInst && instOffset == 0 {
385 curOffset += utf8.RuneCountInString(t.Text(f.res.Lines))
409 sb.WriteString(t.Text(f.res.Lines))
441 if s := tok.Text(f.res.Lines); s != "" {
474 End: parser.Position{Line: len(res.Lines), Colum
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp161 DILineInfoTable Lines = in notifyObjectLoaded() local
163 DILineInfoTable::iterator Begin = Lines.begin(); in notifyObjectLoaded()
164 DILineInfoTable::iterator End = Lines.end(); in notifyObjectLoaded()
186 SourceFileName = Lines.front().second.FileName; in notifyObjectLoaded()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp35 if (auto Lines = getLineNumbers()) { in getCompilandId()
36 if (auto FirstLine = Lines->getNext()) in getCompilandId()
H A DPDBSymbolFunc.cpp105 if (auto Lines = getLineNumbers()) { in getCompilandId()
106 if (auto FirstLine = Lines->getNext()) { in getCompilandId()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DBlockExtractor.cpp114 SmallVector<StringRef, 16> Lines; in loadFile() local
115 Buf->getBuffer().split(Lines, '\n', /*MaxSplit=*/-1, in loadFile()
117 for (const auto &Line : Lines) { in loadFile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp256 Lines.push_back(Line);
261 return lengthOfGCOVString(Filename) + 2 + Lines.size();
267 for (int i = 0, e = Lines.size(); i != e; ++i)
268 write(Lines[i]);
278 SmallVector<uint32_t, 32> Lines;
751 GCOVLines &Lines = Block.getFile(Filename);
752 Lines.addLine(Loc.getLine());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DGCOV.h331 void addLine(uint32_t N) { Lines.push_back(N); } in addLine()
332 uint32_t getLastLine() const { return Lines.back(); } in getLastLine()
386 SmallVector<uint32_t, 16> Lines; member in llvm::GCOVBlock
/third_party/vk-gl-cts/framework/referencerenderer/
H A DrrPrimitiveTypes.hpp56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Lines Assembler; };

Completed in 14 milliseconds

123