Searched defs:jsDocNode (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DFunctionRecord.java8 final Comment jsDocNode; field in class:FunctionRecord
15 public FunctionRecord(FunctionNode functionNode, Comment jsDocNode, String name, argument
19 this.jsDocNode = jsDocNode;
H A DTypeRecord.java25 public final Comment jsDocNode; field in class:TypeRecord.InheritanceEntry
28 public InheritanceEntry(String superTypeName, Comment jsDocNode, int offsetInJsDocText) { argument
31 this.jsDocNode = jsDocNode;
H A DMethodAnnotationChecker.java50 Comment jsDocNode = AstUtil.getJsDocNode(node);
51 String[] nonAnnotatedParams = getNonAnnotatedParamData(node.getParams(), jsDocNode);
53 reportErrorAtNodeStart(jsDocNode, String.format(
59 private String[] getNonAnnotatedParamData(List<AstNode> params, Comment jsDocNode) { argument
60 if (jsDocNode == null) {
71 String jsDoc = getContext().getNodeText(jsDocNode);
76 getContext().reportErrorInNode(jsDocNode, m.start(2), String.format(
136 Comment jsDocNode = AstUtil.getJsDocNode(function.functionNode);
142 invalidReturnAnnotationIndex(getState().getNodeText(jsDocNode));
147 getContext().reportErrorInNode(jsDocNode, invalidAnnotationInde
[all...]
H A DContextTrackingValidationCheck.java87 Comment jsDocNode = getJsDocNode(node);
93 boolean isConstructor = rememberTypeRecordIfNeeded(functionName, jsDocNode);
103 getReturnType(jsDocNode),
113 private String getReturnType(Comment jsDocNode) { argument
114 if (jsDocNode == null) {
117 String jsDoc = getNodeText(jsDocNode);
165 private boolean rememberTypeRecordIfNeeded(String typeName, Comment jsDocNode) { argument
166 String jsDoc = getNodeText(jsDocNode);
176 getExtendsEntries(jsDocNode));
196 private List<InheritanceEntry> getExtendsEntries(Comment jsDocNode) { argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
H A Djsdoc-validator.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/chromium/ org/chromium/devtools/ org/chromium/devtools/jsdoc/ ...

Completed in 154 milliseconds