Lines Matching refs:assocOOP
843 OOP assocOOP; in find_class_variable() local
858 assocOOP = in find_class_variable()
861 if (!IS_NIL (assocOOP)) in find_class_variable()
862 return (assocOOP); in find_class_variable()
898 OOP symbol, root, assocOOP; in _gst_find_variable_binding() local
902 assocOOP = find_class_variable (symbol); in _gst_find_variable_binding()
904 for (elt = list; assocOOP != _gst_nil_oop && (elt = elt->v_list.next); ) in _gst_find_variable_binding()
906 root = ASSOCIATION_VALUE (assocOOP); in _gst_find_variable_binding()
908 assocOOP = _gst_namespace_association_at (root, symbol); in _gst_find_variable_binding()
911 if (!IS_NIL (assocOOP)) in _gst_find_variable_binding()
912 return _gst_make_oop_constant (&list->location, assocOOP); in _gst_find_variable_binding()
920 assocOOP = _gst_namespace_association_at (dictOOP, symbol); in _gst_find_variable_binding()
921 if (IS_NIL (assocOOP)) in _gst_find_variable_binding()
922 assocOOP = NAMESPACE_AT_PUT (dictOOP, symbol, _gst_nil_oop); in _gst_find_variable_binding()
923 return _gst_make_oop_constant (&list->location, assocOOP); in _gst_find_variable_binding()