Home
last modified time | relevance | path

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

/external/doclava/src/com/google/doclava/
DDocFile.java163 String commentText = filedata.substring(start); in writePage() local
165 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1)); in writePage()
170 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.cpp319 String commentText = m_parsedText.substring(startOffset, offset - startOffset); in endComment() local
321 ASSERT(commentText.startsWith("/*")); in endComment()
322 commentText = commentText.substring(2); in endComment()
325 if (!commentText.endsWith("*/")) in endComment()
327 commentText = commentText.substring(0, commentText.length() - 2).stripWhiteSpace(); in endComment()
328 if (commentText.isEmpty()) in endComment()
336 StyleSheetHandler handler(commentText, m_document, m_styleSheetContents, &sourceData); in endComment()
338 …m_commentParser.parseDeclaration(tempMutableStyle.get(), commentText, &handler, m_styleSheetConten… in endComment()
343 if (propertyData.range.length() != commentText.length()) in endComment()