Lines Matching refs:host
39 llvm::Optional<llvm::StringRef> host) { in doModulesHost() argument
41 if (host) in doModulesHost()
42 result.append("F").append(host->lower()); in doModulesHost()
113 llvm::Optional<llvm::StringRef> host, in doConstant() argument
116 result.append(doModulesHost(modules, host)).append("EC"); in doConstant()
122 llvm::Optional<llvm::StringRef> host, in doDispatchTable() argument
126 result.append(doModulesHost(modules, host)).append("DT"); in doDispatchTable()
137 llvm::Optional<llvm::StringRef> host, IntrinsicType type, in doIntrinsicTypeDescriptor() argument
159 result.append(doModulesHost(modules, host)).append("C"); in doIntrinsicTypeDescriptor()
165 llvm::Optional<llvm::StringRef> host, in doProcedure() argument
168 result.append(doModulesHost(modules, host)).append("P"); in doProcedure()
173 llvm::Optional<llvm::StringRef> host, in doType() argument
177 result.append(doModulesHost(modules, host)).append("T"); in doType()
183 llvm::Optional<llvm::StringRef> host, in doTypeDescriptor() argument
187 result.append(doModulesHost(modules, host)).append("CT"); in doTypeDescriptor()
192 llvm::ArrayRef<std::string> modules, llvm::Optional<std::string> host, in doTypeDescriptor() argument
195 auto rhost = convertToStringRef(host); in doTypeDescriptor()
201 llvm::Optional<llvm::StringRef> host, in doVariable() argument
204 result.append(doModulesHost(modules, host)).append("E"); in doVariable()
210 llvm::Optional<llvm::StringRef> host, in doNamelistGroup() argument
213 result.append(doModulesHost(modules, host)).append("G"); in doNamelistGroup()
227 llvm::Optional<std::string> host; in deconstruct() local
283 host = readName(uniq, i, i + 1, end); in deconstruct()
301 return {nk, DeconstructedName(modules, host, name, kinds)}; in deconstruct()
312 !deconstructResult.second.host; in isExternalFacingUniquedName()
348 llvm::Optional<llvm::StringRef> host; in getTypeDescriptorName() local
349 if (result.second.host) in getTypeDescriptorName()
350 host = *result.second.host; in getTypeDescriptorName()
351 return doVariable(modules, host, varName); in getTypeDescriptorName()