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 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...]

Completed in 377 milliseconds