Home
last modified time | relevance | path

Searched refs:bindName (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dsymbol.cpp95 DumpOptional(os, "bindName", x.bindName()); in operator <<()
312 return x.bindName(); in GetBindName()
373 DumpOptional(os, "bindName", x.bindName()); in operator <<()
406 DumpOptional(os, "bindName", x.bindName()); in operator <<()
493 DumpOptional(os, "bindName", x.bindName()); in operator <<()
H A Dmod-file.cpp322 PutAttrs(decls_, symbol.attrs(), x.bindName(), ""s); in PutSymbol()
466 PutAttrs(os, bindAttrs, details.bindName(), " "s, ""s); in PutSubprogram()
775 const std::string *bindName, std::string before, std::string after) { in PutAttrs() argument
778 if (bindName) { in PutAttrs()
779 os << before << "bind(c, name=\"" << *bindName << "\")" << after; in PutAttrs()
H A Dcheck-declarations.cpp2223 const std::string *bindName1{details1.bindName()}; in Check()
2224 const std::string *bindName2{details2.bindName()}; in Check()
2239 *details1.bindName(), *details2.bindName()); in Check()
/llvm-project-15.0.7/flang/lib/Lower/
H A DCallInterface.cpp32 const std::string *bindName = symbol.GetBindName(); in getMangledName() local
35 if (bindName && Fortran::semantics::ClassifyProcedure(symbol) == in getMangledName()
38 return bindName ? *bindName : Fortran::lower::mangle::mangleName(symbol); in getMangledName()
/llvm-project-15.0.7/flang/include/flang/Semantics/
H A Dsymbol.h70 const std::string *bindName() const { in bindName() function