Home
last modified time | relevance | path

Searched refs:CLASSES (Results 1 – 4 of 4) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/doxy/node/
Dxml2js.js97 CLASSES: {}, property
159 _.each(getSubclassNames(spec_c), function(className) { xml2js.CLASSES[className] = {} });
165 _.extend(xml2js.CLASSES[className], {
193 if (_.has(xml2js.CLASSES, c)) {
194 xml2js.CLASSES[c].group = group;
208 var ungrouped = _.difference(_.keys(xml2js.CLASSES), grouped);
215 ungrouped = _.difference(_.keys(xml2js.CLASSES), grouped);
219 xml2js.CLASSES[c].enums_by_group[enumGroupName] = enumGroupSpec;
221 xml2js.CLASSES[c].enums[enumName] = xml2js.ENUMS[enumName];
349 xml2js.CLASSES[arrayType] = {
[all …]
/hardware/bsp/intel/peripheral/libupm/doxy/node/generators/yuidoc/
Dgenerator.js44 docs += GENERATE_CLASSES(specjs.CLASSES);
48 var ungrouped = _.difference(_.keys(specjs.CLASSES), grouped);
49 docs += GENERATE_CLASSES(_.pick(specjs.CLASSES, ungrouped), 'common');
51 docs += GENERATE_CLASSES(_.pick(specjs.CLASSES, groupSpec.classes), groupName);
/hardware/bsp/intel/peripheral/libupm/doxy/node/generators/ternjs/
Dgenerator.js46 _.extend(docs[specjs.MODULE], GENERATE_CLASSES(specjs.CLASSES));
49 var ungrouped = _.difference(_.keys(specjs.CLASSES), grouped);
50 _.extend(docs[specjs.MODULE], GENERATE_CLASSES(_.pick(specjs.CLASSES, ungrouped)));
53 … _.extend(docs[groupName], GENERATE_CLASSES(_.pick(specjs.CLASSES, groupSpec.classes), groupName));
/hardware/bsp/intel/peripheral/libupm/doxy/node/generators/jsdoc/
Dgenerator.js38 docs = _.reduce(specjs.CLASSES, function(memo, classSpec, parentClass) {