Lines Matching defs:tree

165         DCAttribute tree = new DCAttribute(name, vkind, cast(value));  in newAttributeTree()  local
172 DCAuthor tree = new DCAuthor(cast(name)); in newAuthorTree() local
179 DCLiteral tree = new DCLiteral(Kind.CODE, (DCText) text); in newCodeTree() local
186 DCComment tree = new DCComment(text); in newCommentTree() local
193 DCDeprecated tree = new DCDeprecated(cast(text)); in newDeprecatedTree() local
209 DCDocComment tree = new DCDocComment(comment, cast(fullBody), pair.fst, pair.snd, in newDocCommentTree() local
252 DCDocComment tree = new DCDocComment(c, fBody, pair.fst, pair.snd, cast(tags), in newDocCommentTree() local
259 DCDocRoot tree = new DCDocRoot(); in newDocRootTree() local
266 DCDocType tree = new DCDocType(text); in newDocTypeTree() local
273 DCEndElement tree = new DCEndElement(name); in newEndElementTree() local
280 DCEntity tree = new DCEntity(name); in newEntityTree() local
287 DCErroneous tree = new DCErroneous(text, (JCDiagnostic) diag); in newErroneousTree() local
293 DCErroneous tree = new DCErroneous(text, diags, diagSource, code, args); in newErroneousTree() local
301 DCThrows tree = new DCThrows(Kind.EXCEPTION, (DCReference) name, cast(description)); in newExceptionTree() local
308 DCHidden tree = new DCHidden(cast(text)); in newHiddenTree() local
315 DCIdentifier tree = new DCIdentifier(name); in newIdentifierTree() local
322 DCIndex tree = new DCIndex((DCTree) term, cast(description)); in newIndexTree() local
329 DCInheritDoc tree = new DCInheritDoc(); in newInheritDocTree() local
336 DCLink tree = new DCLink(Kind.LINK, (DCReference) ref, cast(label)); in newLinkTree() local
343 DCLink tree = new DCLink(Kind.LINK_PLAIN, (DCReference) ref, cast(label)); in newLinkPlainTree() local
350 DCLiteral tree = new DCLiteral(Kind.LITERAL, (DCText) text); in newLiteralTree() local
357 DCParam tree = new DCParam(isTypeParameter, (DCIdentifier) name, cast(description)); in newParamTree() local
364 DCProvides tree = new DCProvides((DCReference) name, cast(description)); in newProvidesTree() local
373 …DCReference tree = new DCReference(signature, ref.moduleName, ref.qualExpr, ref.member, ref.paramT… in newReferenceTree() local
382 DCReference tree = new DCReference(signature, moduleName, qualExpr, member, paramTypes); in newReferenceTree() local
394 DCReturn tree = new DCReturn(isInline, cast(description)); in newReturnTree() local
401 DCSee tree = new DCSee(cast(reference)); in newSeeTree() local
408 DCSerial tree = new DCSerial(cast(description)); in newSerialTree() local
415 DCSerialData tree = new DCSerialData(cast(description)); in newSerialDataTree() local
422 …DCSerialField tree = new DCSerialField((DCIdentifier) name, (DCReference) type, cast(description)); in newSerialFieldTree() local
429 DCSince tree = new DCSince(cast(text)); in newSinceTree() local
436 DCStartElement tree = new DCStartElement(name, cast(attrs), selfClosing); in newStartElementTree() local
443 DCSummary tree = new DCSummary(cast(text)); in newSummaryTree() local
450 DCSystemProperty tree = new DCSystemProperty(propertyName); in newSystemPropertyTree() local
457 DCText tree = new DCText(text); in newTextTree() local
465 DCThrows tree = new DCThrows(Kind.THROWS, (DCReference) name, cast(description)); in newThrowsTree() local
472 DCUnknownBlockTag tree = new DCUnknownBlockTag(name, cast(content)); in newUnknownBlockTagTree() local
479 DCUnknownInlineTag tree = new DCUnknownInlineTag(name, cast(content)); in newUnknownInlineTagTree() local
486 DCUses tree = new DCUses((DCReference) name, cast(description)); in newUsesTree() local
494 DCValue tree = new DCValue((DCReference) ref); in newValueTree() local
501 DCVersion tree = new DCVersion(cast(text)); in newVersionTree() local
594 private boolean isTextTree(DocTree tree) { in isTextTree()