Home | History | Annotate | Download | only in Utils

Lines Matching refs:Descriptor

26 // Currently, the following descriptor types are supported:
44 // New rewrite descriptors can be created. Addding a new rewrite descriptor
47 // a) extended the rewrite descriptor kind enumeration
49 // b) implementing the new descriptor
264 for (auto &Descriptor : *DescriptorList)
265 if (!parseEntry(YS, Descriptor, DL))
287 YS.printError(Entry.getValue(), "rewrite descriptor must be a map");
305 yaml::MappingNode *Descriptor,
312 for (auto &Field : *Descriptor) {
321 YS.printError(Field.getKey(), "descriptor key must be a scalar");
327 YS.printError(Field.getValue(), "descriptor value must be a scalar");
356 YS.printError(Descriptor,
362 // descriptor type
373 yaml::MappingNode *Descriptor,
379 for (auto &Field : *Descriptor) {
388 YS.printError(Field.getKey(), "descriptor Key must be a scalar");
394 YS.printError(Field.getValue(), "descriptor value must be a scalar");
418 YS.printError(Descriptor,
435 yaml::MappingNode *Descriptor,
441 for (auto &Field : *Descriptor) {
450 YS.printError(Field.getKey(), "descriptor key must be a scalar");
456 YS.printError(Field.getValue(), "descriptor value must be a scalar");
480 YS.printError(Descriptor,
526 for (auto &Descriptor : Descriptors)
527 Changed |= Descriptor.performOnModule(M);