HomeSort by relevance Sort by last modified time
    Searched refs:error_path (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/components/policy/core/common/
schema_map.cc 77 std::string error_path; local
82 &error_path,
87 << " at " << error_path;
schema.h 93 // ignored. |error_path| and |error| will contain the last error location and
96 // |strategy|, false will be returned and |error_path| and |error| will
97 // contain the corresponding error that caused the failure. |error_path| can
101 std::string* error_path,
113 std::string* error_path,
schema.cc 110 void SchemaErrorFound(std::string* error_path,
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,
    [all...]
schema_unittest.cc 180 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);
    [all...]
  /external/chromium_org/components/policy/core/browser/
configuration_policy_handler.cc 349 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, error)
    [all...]
policy_error_map.cc 110 const std::string& error_path,
113 error_path_(error_path) {};
178 const std::string& error_path,
180 AddError(new SchemaValidatingPendingError(policy, error_path, message));
policy_error_map.h 75 // |error_path|, and detailed error |message|.
77 const std::string& error_path,
  /external/chromium_org/chrome/browser/extensions/api/file_handlers/
app_file_handler_util.cc 110 void Error(const base::FilePath& error_path);
184 void WritableFileChecker::Error(const base::FilePath& error_path) {
185 DCHECK(!error_path.empty());
186 error_path_ = error_path;
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api.h 73 void HandleWritableFileError(const base::FilePath& error_path);
file_system_api.cc 289 const base::FilePath& error_path) {
292 error_path.BaseName().AsUTF8Unsafe().c_str());
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
device_policy_decoder_chromeos.cc 73 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

Completed in 802 milliseconds