OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_seenAttributes
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
PropertyDescriptor.h
36
,
m_seenAttributes
(0)
58
bool isEmpty() const { return !(m_value || m_getter || m_setter ||
m_seenAttributes
); }
59
bool writablePresent() const { return
m_seenAttributes
& WritablePresent; }
60
bool enumerablePresent() const { return
m_seenAttributes
& EnumerablePresent; }
61
bool configurablePresent() const { return
m_seenAttributes
& ConfigurablePresent; }
76
unsigned
m_seenAttributes
;
PropertyDescriptor.cpp
56
return m_value || (
m_seenAttributes
& WritablePresent);
96
m_seenAttributes
= EnumerablePresent | ConfigurablePresent;
100
m_seenAttributes
= EnumerablePresent | ConfigurablePresent | WritablePresent;
112
m_seenAttributes
= EnumerablePresent | ConfigurablePresent;
121
m_seenAttributes
|= WritablePresent;
130
m_seenAttributes
|= EnumerablePresent;
139
m_seenAttributes
|= ConfigurablePresent;
171
unsigned sharedSeen = other.
m_seenAttributes
&
m_seenAttributes
;
184
unsigned sharedSeen = other.
m_seenAttributes
& m_seenAttributes
[
all
...]
Completed in 1058 milliseconds