Lines Matching defs:text
326 static unsigned int setWorkEntity(SPDocument * doc, struct rdf_work_entity_t & entity, gchar const * text);
331 * Pull the text out of an RDF entity, depends on how it's stored.
342 gchar const * text );
557 gchar const * text )
560 g_return_val_if_fail ( text != NULL, 0);
575 doc->getRoot()->setTitle(text);
583 temp = xmldoc->createTextNode( text );
592 temp->setContent(text);
619 temp = xmldoc->createTextNode( text );
628 temp->setContent(text);
633 parent->setAttribute("rdf:resource", text );
662 strlist = g_strsplit( text, ",", 0);
907 const gchar * text)
913 result = RDFImpl::setWorkEntity( doc, *entity, text );
919 unsigned int RDFImpl::setWorkEntity(SPDocument * doc, struct rdf_work_entity_t & entity, const gchar * text)
922 if ( !text ) {
923 // FIXME: on a "NULL" text, delete the entity. For now, blank it.
924 text = "";
931 text);
938 result = setReprText( item, entity, text );
1168 gchar const * text;
1210 setWorkEntity( doc, *entity, rdf_default->text );
1238 Glib::ustring text = prefs->getString(PREFS_METADATA + Glib::ustring(entity->name));
1239 if (text.length() > 0) {
1240 rdf_set_work_entity (doc, entity, text.c_str());