OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:internalRepresentation
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebKit/win/Interfaces/
IWebSerializedJSValuePrivate.idl
43
[local] HRESULT setInternalRepresentation([in] void*
internalRepresentation
);
44
[local] HRESULT getInternalRepresentation([out, retval] void**
internalRepresentation
);
/external/webkit/Source/WebKit/mac/WebView/
WebSerializedJSValuePrivate.h
33
- (void*)
internalRepresentation
;
WebSerializedJSValue.mm
106
- (void*)
internalRepresentation
/external/webkit/Source/WebKit2/Shared/API/c/
WKSerializedScriptValue.cpp
46
WKSerializedScriptValueRef WKSerializedScriptValueCreateWithInternalRepresentation(void*
internalRepresentation
)
48
RefPtr<WebSerializedScriptValue> serializedValue = WebSerializedScriptValue::create(static_cast<WebCore::SerializedScriptValue*>(
internalRepresentation
));
59
return toImpl(scriptValueRef)->
internalRepresentation
();
/external/webkit/Source/WebKit/win/
WebSerializedJSValue.cpp
111
HRESULT WebSerializedJSValue::setInternalRepresentation(void*
internalRepresentation
)
113
if (!
internalRepresentation
|| m_value)
116
m_value = reinterpret_cast<SerializedScriptValue*>(
internalRepresentation
);
121
HRESULT WebSerializedJSValue::getInternalRepresentation(void**
internalRepresentation
)
126
*
internalRepresentation
= m_value.get();
WebSerializedJSValue.h
48
virtual HRESULT STDMETHODCALLTYPE setInternalRepresentation(void*
internalRepresentation
);
49
virtual HRESULT STDMETHODCALLTYPE getInternalRepresentation(void**
internalRepresentation
);
/external/webkit/Source/WebKit2/Shared/
WebSerializedScriptValue.h
65
void*
internalRepresentation
() { return m_serializedScriptValue.get(); }
Completed in 236 milliseconds