Lines Matching defs:node
185 scoped_ptr<Value> node;
193 node.reset(Value::CreateNullValue());
197 node.reset(Value::CreateBooleanValue(true));
201 node.reset(Value::CreateBooleanValue(false));
205 node.reset(DecodeNumber(token));
206 if (!node.get())
211 node.reset(DecodeString(token));
212 if (!node.get())
221 node.reset(new ListValue());
226 static_cast<ListValue*>(node.get())->Append(array_node);
259 node.reset(new DictionaryValue);
284 static_cast<DictionaryValue*>(node.get())->SetWithoutPathExpansion(
321 return node.release();