Home
last modified time | relevance | path

Searched refs:JSONArrayBase (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
DJSONValues.cpp378 JSONArrayBase::~JSONArrayBase() in ~JSONArrayBase()
382 bool JSONArrayBase::asArray(RefPtr<JSONArray>* output) in asArray()
384 COMPILE_ASSERT(sizeof(JSONArrayBase) == sizeof(JSONArray), cannot_cast); in asArray()
389 PassRefPtr<JSONArray> JSONArrayBase::asArray() in asArray()
391 COMPILE_ASSERT(sizeof(JSONArrayBase) == sizeof(JSONArray), cannot_cast); in asArray()
395 void JSONArrayBase::writeJSON(StringBuilder* output) const in writeJSON()
406 JSONArrayBase::JSONArrayBase() in JSONArrayBase() function in WebCore::JSONArrayBase
412 void JSONArrayBase::pushBoolean(bool value) in pushBoolean()
417 void JSONArrayBase::pushInt(int value) in pushInt()
422 void JSONArrayBase::pushNumber(double value) in pushNumber()
[all …]
DJSONValues.h246 class PLATFORM_EXPORT JSONArrayBase : public JSONValue {
256 virtual ~JSONArrayBase();
278 JSONArrayBase();
284 class PLATFORM_EXPORT JSONArray : public JSONArrayBase {
291 using JSONArrayBase::asArray;
293 using JSONArrayBase::pushBoolean;
294 using JSONArrayBase::pushInt;
295 using JSONArrayBase::pushNumber;
296 using JSONArrayBase::pushString;
297 using JSONArrayBase::pushValue;
[all …]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorInputAgent.cpp206 JSONArrayBase::iterator iter; in dispatchTouchEvent()