Lines Matching refs:scopedName
36 sal_Bool isGlobal(const OString& scopedName) in isGlobal() argument
38 if ((scopedName.getLength() == 0) || (scopedName.indexOf(':') == 0)) in isGlobal()
122 AstDeclaration* AstScope::lookupByName(const OString& scopedName) in lookupByName() argument
126 if (scopedName.getLength() == 0) in lookupByName()
130 if ( isGlobal(scopedName) ) in lookupByName()
141 OString subName = scopedName.copy(2); in lookupByName()
147 pDecl = pScope->lookupByName(scopedName); in lookupByName()
153 sal_Int32 nIndex = scopedName.indexOf(':'); in lookupByName()
154 OString firstScope = nIndex > 0 ? scopedName.copy(0, nIndex) : scopedName; in lookupByName()
167 pDecl = pScope->lookupByName(scopedName); in lookupByName()
176 pDecl = lookupInInherited(scopedName); in lookupByName()
181 if ( bFindFirstScope && (firstScope != scopedName) ) in lookupByName()
190 pDecl = pScope->lookupByNameLocal(scopedName.getToken(nOffset, ':', i )); in lookupByName()
205 pDecl = pScope->lookupByName(scopedName); in lookupByName()
233 AstDeclaration* AstScope::lookupInInherited(const OString& scopedName) const in lookupInInherited()
243 idlc()->error()->forwardLookupError(pInterface, scopedName); in lookupInInherited()
254 AstDeclaration* pDecl = resolved->lookupByNameLocal(scopedName); in lookupInInherited()
257 pDecl = resolved->lookupInInherited(scopedName); in lookupInInherited()