Searched refs:bindName (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/flang/lib/Semantics/ |
D | mod-file.cpp | 264 PutAttrs(decls_, symbol.attrs(), x.bindName(), ""s); in PutSymbol() 351 PutAttrs(os, bindAttrs, details.bindName(), " "s, ""s); in PutSubprogram() 601 MaybeExpr bindName; in PutEntity() local 603 [&](const SubprogramDetails &x) { bindName = x.bindName(); }, in PutEntity() 604 [&](const ObjectEntityDetails &x) { bindName = x.bindName(); }, in PutEntity() 605 [&](const ProcEntityDetails &x) { bindName = x.bindName(); }, in PutEntity() 609 PutAttrs(os, attrs, bindName); in PutEntity() 616 const MaybeExpr &bindName, std::string before, std::string after) { in PutAttrs() argument 619 if (bindName) { in PutAttrs() 620 bindName->AsFortran(os << before << "bind(c, name=") << ')' << after; in PutAttrs()
|
D | symbol.cpp | 364 DumpExpr(os, "bindName", x.bindName()); in operator <<()
|
D | check-declarations.cpp | 1669 MaybeExpr bindName1{details1.bindName()}; in Check() 1670 MaybeExpr bindName2{details2.bindName()}; in Check()
|
/external/python/cpython2/Lib/idlelib/ |
D | configDialog.py | 666 bindName = binding.split()[0] #first part, up to first space 677 newKeys = GetKeysDialog(self, 'Get New Keys', bindName, 691 self.listBindings.insert(listIndex, bindName+' - '+newKeys) 751 for bindName in bindNames: 752 key = ' '.join(keySet[bindName]) #make key(s) into a string 753 bindName = bindName[2:-2] #trim off the angle brackets 756 if bindName in self.changedItems['keys'][keySetName]: 757 key = self.changedItems['keys'][keySetName][bindName] 758 self.listBindings.insert(END, bindName+' - '+key)
|
/external/llvm-project/flang/include/flang/Semantics/ |
D | symbol.h | 70 MaybeExpr bindName() const { return bindName_; } in bindName() function 129 MaybeExpr bindName() const { return bindName_; } in bindName() function 317 MaybeExpr bindName() const { return bindName_; } in bindName() function
|