Searched refs:sourceInfo (Results 1 – 8 of 8) sorted by relevance
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
D | AtomicFUTransformerBase.kt | 48 private fun format(message: String, sourceInfo: SourceInfo? = null): String { in format() 49 var loc = if (sourceInfo == null) "" else sourceInfo.toString() + ": " in format() 50 if (verbose && sourceInfo != null && sourceInfo.i != null) in format() 51 loc += sourceInfo.i.atIndex(sourceInfo.insnList) in format() 55 protected fun info(message: String, sourceInfo: SourceInfo? = null) { in info() 56 logger.info(format(message, sourceInfo)) in info() 59 protected fun debug(message: String, sourceInfo: SourceInfo? = null) { in debug() 60 logger.debug(format(message, sourceInfo)) in debug() 63 protected fun error(message: String, sourceInfo: SourceInfo? = null) { in error() 64 logger.error(format(message, sourceInfo)) in error()
|
D | AtomicFUTransformer.kt | 224 error("Failed to analyze: $e", cv.sourceInfo) in analyzeFileForRefs() 240 error("Failed to transform: $e", cv.sourceInfo) in transformFile() 366 var sourceInfo: SourceInfo? = null in descToName() variable 502 val sourceInfo = SourceInfo(methodId, source) in descToName() constant 515 sourceInfo, access, name, desc, signature, exceptions, superMV, in descToName() 518 this.sourceInfo = mv.sourceInfo in descToName() 566 sourceInfo: SourceInfo, 577 val sourceInfo = sourceInfo.copy(insnList = instructions) constant 610 error(e.message!!, sourceInfo.copy(i = e.i)) in visitEnd() 855 debug("invoke $f.${operation.name}", sourceInfo.copy(i = operation)) in fixupOperationOnAtomicVar()
|
/external/llvm-project/flang/lib/Semantics/ |
D | semantics.cpp | 367 if (auto sourceInfo{allCooked.GetSourcePositionRange(symbol.name())}) { in DumpSymbolsSources() local 368 os << symbol.name().ToString() << ": " << sourceInfo->first.file.path() in DumpSymbolsSources() 369 << ", " << sourceInfo->first.line << ", " << sourceInfo->first.column in DumpSymbolsSources() 370 << "-" << sourceInfo->second.column << "\n"; in DumpSymbolsSources()
|
/external/catch2/include/reporters/ |
D | catch_reporter_xml.cpp | 40 void XmlReporter::writeSourceInfo( SourceLineInfo const& sourceInfo ) { in writeSourceInfo() argument 42 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo() 43 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
|
D | catch_reporter_xml.h | 27 void writeSourceInfo(SourceLineInfo const& sourceInfo);
|
/external/llvm-project/flang/tools/f18/ |
D | f18.cpp | 295 if (auto sourceInfo{ in CompileFortran() local 298 << sourceInfo->first.file.path() << ", " in CompileFortran() 299 << sourceInfo->first.line << ", " in CompileFortran() 300 << sourceInfo->first.column << "-" in CompileFortran() 301 << sourceInfo->second.column << "\n"; in CompileFortran()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 6340 void writeSourceInfo(SourceLineInfo const& sourceInfo); 16928 void XmlReporter::writeSourceInfo( SourceLineInfo const& sourceInfo ) { in writeSourceInfo() argument 16930 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo() 16931 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 6374 void writeSourceInfo(SourceLineInfo const& sourceInfo); 17186 void XmlReporter::writeSourceInfo( SourceLineInfo const& sourceInfo ) { in writeSourceInfo() argument 17188 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo() 17189 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
|