Lines Matching refs:nullptr

36   Value output(nullptr, Value::LIST);
37 output.list_value().push_back(Value(nullptr, ""));
38 output.list_value().push_back(Value(nullptr, "foo"));
39 output.list_value().push_back(Value(nullptr, ""));
40 output.list_value().push_back(Value(nullptr, "bar"));
42 ConvertValueToOutput(settings(), output, Value(nullptr, "list lines"), result,
51 Value output(nullptr, "foo bar");
53 ConvertValueToOutput(settings(), output, Value(nullptr, "string"), result,
62 Value output(nullptr, int64_t(6));
64 ConvertValueToOutput(settings(), output, Value(nullptr, "string"), result,
73 Value output(nullptr, true);
75 ConvertValueToOutput(settings(), output, Value(nullptr, "string"), result,
84 Value output(nullptr, Value::LIST);
85 output.list_value().push_back(Value(nullptr, "foo"));
86 output.list_value().push_back(Value(nullptr, "bar"));
87 output.list_value().push_back(Value(nullptr, int64_t(6)));
89 ConvertValueToOutput(settings(), output, Value(nullptr, "string"), result,
101 Value value(nullptr, "hello");
102 new_scope->SetValue("v", value, nullptr);
104 new_scope->SetValue(private_var_name, value, nullptr);
107 ConvertValueToOutput(settings(), Value(nullptr, std::move(new_scope)),
108 Value(nullptr, "string"), result, &err);
115 Value output(nullptr, "foo bar");
117 ConvertValueToOutput(settings(), output, Value(nullptr, "value"), result,
126 Value output(nullptr, int64_t(6));
128 ConvertValueToOutput(settings(), output, Value(nullptr, "value"), result,
137 Value output(nullptr, true);
139 ConvertValueToOutput(settings(), output, Value(nullptr, "value"), result,
148 Value output(nullptr, Value::LIST);
149 output.list_value().push_back(Value(nullptr, "foo"));
150 output.list_value().push_back(Value(nullptr, "bar"));
151 output.list_value().push_back(Value(nullptr, int64_t(6)));
153 ConvertValueToOutput(settings(), output, Value(nullptr, "value"), result,
165 Value value(nullptr, "hello");
166 new_scope->SetValue("v", value, nullptr);
168 new_scope->SetValue(private_var_name, value, nullptr);
171 ConvertValueToOutput(settings(), Value(nullptr, std::move(new_scope)),
172 Value(nullptr, "value"), result, &err);
181 Value a_value(nullptr, "foo");
182 new_scope->SetValue("a", a_value, nullptr);
183 Value b_value(nullptr, int64_t(6));
184 new_scope->SetValue("b", b_value, nullptr);
187 Value e_value(nullptr, Value::LIST);
188 e_value.list_value().push_back(Value(nullptr, "bar"));
191 Value f_value(nullptr, "baz");
192 e_value_scope->SetValue("f", f_value, nullptr);
193 e_value.list_value().push_back(Value(nullptr, std::move(e_value_scope)));
195 c_scope->SetValue("e", e_value, nullptr);
197 new_scope->SetValue("c", Value(nullptr, std::move(c_scope)), nullptr);
212 ConvertValueToOutput(settings(), Value(nullptr, std::move(new_scope)),
213 Value(nullptr, "json"), result, &err);
221 ConvertValueToOutput(settings(), Value(), Value(nullptr, ""), result, &err);
228 Value output(nullptr, "foo bar");
230 ConvertValueToOutput(settings(), output, Value(nullptr, ""), result, &err);
238 Value output(nullptr, Value::LIST);
239 output.list_value().push_back(Value(nullptr, ""));
240 output.list_value().push_back(Value(nullptr, "foo"));
241 output.list_value().push_back(Value(nullptr, ""));
242 output.list_value().push_back(Value(nullptr, "bar"));
244 ConvertValueToOutput(settings(), output, Value(nullptr, ""), result, &err);
253 Value result = ConvertInputToValue(settings(), input, nullptr,
254 Value(nullptr, "string"), &err);
258 ConvertValueToOutput(settings(), result, Value(nullptr, "string"), reverse,
268 Value result = ConvertInputToValue(settings(), input, nullptr,
269 Value(nullptr, "list lines"), &err);
273 ConvertValueToOutput(settings(), result, Value(nullptr, "list lines"),
283 Value result = ConvertInputToValue(settings(), input, nullptr,
284 Value(nullptr, "value"), &err);
288 ConvertValueToOutput(settings(), result, Value(nullptr, "value"), reverse,
298 Value result = ConvertInputToValue(settings(), input, nullptr,
299 Value(nullptr, "value"), &err);
303 ConvertValueToOutput(settings(), result, Value(nullptr, "value"), reverse,
313 Value result = ConvertInputToValue(settings(), input, nullptr,
314 Value(nullptr, "value"), &err);
318 ConvertValueToOutput(settings(), result, Value(nullptr, "value"), reverse,
328 Value result = ConvertInputToValue(settings(), input, nullptr,
329 Value(nullptr, "scope"), &err);
333 ConvertValueToOutput(settings(), result, Value(nullptr, "scope"), reverse,
342 Value result = ConvertInputToValue(settings(), "", nullptr,
343 Value(nullptr, "value"), &err);
347 ConvertValueToOutput(settings(), result, Value(nullptr, "value"), reverse,