Lines Matching refs:found
190 // If the variable cannot be found in the scope of the local ETSGLOBAL, than we still need to check the true
724 auto found = typeAliasScope_->Bindings().find(name);
725 if (found != typeAliasScope_->Bindings().end()) {
726 return found->second;
784 auto found = typeAliasScope_->Bindings().find(name);
785 if (found != typeAliasScope_->Bindings().end()) {
786 return found->second;
819 auto found = TypeAliasScope()->Bindings().find(name);
820 if (found != TypeAliasScope()->Bindings().end()) {
821 return found->second;
826 auto found = instanceFieldScope_->Bindings().find(name);
827 if (found != instanceFieldScope_->Bindings().end()) {
828 return found->second;
833 auto found = staticFieldScope_->Bindings().find(name);
834 if (found != staticFieldScope_->Bindings().end()) {
835 return found->second;
840 auto found = instanceDeclScope_->Bindings().find(name);
841 if (found != instanceDeclScope_->Bindings().end()) {
842 return found->second;
847 auto found = staticDeclScope_->Bindings().find(name);
848 if (found != staticDeclScope_->Bindings().end()) {
849 return found->second;
854 auto found = instanceMethodScope_->Bindings().find(name);
855 if (found != instanceMethodScope_->Bindings().end()) {
856 return found->second;
861 auto found = staticMethodScope_->Bindings().find(name);
862 if (found != staticMethodScope_->Bindings().end()) {
863 return found->second;