OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_refCountAndFlags
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/text/
StringImplBase.h
36
bool isStringImpl() { return (
m_refCountAndFlags
& s_refCountInvalidForStringImpl) != s_refCountInvalidForStringImpl; }
38
void ref() {
m_refCountAndFlags
+= s_refCountIncrement; }
52
:
m_refCountAndFlags
(s_refCountIncrement | s_refCountFlagShouldReportedCost | ownership)
60
:
m_refCountAndFlags
(s_refCountFlagStatic | s_refCountFlagIsIdentifier | BufferOwned)
70
:
m_refCountAndFlags
(s_refCountIncrement | s_refCountInvalidForStringImpl)
92
unsigned
m_refCountAndFlags
;
StringImpl.h
209
if (
m_refCountAndFlags
& s_refCountFlagShouldReportedCost) {
210
m_refCountAndFlags
&= ~s_refCountFlagShouldReportedCost;
216
bool isIdentifier() const { return
m_refCountAndFlags
& s_refCountFlagIsIdentifier; }
221
m_refCountAndFlags
|= s_refCountFlagIsIdentifier;
223
m_refCountAndFlags
&= ~s_refCountFlagIsIdentifier;
226
bool hasTerminatingNullCharacter() const { return
m_refCountAndFlags
& s_refCountFlagHasTerminatingNullCharacter; }
228
bool isAtomic() const { return
m_refCountAndFlags
& s_refCountFlagIsAtomic; }
233
m_refCountAndFlags
|= s_refCountFlagIsAtomic;
235
m_refCountAndFlags
&= ~s_refCountFlagIsAtomic;
241
ALWAYS_INLINE void deref() {
m_refCountAndFlags
-= s_refCountIncrement; if (!(m_refCountAndFlags & (s_refCountMask | s_refCountFlagStatic))) delet (…)
[
all
...]
StringImpl.cpp
151
m_refCountAndFlags
= (
m_refCountAndFlags
& ~s_refCountMaskBufferOwnership) | BufferShared;
1063
terminatedString->
m_refCountAndFlags
|= s_refCountFlagHasTerminatingNullCharacter;
/external/webkit/Source/JavaScriptCore/runtime/
RopeImpl.h
74
m_refCountAndFlags
-= s_refCountIncrement;
75
if (!(
m_refCountAndFlags
& s_refCountMask))
89
bool hasOneRef() { return (
m_refCountAndFlags
& s_refCountMask) == s_refCountIncrement; }
Completed in 69 milliseconds