Lines Matching refs:description

45   //     description: <enum description>
50 // description: <enum group description>
56 // description: <method description>,
60 // description: <param description >
65 // description: <return description>
71 // description: <class description>,
78 // description: <variable description>
87 // description: <group description>,
166 description: getDescription(spec_c),
189 description: getDescription(spec_c),
350 description: 'Array of type ' + dataType + '.',
357 description: 'Instantiates the array.',
361 description: 'number of elements in the array'
367 description: 'Access a particular element in the array.',
371 description: 'index of array to read from'
376 description: 'the value of the element found at the given index of the array'
380 description: 'Modify a particular element in the array.',
384 description: 'index of array to write to'
388 description: 'the value to set the element found at the given index of the array'
400 description: 'Proxy object to data of type ' + dataType + '.',
407 description: 'Instantiates the proxy object.',
412 description: 'Get the value of the object.',
416 description: 'the value of the object'
420 description: 'Set the value of the object.',
424 description: 'the value to set the object to'
506 checkRule(_.has(methodSpec, 'description'), 'no description given');
510 checkRule(_.has(paramSpec, 'description'), 'no description given for param ' + paramName);
514 checkRule(_.has(methodSpec.return, 'description'), 'no description given for return value');
529 var enumGroupDescription = getText(getChild(enumGroup, 'detaileddescription'), 'description');
533 description: enumGroupDescription,
540 var enumDescription = getText(getChild(e, 'detaileddescription'), 'description');
544 description: enumDescription
562 // get the description for the module/group/class
564 return getText(getChild(spec_c, 'detaileddescription'), 'description');
625 var description = getChild(method, 'detaileddescription');
626 var methodDescription = getText(description, 'description');
630 params = getParams(paramsSpec, getParamsDetails(description), methodName, parent);
635 retval = getReturn(returnSpec, getReturnDetails(description), methodName, parent);
639 description: methodDescription,
681 description: varDescription
692 var retDescription = (details ? getText(details, 'description') : '');
695 description: retDescription
719 var paramDescription = getText(getChild(param, 'parameterdescription'), 'description');
721 spec_js[paramName].description = paramDescription;
837 // get the detailed description of a method's parameters
847 // get the detailed description of a method's return value