33 references to ScopeMask
System (14)
compmod\microsoft\csharp\csharpcodeprovider.cs (5)
1893
&& (e.Attributes & MemberAttributes.
ScopeMask
) != MemberAttributes.Abstract) {
1975
if (IsCurrentInterface || (e.Attributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Abstract) {
1988
if (IsCurrentInterface || (e.Attributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Abstract) {
2080
switch (attributes & MemberAttributes.
ScopeMask
) {
2170
switch (attributes & MemberAttributes.
ScopeMask
) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (4)
737
switch (attributes & MemberAttributes.
ScopeMask
) {
803
switch (attributes & MemberAttributes.
ScopeMask
) {
1915
&& (e.Attributes & MemberAttributes.
ScopeMask
) != MemberAttributes.Abstract) {
2046
if (!c.IsInterface && (e.Attributes & MemberAttributes.
ScopeMask
) != MemberAttributes.Abstract) {
compmod\system\codedom\compiler\CodeGenerator.cs (2)
1053
switch (attributes & MemberAttributes.
ScopeMask
) {
1107
switch (attributes & MemberAttributes.
ScopeMask
) {
compmod\system\codedom\compiler\CodeValidator.cs (3)
262
if (!(IsCurrentInterface || (e.Attributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Abstract)) {
268
if (!(IsCurrentInterface || (e.Attributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Abstract)) {
317
&& (e.Attributes & MemberAttributes.
ScopeMask
) != MemberAttributes.Abstract) {
System.Web (11)
Compilation\BaseCodeDomTreeGenerator.cs (1)
514
prop.Attributes &= ~MemberAttributes.
ScopeMask
;
Compilation\PageCodeDomTreeGenerator.cs (6)
355
method.Attributes &= ~MemberAttributes.
ScopeMask
;
457
method.Attributes &= ~MemberAttributes.
ScopeMask
;
484
method.Attributes &= ~MemberAttributes.
ScopeMask
;
515
method.Attributes &= ~MemberAttributes.
ScopeMask
;
542
method.Attributes &= ~MemberAttributes.
ScopeMask
;
570
method.Attributes &= ~MemberAttributes.
ScopeMask
;
Compilation\TemplateControlCodeDomTreeGenerator.cs (4)
123
prop.Attributes &= ~MemberAttributes.
ScopeMask
;
171
method.Attributes &= ~MemberAttributes.
ScopeMask
;
233
prop.Attributes &= ~MemberAttributes.
ScopeMask
;
254
prop.Attributes &= ~MemberAttributes.
ScopeMask
;
System.Web.Services (1)
System\Web\Services\Description\WebCodeGenerator.cs (1)
176
method.Attributes = (method.Attributes & ~MemberAttributes.
ScopeMask
) | MemberAttributes.Abstract;
System.Workflow.ComponentModel (7)
AuthoringOM\Compiler\TypeSystem\Helper.cs (7)
51
if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Abstract)
53
else if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Final)
55
else if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Static)
86
if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Const)
88
else if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Static)
113
if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Abstract)
115
else if ((memberAttributes & MemberAttributes.
ScopeMask
) == MemberAttributes.Final)