HomeSort by relevance Sort by last modified time
    Searched defs:error_path (Results 1 - 4 of 4) 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_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/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
  /external/chromium_org/components/policy/core/browser/
configuration_policy_handler.cc 353 std::string error_path;
355 bool result = schema_.Validate(*value, strategy_, &error_path, &error);
358 if (error_path.empty())
359 error_path = "(ROOT)";
360 errors->AddError(policy_name_, error_path, error);
375 std::string error_path; local
378 schema_.Normalize(output->get(), strategy_, &error_path, &error, NULL);
381 if (error_path.empty())
382 error_path = "(ROOT)";
383 errors->AddError(policy_name_, error_path, error)
    [all...]

Completed in 182 milliseconds