| /third_party/typescript/src/compiler/ |
| D | sourcemap.ts | 104 …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/ |
| D | documentsUtil.ts | 56 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];
|
| D | sourceMapRecorder.ts | 84 …mapString += " Source(" + (mapEntry.sourceLine + 1) + ", " + (mapEntry.sourceCharacter + 1) + ") +… 221 …const sourcePos = tsLineMap[currentSpan.sourceMapSpan.sourceLine!] + (currentSpan.sourceMapSpan.so…
|
| /third_party/python/Lib/idlelib/ |
| D | stackviewer.py | 75 sourceline = linecache.getline(filename, lineno) 76 sourceline = sourceline.strip() 78 item = "%s, line %d: %s" % (modname, lineno, sourceline) 81 lineno, sourceline)
|
| D | debugger.py | 403 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/ |
| D | Remark.h | 33 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);
|
| D | BitstreamRemarkParser.h | 63 Optional<uint32_t> SourceLine; member 70 Optional<uint32_t> SourceLine; member
|
| D | YAMLRemarkSerializer.h | 26 /// DebugLoc: { File: <SOURCEFILENAME>, Line: <SOURCELINE>,
|
| /third_party/libexif/ |
| D | .travis.yml | 81 sourceline: 95 sourceline: 109 sourceline: 121 sourceline: 152 sourceline:
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
| D | BitstreamRemarkParser.cpp | 113 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()
|
| D | BitstreamRemarkSerializer.cpp | 284 R.push_back(Loc->SourceLine); in emitRemarkBlock() 307 R.push_back(Arg.Loc->SourceLine); in emitRemarkBlock()
|
| /third_party/python/Python/ |
| D | _warnings.c | 496 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__.py | 27 # * iterator of SourceLine 28 # * sequence of SourceLine 190 from .common import FileInfo, SourceLine
|
| D | pure.py | 18 yield _common.SourceLine(
|
| D | gcc.py | 76 yield _common.SourceLine(
|
| D | common.py | 8 from ..info import FileInfo, SourceLine
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
| D | consistency_tools.py | 592 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/ |
| D | node_errors.cc | 92 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/ |
| D | DebugInlineeLinesSubsection.cpp | 117 uint32_t SourceLine) { in addInlineSite() argument 123 Entry.Header.SourceLineNum = SourceLine; in addInlineSite()
|
| /third_party/node/deps/v8/tools/ |
| D | sourcemap.mjs | 296 const sourceLine = mapping[3]; 297 if (!reverseMappings[sourceLine]) { 298 reverseMappings[sourceLine] = [mapping[0], mapping[1]];
|
| /third_party/libfuse/ |
| D | .travis.yml | 14 - sourceline: 'ppa:ubuntu-toolchain-r/test'
|
| /third_party/jerryscript/ |
| D | .travis.yml | 123 - sourceline: ppa:team-gcc-arm-embedded/ppa 153 - sourceline: ppa:team-gcc-arm-embedded/ppa
|
| /third_party/python/Lib/test/ |
| D | test_sys.py | 452 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/ |
| D | SourceMgr.cpp | 271 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/ |
| D | DebugInlineeLinesSubsection.h | 105 void addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine);
|