Home
last modified time | relevance | path

Searched refs:commentText (Results 1 – 3 of 3) sorted by relevance

/external/doclava/src/com/google/doclava/
DDocFile.java126 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()
DInfoBuilder.java555 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/
DInspectorStyleSheet.cpp397 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()