Lines Matching refs:jsonML
68 v8::Local<v8::Array> jsonML, int maxDepth) {
69 if (!jsonML->Length()) return true;
80 if (!jsonML->Get(context, 0).ToLocal(&firstValue)) {
85 if (jsonML->Length() == 2 && firstValue->IsString() &&
88 if (!jsonML->Get(context, 1).ToLocal(&attributesValue)) {
138 if (jsonML->Set(context, 1, jsonWrapper).IsNothing()) {
143 for (uint32_t i = 0; i < jsonML->Length(); ++i) {
145 if (!jsonML->Get(context, i).ToLocal(&value)) {
241 v8::Local<v8::Array> jsonML = formattedValue.As<v8::Array>();
242 if (jsonML->Length() &&
246 jsonML, kMaxCustomPreviewDepth)) {
249 info.GetReturnValue().Set(jsonML);
312 v8::Local<v8::Array> jsonML = formattedValue.As<v8::Array>();
331 if (jsonML->Length() && !substituteObjectTags(sessionId, groupName, context,
332 jsonML, maxDepth)) {
337 if (!v8::JSON::Stringify(context, jsonML).ToLocal(&header)) {