Lines Matching refs:methodName
437 var methodsOfType = (_.find(classSpec.methods, function(methodSpec, methodName) {
459 …_.extend(xml2js.CLASSES[className].methods, _.pick(classMethods, function(methodSpec, methodName) { argument
460 return isValidMethodSpec(methodSpec, className + '.' + methodName);
468 xml2js.METHODS = _.pick(xml2js.METHODS, function(methodSpec, methodName) { argument
469 return hasValidTypes(methodSpec, methodName);
472 var valid = _.pick(classSpec.methods, function(methodSpec, methodName) { argument
473 return hasValidTypes(methodSpec, className + '.' + methodName, className);
496 function isValidMethodSpec(methodSpec, methodName) { argument
498 …var printIgnoredMethodOnce = _.once(function() { console.log(methodName + ' from ' + path.basename…
622 var methodName = getText(getChild(method, 'name'), 'name');
623 if (methodName[0] != '~') { // filter out destructors
630 params = getParams(paramsSpec, getParamsDetails(description), methodName, parent);
635 retval = getReturn(returnSpec, getReturnDetails(description), methodName, parent);
637 methodName = getUniqueMethodName(methodName, spec_js, parent);
638 spec_js[methodName] = {
644 … console.log((parent ? (parent + '.') : '') + methodName + ' is omitted from JS documentation.');
655 function getUniqueMethodName(methodName, module, parent) { argument
656 if (methodName in module) {
658 methodName += '!';
659 } while (methodName in module);
661 return methodName;
761 function hasValidTypes(methodSpec, methodName, parent) { argument
764 var printIgnoredMethodOnce = _.once(function() { console.log(methodName + msg); });