Home
last modified time | relevance | path

Searched refs:sourceFileName (Results 1 – 16 of 16) sorted by relevance

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DClassCoverageImpl.java31 private String sourceFileName; field in ClassCoverageImpl
106 public void setSourceFileName(final String sourceFileName) { in setSourceFileName() argument
107 this.sourceFileName = sourceFileName; in setSourceFileName()
138 return sourceFileName; in getSourceFileName()
/external/llvm-project/flang/runtime/
Dterminator.h25 explicit Terminator(const char *sourceFileName, int sourceLine = 0)
26 : sourceFileName_{sourceFileName}, sourceLine_{sourceLine} {}
27 void SetLocation(const char *sourceFileName = nullptr, int sourceLine = 0) {
28 sourceFileName_ = sourceFileName;
Dio-error.cpp20 void IoErrorHandler::Begin(const char *sourceFileName, int sourceLine) { in Begin() argument
24 SetLocation(sourceFileName, sourceLine); in Begin()
Dio-error.h30 void Begin(const char *sourceFileName, int sourceLine);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
DClassPage.java96 final String sourceFileName = getNode().getSourceFileName(); in content() local
97 if (sourceFileName == null) { in content()
104 sourcePath = getNode().getPackageName() + "/" + sourceFileName; in content()
106 sourcePath = sourceFileName; in content()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DKotlinInlineFilterTest.java38 context.sourceFileName = "callsite.kt"; in should_filter()
115 context.sourceFileName = "example.kt"; in should_filter_when_in_same_file()
207 context.sourceFileName = "callsite.kt"; in should_throw_exception_when_unexpected_FileInfo()
228 context.sourceFileName = "example.kt"; in should_throw_exception_when_no_SourceFileId_for_SourceFile()
252 context.sourceFileName = "callsite.kt"; in should_throw_exception_when_unexpected_LineInfo()
DFilterContextMock.java25 public String sourceFileName = "Foo.java"; field in FilterContextMock
41 return sourceFileName; in getSourceFileName()
DKotlinGeneratedFilterTest.java77 context.sourceFileName = null; in testNoLinesForKotlinNoDebug()
93 context.sourceFileName = null; in testWithLinesForKotlinNoDebug()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/output/
DBasicOutputSourceFileGenerator.java37 String sourceFileName = inputFile.getName(); in generate() local
40 return new File(new File(baseDir, packageSubDir), sourceFileName); in generate()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DKotlinInlineFilter.java60 private static int getFirstGeneratedLineNumber(final String sourceFileName, in getFirstGeneratedLineNumber() argument
67 expectLine(br, sourceFileName); in getFirstGeneratedLineNumber()
86 if (fileName.equals(sourceFileName)) { in getFirstGeneratedLineNumber()
/external/guice/core/test/com/google/inject/
DBinderTest.java139 String sourceFileName = getDeclaringSourcePart(getClass()); in testMissingBindings()
144 sourceFileName, in testMissingBindings()
147 sourceFileName, in testMissingBindings()
150 sourceFileName, in testMissingBindings()
153 sourceFileName); in testMissingBindings()
/external/eigen/cmake/
DFindComputeCpp.cmake172 get_filename_component(sourceFileName ${sourceFile} NAME)
175 set(outputSyclFile ${binaryDir}/${sourceFileName}.sycl)
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
DXLIFF2ICUConverter.java150 private String sourceFileName = null; field in XLIFF2ICUConverter
187 sourceFileName = options[SOURCEONLY].value; in processArgs()
502 writeResource(set[0], xmlfileName, sourceFileName); in writeResource()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp278 RAW_METHOD_DUMP(OS, sourceFileName); in dump()
/external/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp278 RAW_METHOD_DUMP(OS, sourceFileName); in dump()
/external/fonttools/Lib/fontTools/ufoLib/
D__init__.py1661 def copyImageFromReader(self, reader, sourceFileName, destFileName, validate=None): argument