Lines Matching refs:getText

528       var enumGroupName = getText(getChild(enumGroup, 'name'), 'name');
529 var enumGroupDescription = getText(getChild(enumGroup, 'detaileddescription'), 'description');
539 var enumName = getText(getChild(e, 'name'), 'name').replace(/^MRAA_/, '');
540 var enumDescription = getText(getChild(e, 'detaileddescription'), 'description');
558 return getText(getChild(spec_c, 'compoundname'), 'name').replace(xml2js.opts.module + '::', '');
564 return getText(getChild(spec_c, 'detaileddescription'), 'description');
579 return getText(innerclass).replace(xml2js.opts.module + '::', '');
596 parent = getText(parent);
607 ((_.size(paramsSpec) == 1) && getText(getChild(paramsSpec[0], 'type')) == 'void'));
622 var methodName = getText(getChild(method, 'name'), 'name');
626 var methodDescription = getText(description, 'description');
676 var varName = getText(getChild(variable, 'name'), 'name');
677 var varType = getType(getText(getChild(variable, 'type')), parent);
678 var varDescription = getText(getChild(variable, 'detaileddescription'));
691 var retType = getType(getText(spec_c, 'type'), parent);
692 var retDescription = (details ? getText(details, 'description') : '');
705 var paramType = getType(getText(getChild(param, 'type'), 'type'), parent);
706 var paramName = getText(getChild(param, 'declname'), 'name');
717 …var getParamName = function(p) { return getText(getChild(getChild(p, 'parameternamelist'), 'parame…
719 var paramDescription = getText(getChild(param, 'parameterdescription'), 'description');
857 function getText(obj, why) { function
866 return text += getText(elem, why) + ' \n';
868 return text += GENERATE_LINK(getText(elem, why));
877 return text += '\n' + getText(elem, why) + ' \n \n';
879 return text += '+ ' + getText(elem, why) + '\n';
881 return text += '__' + getText(elem, why).trim() + '__ ';
883 … return text += '[' + getText(elem, why).trim() + '](' + getAttr(elem, 'url').trim() + ') ';