Home | History | Annotate | Download | only in runtime

Lines Matching refs:attributes

56         SymbolTableEntry(int index, unsigned attributes)
59 pack(index, attributes & ReadOnly, attributes & DontEnum);
74 unsigned attributes = 0;
76 attributes |= ReadOnly;
78 attributes |= DontEnum;
79 return attributes;
82 void setAttributes(unsigned attributes)
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum);