Lines Matching refs:attributes

20 		uint attributes;  field in Mono.Cecil.TypeDefinition
38 get { return (TypeAttributes) attributes; }
40 if (IsWindowsRuntimeProjection && (ushort) value != attributes)
43 attributes = (uint) value;
282 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
283 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
287 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
288 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
292 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
293 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
297 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
298 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
302 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
303 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
307 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
308 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
312 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
313 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
317 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttr…
318 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) Ty…
322 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAttribut…
323 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAt…
327 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAttribut…
328 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAt…
332 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAttribut…
333 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAt…
337 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.ClassSemanticMask, (uint) TypeA…
338 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.ClassSemanticMask, (uint)…
342 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.ClassSemanticMask, (uint) TypeA…
343 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.ClassSemanticMask, (uint)…
347 get { return attributes.GetAttributes ((uint) TypeAttributes.Abstract); }
348 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
352 get { return attributes.GetAttributes ((uint) TypeAttributes.Sealed); }
353 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
357 get { return attributes.GetAttributes ((uint) TypeAttributes.SpecialName); }
358 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
362 get { return attributes.GetAttributes ((uint) TypeAttributes.Import); }
363 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
367 get { return attributes.GetAttributes ((uint) TypeAttributes.Serializable); }
368 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
372 get { return attributes.GetAttributes ((uint) TypeAttributes.WindowsRuntime); }
373 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.WindowsRuntime, value); }
377 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) TypeAt…
378 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) …
382 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) TypeAt…
383 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) …
387 …get { return attributes.GetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) TypeAt…
388 …set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) …
392 get { return attributes.GetAttributes ((uint) TypeAttributes.BeforeFieldInit); }
393 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
397 get { return attributes.GetAttributes ((uint) TypeAttributes.RTSpecialName); }
398 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
402 get { return attributes.GetAttributes ((uint) TypeAttributes.HasSecurity); }
403 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
455 public TypeDefinition (string @namespace, string name, TypeAttributes attributes) in TypeDefinition() argument
458 this.attributes = (uint) attributes; in TypeDefinition()
462 …public TypeDefinition (string @namespace, string name, TypeAttributes attributes, TypeReference ba… in TypeDefinition() argument
463 this (@namespace, name, attributes) in TypeDefinition()