Searched refs:commentText (Results 1 – 3 of 3) sorted by relevance
/external/doclava/src/com/google/doclava/ |
D | DocFile.java | 126 String commentText = filedata.substring(start); in writePage() local 128 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1)); in writePage() 133 hdf.setValue("commentText", commentText); in writePage()
|
D | InfoBuilder.java | 555 String commentText, SourcePositionInfo position, ClassType classType) { in buildClassName() argument 596 cls.initialize(commentText, position, in buildClassName()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorStyleSheet.cpp | 397 String commentText = m_parsedText.substring(startOffset, offset - startOffset); in endComment() local 399 ASSERT(commentText.startsWith("/*")); in endComment() 400 commentText = commentText.substring(2); in endComment() 403 if (!commentText.endsWith("*/")) in endComment() 405 commentText = commentText.substring(0, commentText.length() - 2).stripWhiteSpace(); in endComment() 406 if (commentText.isEmpty()) in endComment() 416 StyleSheetHandler handler(commentText, m_document, m_styleSheetContents, &sourceData); in endComment() 418 …m_commentParser->parseDeclaration(tempMutableStyle.get(), commentText, &handler, m_styleSheetConte… in endComment() 423 if (propertyData.range.length() != commentText.length()) in endComment()
|