Home
last modified time | relevance | path

Searched refs:TAG_P (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-doc/
DHTMLGenerator.cpp43 TAG_P, enumerator
128 case HTMLTag::TAG_P: in IsSelfClosing()
164 case HTMLTag::TAG_P: in ToString()
441 HTMLTag::TAG_P, "Defined at line " + std::to_string(L.LineNumber) + in writeFileDefinition()
445 auto Node = std::make_unique<TagNode>(HTMLTag::TAG_P); in writeFileDefinition()
610 auto ParagraphComment = std::make_unique<TagNode>(HTMLTag::TAG_P); in genHTML()
679 Out.emplace_back(std::make_unique<TagNode>(HTMLTag::TAG_P)); in genHTML()
786 Out.emplace_back(std::make_unique<TagNode>(HTMLTag::TAG_P)); in genHTML()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlNode.java44 public static final String TAG_P = "p"; field in TtmlNode
212 boolean isPNode = TAG_P.equals(tag); in getEventTimes()
327 boolean isPNode = TAG_P.equals(tag); in traverseForText()
DTtmlDecoder.java698 || tag.equals(TtmlNode.TAG_P) in isSupportedTag()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/text/ttml/
DTtmlDecoderTest.java336 assertThat(queryChildrenForTag(fourthDiv, TtmlNode.TAG_P, 0).getStyleIds()).isNull(); in emptyStyleAttribute()
349 assertThat(queryChildrenForTag(fifthDiv, TtmlNode.TAG_P, 0).getStyleIds()).hasLength(1); in nonexistingStyleId()
363 String[] styleIds = queryChildrenForTag(sixthDiv, TtmlNode.TAG_P, 0).getStyleIds(); in nonExistingAndExistingStyleIdWithRedundantSpaces()
401 TtmlStyle style = queryChildrenForTag(div, TtmlNode.TAG_P, 0).style; in noUnderline()
417 TtmlStyle style = queryChildrenForTag(div, TtmlNode.TAG_P, 0).style; in noLinethrough()