Home
last modified time | relevance | path

Searched refs:TextContent (Results 1 – 25 of 645) sorted by relevance

12345678910>>...26

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/editing/
H A Dsurrounding_text_test.cc56 EXPECT_EQ("f", surrounding_text.TextContent()); in TEST_F()
96 EXPECT_EQ("ar", surrounding_text.TextContent()); in TEST_F()
119 EXPECT_EQ("Lorem ", surrounding_text.TextContent()); in TEST_F()
148 EXPECT_EQ(" ipsum ", surrounding_text.TextContent()); in TEST_F()
183 EXPECT_EQ("f", surrounding_text.TextContent()); in TEST_F()
212 EXPECT_EQ("ar", surrounding_text.TextContent()); in TEST_F()
324 EXPECT_TRUE(surrounding_text.TextContent().IsEmpty()); in TEST_F()
362 EXPECT_EQ("1", surrounding_text.TextContent()); in TEST_F()
371 EXPECT_EQ("12", surrounding_text.TextContent()); in TEST_F()
388 surrounding_text.TextContent().Utf8()); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/editing/
H A Dsurrounding_text_test.cc56 EXPECT_EQ("f", surrounding_text.TextContent()); in TEST_F()
96 EXPECT_EQ("ar", surrounding_text.TextContent()); in TEST_F()
119 EXPECT_EQ("Lorem ", surrounding_text.TextContent()); in TEST_F()
148 EXPECT_EQ(" ipsum ", surrounding_text.TextContent()); in TEST_F()
183 EXPECT_EQ("f", surrounding_text.TextContent()); in TEST_F()
212 EXPECT_EQ("ar", surrounding_text.TextContent()); in TEST_F()
324 EXPECT_TRUE(surrounding_text.TextContent().IsEmpty()); in TEST_F()
362 EXPECT_EQ("1", surrounding_text.TextContent()); in TEST_F()
371 EXPECT_EQ("12", surrounding_text.TextContent()); in TEST_F()
388 surrounding_text.TextContent().Utf8()); in TEST_F()
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/feed-1.3.0.1/src/Text/Atom/
H A DFeed.hs25 , TextContent(..)
59 , feedTitle :: TextContent
68 , feedRights :: Maybe TextContent
69 , feedSubtitle :: Maybe TextContent
77 , entryTitle :: TextContent
85 , entryRights :: Maybe TextContent
87 , entrySummary :: Maybe TextContent
95 = TextContent Text constructor
129 data TextContent type
184 -> TextContent -- ^feedTitle
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/layout/
H A Dwrapper.rs90 fn text_content(&self) -> TextContent; in text_content() argument
112 fn text_content(&self) -> TextContent { in text_content() argument
118 TextContent::GeneratedContent((*value).to_vec()) in text_content()
120 _ => TextContent::GeneratedContent(vec![]), in text_content()
124 TextContent::Text(self.node_text_content().into_boxed_str()) in text_content()
158 pub enum TextContent { enum
163 impl TextContent { implementation
166 TextContent::Text(_) => false, in is_empty()
167 TextContent::GeneratedContent(ref content) => content.is_empty(), in is_empty()
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/includes/content/
H A DTextContentTest.php41 * @return TextContent
44 return new TextContent( $text );
284 [ new TextContent( "hallo" ), null, false ],
285 [ new TextContent( "hallo" ), new TextContent( "hallo" ), true ],
286 [ new TextContent( "hallo" ), new JavaScriptContent( "hallo" ), false ],
287 [ new TextContent( "hallo" ), new WikitextContent( "hallo" ), false ],
288 [ new TextContent( "hallo" ), new TextContent( "HALLO" ), false ],
336 /** @var TextContent $converted */
352 $this->assertEquals( $expected, TextContent::normalizeLineEndings( $input ) );
/dports/www/mediawiki135/mediawiki-1.35.5/includes/Rest/Handler/
H A DUpdateHandler.php12 use TextContent; alias
204 if ( !$baseContent instanceof TextContent
205 || !$currentContent instanceof TextContent
206 || !$newContent instanceof TextContent
229 * @param TextContent $from
230 * @param TextContent $to
234 private function getDiff( TextContent $from, TextContent $to ) {
H A DPageSourceHandler.php11 use TextContent; alias
28 * @return TextContent $content
31 protected function getPageContent( string $slotRole, RevisionRecord $revision ): TextContent {
37 if ( !( $content instanceof TextContent ) ) {
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/includes/content/
H A DTextContentTest.php43 * @return TextContent
46 return new TextContent( $text );
347 [ new TextContent( "hallo" ), null, false ],
348 [ new TextContent( "hallo" ), new TextContent( "hallo" ), true ],
349 [ new TextContent( "hallo" ), new JavaScriptContent( "hallo" ), false ],
350 [ new TextContent( "hallo" ), new WikitextContent( "hallo" ), false ],
351 [ new TextContent( "hallo" ), new TextContent( "HALLO" ), false ],
447 /** @var TextContent $converted */
463 $this->assertEquals( $expected, TextContent::normalizeLineEndings( $input ) );
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/content/
H A DTextContentTest.php49 * @return TextContent
52 return new TextContent( $text );
353 [ new TextContent( "hallo" ), null, false ],
354 [ new TextContent( "hallo" ), new TextContent( "hallo" ), true ],
355 [ new TextContent( "hallo" ), new JavaScriptContent( "hallo" ), false ],
356 [ new TextContent( "hallo" ), new WikitextContent( "hallo" ), false ],
357 [ new TextContent( "hallo" ), new TextContent( "HALLO" ), false ],
453 /** @var TextContent $converted */
469 $this->assertEquals( $expected, TextContent::normalizeLineEndings( $input ) );
/dports/www/mediawiki137/mediawiki-1.37.1/includes/Rest/Handler/
H A DUpdateHandler.php13 use TextContent; alias
224 if ( !$baseContent instanceof TextContent
225 || !$currentContent instanceof TextContent
226 || !$newContent instanceof TextContent
249 * @param TextContent $from
250 * @param TextContent $to
254 private function getDiff( TextContent $from, TextContent $to ) {
/dports/www/mediawiki136/mediawiki-1.36.3/includes/Rest/Handler/
H A DUpdateHandler.php13 use TextContent; alias
224 if ( !$baseContent instanceof TextContent
225 || !$currentContent instanceof TextContent
226 || !$newContent instanceof TextContent
249 * @param TextContent $from
250 * @param TextContent $to
254 private function getDiff( TextContent $from, TextContent $to ) {
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/includes/Storage/
H A DPageUpdaterTest.php19 use TextContent; alias
113 $content = new TextContent( 'Lorem Ipsum' );
319 $updater->setContent( SlotRecord::MAIN, new TextContent( '1' ) );
325 $updater->setContent( SlotRecord::MAIN, new TextContent( '2' ) );
331 $updater->setContent( SlotRecord::MAIN, new TextContent( '1' ) );
395 $content = new TextContent( $content ?? $summary );
415 SlotRecord::MAIN => new TextContent( 'Lorem Ipsum' )
667 $updater->setContent( 'main', new TextContent( 'Content 1' ) );
679 $updater->setContent( 'main', new TextContent( 'Content 2' ) );
836 ->setContent( SlotRecord::MAIN, new TextContent( '' ) );
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/includes/Storage/
H A DPageUpdaterTest.php20 use TextContent; alias
121 $content = new TextContent( 'Lorem Ipsum' );
326 $updater->setContent( SlotRecord::MAIN, new TextContent( '1' ) );
332 $updater->setContent( SlotRecord::MAIN, new TextContent( '2' ) );
338 $updater->setContent( SlotRecord::MAIN, new TextContent( '1' ) );
402 $content = new TextContent( $content ?? $summary );
423 SlotRecord::MAIN => new TextContent( 'Lorem Ipsum' )
618 $updater->setContent( 'aux', new TextContent( 'Aux Content' ) );
675 $updater->setContent( 'main', new TextContent( 'Content 1' ) );
687 $updater->setContent( 'main', new TextContent( 'Content 2' ) );
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/Storage/
H A DPageUpdaterTest.php16 use TextContent; alias
97 $content = new TextContent( 'Lorem Ipsum' );
306 $content = new TextContent( $content ?? $summary );
325 SlotRecord::MAIN => new TextContent( 'Lorem Ipsum' )
510 $updater->setContent( 'main', new TextContent( 'Main Content' ) );
511 $updater->setContent( 'aux', new TextContent( 'Aux Content' ) );
565 $updater->setContent( 'main', new TextContent( 'Content 1' ) );
577 $updater->setContent( 'main', new TextContent( 'Content 2' ) );
606 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Foo Bar' ) );
649 $updater->setContent( SlotRecord::MAIN, new TextContent( '' ) );
[all …]
/dports/net-im/libquotient/libQuotient-0.6.8/lib/events/
H A Droommessageevent.cpp50 TypedBase* make<TextContent>(const QJsonObject& json) in make()
53 ? new TextContent(json) in make()
64 { TextTypeKey, MsgType::Text, make<TextContent> },
65 { EmoteTypeKey, MsgType::Emote, make<TextContent> },
66 { NoticeTypeKey, MsgType::Notice, make<TextContent> },
118 auto* textContent = static_cast<const TextContent*>(content); in assembleContentJson()
253 const auto& rel = static_cast<const TextContent*>(content())->relatesTo; in replacedEvent()
278 TextContent::TextContent(QString text, const QString& contentType, in TextContent() function in TextContent
306 TextContent::TextContent(const QJsonObject& json) in TextContent() function in TextContent
329 void TextContent::fillJson(QJsonObject* json) const in fillJson()
/dports/net-im/spectral/libQuotient-58dfe74390ebdd8ec6611d3b8fecfe7d051ff955/lib/events/
H A Droommessageevent.cpp50 TypedBase* make<TextContent>(const QJsonObject& json) in make()
53 ? new TextContent(json) in make()
64 { TextTypeKey, MsgType::Text, make<TextContent> },
65 { EmoteTypeKey, MsgType::Emote, make<TextContent> },
66 { NoticeTypeKey, MsgType::Notice, make<TextContent> },
118 auto* textContent = static_cast<const TextContent*>(content); in assembleContentJson()
253 const auto& rel = static_cast<const TextContent*>(content())->relatesTo; in replacedEvent()
278 TextContent::TextContent(QString text, const QString& contentType, in TextContent() function in TextContent
306 TextContent::TextContent(const QJsonObject& json) in TextContent() function in TextContent
329 void TextContent::fillJson(QJsonObject* json) const in fillJson()
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/Revision/
H A DRevisionSlotsTest.php10 use TextContent; alias
198 $fooX = SlotRecord::newUnsaved( 'x', new TextContent( 'Foo' ) );
199 $barZ = SlotRecord::newUnsaved( 'z', new TextContent( 'Bar' ) );
200 $fooY = SlotRecord::newUnsaved( 'y', new TextContent( 'Foo' ) );
202 $barZ2 = SlotRecord::newUnsaved( 'z', new TextContent( 'Baz' ) );
228 $fooX = SlotRecord::newUnsaved( 'x', new TextContent( 'Foo' ) );
229 $barZ = SlotRecord::newUnsaved( 'z', new TextContent( 'Bar' ) );
230 $fooY = SlotRecord::newUnsaved( 'y', new TextContent( 'Foo' ) );
232 $barZ2 = SlotRecord::newUnsaved( 'z', new TextContent( 'Baz' ) );
H A DRevisionArchiveRecordTest.php14 use TextContent; alias
37 $main = SlotRecord::newUnsaved( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
38 $aux = SlotRecord::newUnsaved( 'aux', new TextContent( 'Frumious Bandersnatch' ) );
68 $main = SlotRecord::newUnsaved( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
69 $aux = SlotRecord::newUnsaved( 'aux', new TextContent( 'Frumious Bandersnatch' ) );
200 $main = SlotRecord::newUnsaved( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
201 $aux = SlotRecord::newUnsaved( 'aux', new TextContent( 'Frumious Bandersnatch' ) );
/dports/converters/p5-LaTeXML/LaTeXML-0.8.6/lib/LaTeXML/resources/RelaxNG/svg/
H A Dsvg-text.rnc42 SVG.TextContent.extra.attrib = empty
43 SVG.TextContent.attrib &=
90 SVG.TextContent.extra.attrib
115 ## extend SVG.TextContent.class
117 SVG.TextContent.class |= tspan | tref | textPath
119 SVG.text.class |= SVG.TextContent.class
122 SVG.TextContent.attrib,
147 SVG.TextContent.attrib,
178 SVG.TextContent.attrib,
218 SVG.TextContent.attrib,
[all …]
/dports/x11/florence/florence-0.6.3/data/svg11/
H A Dsvg-text.rnc42 SVG.TextContent.extra.attrib = empty
43 SVG.TextContent.attrib &=
90 SVG.TextContent.extra.attrib
115 ## extend SVG.TextContent.class
117 SVG.TextContent.class |= tspan | tref | textPath
119 SVG.text.class |= SVG.TextContent.class
122 SVG.TextContent.attrib,
147 SVG.TextContent.attrib,
178 SVG.TextContent.attrib,
218 SVG.TextContent.attrib,
[all …]
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/cursive_core-0.2.2/src/views/
H A Dtext_view.rs36 pub struct TextContent { struct
40 impl TextContent { impl
50 TextContent { in new()
85 impl TextContent { implementation
193 content: TextContent,
214 Self::new_with_content(TextContent::new(content)) in new()
233 pub fn new_with_content(content: TextContent) -> Self { in new_with_content()
349 pub fn get_shared_content(&mut self) -> TextContent { in get_shared_content() argument
352 TextContent { in get_shared_content()
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/includes/diff/
H A DSlotDiffRendererTest.php50 new WikitextContent( 'abc' ), new WikitextContent( 'def' ), TextContent::class,
54 new WikitextContent( 'abc' ), null, TextContent::class,
58 new TextContent( 'abc' ), new WikitextContent( 'def' ), WikitextContent::class,
62 new WikitextContent( 'abc' ), new TextContent( 'def' ), WikitextContent::class,
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/includes/diff/
H A DSlotDiffRendererTest.php50 new WikitextContent( 'abc' ), new WikitextContent( 'def' ), TextContent::class,
54 new WikitextContent( 'abc' ), null, TextContent::class,
58 new TextContent( 'abc' ), new WikitextContent( 'def' ), WikitextContent::class,
62 new WikitextContent( 'abc' ), new TextContent( 'def' ), WikitextContent::class,
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/diff/
H A DSlotDiffRendererTest.php50 new WikitextContent( 'abc' ), new WikitextContent( 'def' ), TextContent::class,
54 new WikitextContent( 'abc' ), null, TextContent::class,
58 new TextContent( 'abc' ), new WikitextContent( 'def' ), WikitextContent::class,
62 new WikitextContent( 'abc' ), new TextContent( 'def' ), WikitextContent::class,
/dports/security/opensaml/opensaml-3.2.1/saml/saml2/metadata/impl/
H A DMetadataSchemaValidators.cpp64 XMLOBJECTVALIDATOR_REQUIRE(localizedNameType,TextContent);
69 XMLOBJECTVALIDATOR_REQUIRE(localizedURIType,TextContent);
74 XMLOBJECTVALIDATOR_REQUIRE(OrganizationName,TextContent);
84 XMLOBJECTVALIDATOR_REQUIRE(OrganizationURL,TextContent);
186 XMLOBJECTVALIDATOR_REQUIRE(ServiceName,TextContent);
191 XMLOBJECTVALIDATOR_REQUIRE(ServiceDescription,TextContent);
292 XMLOBJECTVALIDATOR_REQUIRE(DisplayName,TextContent);
297 XMLOBJECTVALIDATOR_REQUIRE(Description,TextContent);
302 XMLOBJECTVALIDATOR_REQUIRE(Keywords,TextContent);
307 XMLOBJECTVALIDATOR_REQUIRE(Logo,TextContent);
[all …]

12345678910>>...26