Home
last modified time | relevance | path

Searched full:sourceline (Results 1 – 25 of 46) sorted by relevance

12

/third_party/typescript/src/compiler/
Dsourcemap.ts104 …function isBacktrackingSourcePosition(sourceIndex: number | undefined, sourceLine: number | undefi…
106 && sourceLine !== undefined
109 && (pendingSourceLine > sourceLine
110 … || pendingSourceLine === sourceLine && pendingSourceCharacter > sourceCharacter);
113 …neratedLine: number, generatedCharacter: number, sourceIndex?: number, sourceLine?: number, source…
117 … Debug.assert(sourceLine === undefined || sourceLine >= 0, "sourceLine cannot be negative");
122 isBacktrackingSourcePosition(sourceIndex, sourceLine, sourceCharacter)) {
131 … if (sourceIndex !== undefined && sourceLine !== undefined && sourceCharacter !== undefined) {
133 pendingSourceLine = sourceLine;
183 newSourceLine = raw.sourceLine;
[all …]
/third_party/typescript/src/harness/
DdocumentsUtil.ts56 sourceLine: number; property
95 let sourceLine = 0; variable
109 sourceLine += segment[2];
113 …mappingIndex: mappings.length, emittedLine, emittedColumn, sourceIndex, sourceLine, sourceColumn }; constant
125 …mappingsForSourceLine = mappingsForSource[mapping.sourceLine] || (mappingsForSource[mapping.source…
163 …public getMappingsForSourceLine(sourceIndex: number, sourceLine: number): readonly Mapping[] | und…
165 return mappingsForSource && mappingsForSource[sourceLine];
DsourceMapRecorder.ts84 …mapString += " Source(" + (mapEntry.sourceLine + 1) + ", " + (mapEntry.sourceCharacter + 1) + ") +…
221 …const sourcePos = tsLineMap[currentSpan.sourceMapSpan.sourceLine!] + (currentSpan.sourceMapSpan.so…
/third_party/python/Lib/idlelib/
Dstackviewer.py75 sourceline = linecache.getline(filename, lineno)
76 sourceline = sourceline.strip()
78 item = "%s, line %d: %s" % (modname, lineno, sourceline)
81 lineno, sourceline)
Ddebugger.py403 sourceline = linecache.getline(filename, lineno)
404 sourceline = sourceline.strip()
406 item = "%s, line %d: %s" % (modname, lineno, sourceline)
409 lineno, sourceline)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/
DRemark.h33 unsigned SourceLine = 0; member
130 LHS.SourceLine == RHS.SourceLine &&
139 return std::make_tuple(LHS.SourceFilePath, LHS.SourceLine, LHS.SourceColumn) <
140 std::make_tuple(RHS.SourceFilePath, RHS.SourceLine, RHS.SourceColumn);
DBitstreamRemarkParser.h63 Optional<uint32_t> SourceLine; member
70 Optional<uint32_t> SourceLine; member
DYAMLRemarkSerializer.h26 /// DebugLoc: { File: <SOURCEFILENAME>, Line: <SOURCELINE>,
/third_party/libexif/
D.travis.yml81 sourceline:
95 sourceline:
109 sourceline:
121 sourceline:
152 sourceline:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DBitstreamRemarkParser.cpp113 Parser.SourceLine = Record[1]; in parseRecord()
132 Parser.TmpArgs.back().SourceLine = Record[3]; in parseRecord()
551 if (Helper.SourceFileNameIdx && Helper.SourceLine && Helper.SourceColumn) { in processRemark()
557 R.Loc->SourceLine = *Helper.SourceLine; in processRemark()
591 if (Arg.SourceFileNameIdx && Arg.SourceLine && Arg.SourceColumn) { in processRemark()
596 R.Args.back().Loc->SourceLine = *Arg.SourceLine; in processRemark()
DBitstreamRemarkSerializer.cpp284 R.push_back(Loc->SourceLine); in emitRemarkBlock()
307 R.push_back(Arg.Loc->SourceLine); in emitRemarkBlock()
/third_party/python/Python/
D_warnings.c496 PyObject *text, PyObject *category, PyObject *sourceline) in show_warning() argument
531 if (sourceline) { in show_warning()
538 if (PyUnicode_READY(sourceline) < 1) in show_warning()
541 kind = PyUnicode_KIND(sourceline); in show_warning()
542 data = PyUnicode_DATA(sourceline); in show_warning()
543 len = PyUnicode_GET_LENGTH(sourceline); in show_warning()
550 truncated = PyUnicode_Substring(sourceline, i, len); in show_warning()
554 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW); in show_warning()
571 PyObject *sourceline, PyObject *source) in call_show_warning() argument
583 show_warning(tstate, filename, lineno, text, category, sourceline); in call_show_warning()
[all …]
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/
D__init__.py27 # * iterator of SourceLine
28 # * sequence of SourceLine
190 from .common import FileInfo, SourceLine
Dpure.py18 yield _common.SourceLine(
Dgcc.py76 yield _common.SourceLine(
Dcommon.py8 from ..info import FileInfo, SourceLine
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dconsistency_tools.py592 sourceline = None
597 sourceline = getattr(elem, 'sourceline', None)
601 if fn is None and sourceline is None:
605 return "Line {}: {}".format(sourceline, message)
607 if sourceline is None:
610 return "{}:{}: {}".format(fn, sourceline, message)
/third_party/node/src/
Dnode_errors.cc92 std::string sourceline(*encoded_source, encoded_source.length()); in GetErrorSource() local
95 if (sourceline.find("node-do-not-add-exception-line") != std::string::npos) { in GetErrorSource()
96 return sourceline; in GetErrorSource()
131 // sourceline to 78 characters, and we end up not providing very much in GetErrorSource()
154 sourceline.c_str()); in GetErrorSource()
160 static_cast<size_t>(end) > sourceline.size()) { in GetErrorSource()
169 if (sourceline[i] == '\0' || off >= kUnderlineBufsize) { in GetErrorSource()
173 underline_buf[off++] = (sourceline[i] == '\t') ? '\t' : ' '; in GetErrorSource()
176 if (sourceline[i] == '\0' || off >= kUnderlineBufsize) { in GetErrorSource()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DDebugInlineeLinesSubsection.cpp117 uint32_t SourceLine) { in addInlineSite() argument
123 Entry.Header.SourceLineNum = SourceLine; in addInlineSite()
/third_party/node/deps/v8/tools/
Dsourcemap.mjs296 const sourceLine = mapping[3];
297 if (!reverseMappings[sourceLine]) {
298 reverseMappings[sourceLine] = [mapping[0], mapping[1]];
/third_party/libfuse/
D.travis.yml14 - sourceline: 'ppa:ubuntu-toolchain-r/test'
/third_party/jerryscript/
D.travis.yml123 - sourceline: ppa:team-gcc-arm-embedded/ppa
153 - sourceline: ppa:team-gcc-arm-embedded/ppa
/third_party/python/Lib/test/
Dtest_sys.py452 for i, (filename, lineno, funcname, sourceline) in enumerate(stack):
458 self.assertEqual(sourceline, "g456()")
461 filename, lineno, funcname, sourceline = stack[i+1]
463 self.assertIn(sourceline, ["leave_g.wait()", "entered_g.set()"])
520 for i, (filename, lineno, funcname, sourceline) in enumerate(stack):
526 self.assertEqual(sourceline, "g456()")
529 filename, lineno, funcname, sourceline = stack[i+1]
531 self.assertTrue(sourceline.startswith("if leave_g.wait("))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSourceMgr.cpp271 ArrayRef<SMFixIt> FixIts, ArrayRef<char> SourceLine){ in buildFixItLine() argument
275 const char *LineStart = SourceLine.begin(); in buildFixItLine()
276 const char *LineEnd = SourceLine.end(); in buildFixItLine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugInlineeLinesSubsection.h105 void addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine);

12