Home | History | Annotate | Download | only in gn

Lines Matching refs:err

121   Err err = build_settings_.item_tree().CheckForBadItems();
122 if (err.has_error()) {
123 err.PrintToStdout();
143 Err(Location(), "Can't find source root.",
165 Err(Location(), "Could not load dotfile.",
171 Err err;
172 dotfile_tokens_ = Tokenizer::Tokenize(dotfile_input_file_.get(), &err);
173 if (err.has_error()) {
174 err.PrintToStdout();
178 dotfile_root_ = Parser::Parse(dotfile_tokens_, &err);
179 if (err.has_error()) {
180 err.PrintToStdout();
184 dotfile_root_->AsBlock()->ExecuteBlockInScope(&dotfile_scope_, &err);
185 if (err.has_error()) {
186 err.PrintToStdout();
194 Err err;
207 if (!secondary_value->VerifyTypeIs(Value::STRING, &err)) {
208 err.PrintToStdout();
220 Err(Location(), "No build config file.",
224 } else if (!build_config_value->VerifyTypeIs(Value::STRING, &err)) {
225 err.PrintToStdout();