OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSONObjectBase
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
JSONValues.h
156
class PLATFORM_EXPORT
JSONObjectBase
: public JSONValue {
168
~
JSONObjectBase
();
206
JSONObjectBase
();
213
class PLATFORM_EXPORT JSONObject : public
JSONObjectBase
{
220
using
JSONObjectBase
::asObject;
222
using
JSONObjectBase
::setBoolean;
223
using
JSONObjectBase
::setNumber;
224
using
JSONObjectBase
::setString;
225
using
JSONObjectBase
::setValue;
226
using
JSONObjectBase
::setObject
[
all
...]
JSONValues.cpp
251
JSONObjectBase
::~
JSONObjectBase
()
255
bool
JSONObjectBase
::asObject(RefPtr<JSONObject>* output)
257
COMPILE_ASSERT(sizeof(JSONObject) == sizeof(
JSONObjectBase
), cannot_cast);
262
PassRefPtr<JSONObject>
JSONObjectBase
::asObject()
267
JSONObject*
JSONObjectBase
::openAccessors()
269
COMPILE_ASSERT(sizeof(JSONObject) == sizeof(
JSONObjectBase
), cannot_cast);
273
bool
JSONObjectBase
::getBoolean(const String& name, bool* output) const
281
bool
JSONObjectBase
::getString(const String& name, String* output) const
289
PassRefPtr<JSONObject>
JSONObjectBase
::getObject(const String& name) cons
[
all
...]
Completed in 555 milliseconds