Home | History | Annotate | Download | only in common

Lines Matching defs:choices

64     "Value does not match any valid type choices.";
66 "Value does not match any valid enum choices.";
197 // If the schema has a choices property, the instance must validate against at
199 ListValue* choices = NULL;
200 if (schema->GetList("choices", &choices)) {
201 ValidateChoices(instance, choices, path);
235 ListValue* choices,
239 for (size_t i = 0; i < choices->GetSize(); ++i) {
241 CHECK(choices->GetDictionary(i, &choice));
252 // Now add a generic error that no choices matched.
258 ListValue* choices,
260 for (size_t i = 0; i < choices->GetSize(); ++i) {
262 CHECK(choices->Get(i, &choice));