Searched defs:error_path (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/components/policy/core/common/
H A Dschema_map.cc77 std::string error_path; local
82 &error_path,
87 << " at " << error_path;
H A Dschema_unittest.cc180 std::string error_path = "NOT_SET"; local
183 bool returned = schema.Validate(value, SCHEMA_STRICT, &error_path, &error);
184 ASSERT_FALSE(returned) << error_path;
185 EXPECT_EQ(error_path, expected_failure_path);
H A Dschema.cc110 void SchemaErrorFound(std::string* error_path, argument
113 if (error_path)
114 *error_path = "";
774 std::string* error_path,
777 SchemaErrorFound(error_path, error, "The schema is invalid.");
790 error_path, error, "The value type doesn't match the schema type.");
804 SchemaErrorFound(error_path, error, "Unknown property: " + it.key());
812 error_path,
815 AddDictKeyPrefixToPath(it.key(), error_path);
828 error_path,
772 Validate(const base::Value& value, SchemaOnErrorStrategy strategy, std::string* error_path, std::string* error) const argument
853 Normalize(base::Value* value, SchemaOnErrorStrategy strategy, std::string* error_path, std::string* error, bool* changed) const argument
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_policy_decoder_chromeos.cc73 std::string error_path; local
77 root, SCHEMA_ALLOW_UNKNOWN, &error_path, &error, &changed)) {
79 << error << " at " << error_path << "."; local
85 << " were dropped: " << error << " at " << error_path << "."; local
/external/chromium_org/chrome/browser/extensions/api/file_handlers/
H A Dapp_file_handler_util.cc110 void Error(const base::FilePath& error_path);
184 void WritableFileChecker::Error(const base::FilePath& error_path) { argument
185 DCHECK(!error_path.empty());
186 error_path_ = error_path;
/external/chromium_org/components/policy/core/browser/
H A Dpolicy_error_map.cc110 const std::string& error_path,
113 error_path_(error_path) {};
178 const std::string& error_path,
180 AddError(new SchemaValidatingPendingError(policy, error_path, message));
109 SchemaValidatingPendingError(const std::string& policy_name, const std::string& error_path, const std::string& replacement) argument
177 AddError(const std::string& policy, const std::string& error_path, const std::string& message) argument
H A Dconfiguration_policy_handler.cc349 std::string error_path;
351 bool result = schema_.Validate(*value, strategy_, &error_path, &error);
354 if (error_path.empty())
355 error_path = "(ROOT)";
356 errors->AddError(policy_name_, error_path, error);
371 std::string error_path; local
374 schema_.Normalize(output->get(), strategy_, &error_path, &error, NULL);
377 if (error_path.empty())
378 error_path = "(ROOT)";
379 errors->AddError(policy_name_, error_path, erro
[all...]
/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dfile_system_api.cc289 const base::FilePath& error_path) {
292 error_path.BaseName().AsUTF8Unsafe().c_str());
288 HandleWritableFileError( const base::FilePath& error_path) argument

Completed in 194 milliseconds