OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:JSONString
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
JSONValues.h
133
class PLATFORM_EXPORT
JSONString
: public JSONValue {
135
static PassRefPtr<
JSONString
> create(const String& value)
137
return adoptRef(new
JSONString
(value));
140
static PassRefPtr<
JSONString
> create(const char* value)
142
return adoptRef(new
JSONString
(value));
150
explicit
JSONString
(const String& value) : JSONValue(TypeString), m_stringValue(value) { }
151
explicit
JSONString
(const char* value) : JSONValue(TypeString), m_stringValue(value) { }
330
setValue(name,
JSONString
::create(value));
371
m_data.append(
JSONString
::create(value));
/external/chromium_org/tools/traceline/traceline/
main.cc
30
std::string
JSONString
(const std::string& str) {
[
all
...]
/external/robolectric/lib/main/
json-20080701.jar
Completed in 605 milliseconds