Home
last modified time | relevance | path

Searched refs:doc_ptr (Results 1 – 25 of 56) sorted by relevance

123

/dports/audio/rhvoice/RHVoice-1.2.4/src/lib/
H A Dlib.cpp86 doc_ptr->synthesize(); in speak()
93 std::unique_ptr<document> doc_ptr; member
236 doc_ptr=document::create_from_ssml(engine_ptr,text,text+length,profile); in RHVoice_message_struct()
247 doc_ptr->set_owner(*this); in RHVoice_message_struct()
248 doc_ptr->speech_settings.absolute.rate=synth_params->absolute_rate; in RHVoice_message_struct()
249 doc_ptr->speech_settings.absolute.pitch=synth_params->absolute_pitch; in RHVoice_message_struct()
250 doc_ptr->speech_settings.absolute.volume=synth_params->absolute_volume; in RHVoice_message_struct()
251 doc_ptr->speech_settings.relative.rate=synth_params->relative_rate; in RHVoice_message_struct()
252 doc_ptr->speech_settings.relative.pitch=synth_params->relative_pitch; in RHVoice_message_struct()
253 doc_ptr->speech_settings.relative.volume=synth_params->relative_volume; in RHVoice_message_struct()
[all …]
/dports/www/pecl-solr/solr-2.5.1/src/php7/
H A Dphp_solr_client.c724 xmlFreeDoc(doc_ptr); in PHP_METHOD()
890 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1078 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1161 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1180 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1251 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1506 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1528 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1598 xmlFreeDoc(doc_ptr); in PHP_METHOD()
1667 xmlFreeDoc(doc_ptr); in PHP_METHOD()
[all …]
H A Dsolr_functions_document.c160 solr_document_t *doc_ptr = NULL; local
189doc_ptr = zend_hash_index_update_ptr(SOLR_GLOBAL(documents), document_index, (void *) doc_entry);
193 return doc_ptr;
456 xmlDoc *doc_ptr = solr_doc_node->doc; local
475 …xmlChar *escaped_field_value = xmlEncodeEntitiesReentrant(doc_ptr, (xmlChar *) doc_field_value->fi…
H A Dphp_solr_params.c135 xmlDoc *doc_ptr = NULL; in solr_serialize_solr_params_object() local
149 doc_ptr = solr_xml_create_xml_doc((xmlChar *) "solr_params", &xml_solr_params); in solr_serialize_solr_params_object()
188 xmlDocDumpFormatMemoryEnc(doc_ptr, serialized, size, "UTF-8", format); in solr_serialize_solr_params_object()
189 xmlFreeDoc(doc_ptr); in solr_serialize_solr_params_object()
H A Dphp_solr_document.c180 xmlDoc *doc_ptr = NULL; in solr_serialize_document_object() local
188 doc_ptr = solr_xml_create_xml_doc((xmlChar *) "solr_document", &root_node); in solr_serialize_document_object()
209 …xmlChar *escaped_field_value = xmlEncodeEntitiesReentrant(doc_ptr, (xmlChar *) doc_field_value->fi… in solr_serialize_document_object()
225 xmlDocDumpFormatMemoryEnc(doc_ptr, buffer, size, "UTF-8", format); in solr_serialize_document_object()
227 xmlFreeDoc(doc_ptr); in solr_serialize_document_object()
H A Dsolr_functions_helpers.c309 xmlDoc *doc_ptr = xmlNewDoc((xmlChar *) "1.0"); local
313 xmlDocSetRootElement(doc_ptr, root_node);
320 return doc_ptr;
699 xmlDoc *doc_ptr = solr_xml_create_xml_doc((xmlChar *) "solr_document", &solr_document_node); local
728 xmlDocDumpFormatMemoryEnc(doc_ptr, &doc_txt_buffer, &doc_txt_len, "UTF-8", format);
732 xmlFreeDoc(doc_ptr);
/dports/audio/rhvoice/RHVoice-1.2.4/src/include/core/
H A Ddocument.hpp440 std::unique_ptr<document> doc_ptr(new document(engine_ptr,profile)); in create_from_plain_text() local
446doc_ptr->add_text(char_iterator(tmp_buf.begin(),tmp_buf.begin(),tmp_buf.end()),char_iterator(tmp_b… in create_from_plain_text()
447 return doc_ptr; in create_from_plain_text()
453 std::unique_ptr<document> doc_ptr(new document(engine_ptr,profile)); in create_from_plain_text() local
457doc_ptr->add_text(text_iterator(text_start,text_start,text_end),text_iterator(text_end,text_start,… in create_from_plain_text()
458 return doc_ptr; in create_from_plain_text()
609 std::unique_ptr<document> doc_ptr(new document(engine_ptr,profile)); in create_from_ssml() local
636 parser.parse(text_start,text_end,*doc_ptr); in create_from_ssml()
637 return doc_ptr; in create_from_ssml()
/dports/devel/geany-legacy/geany-1.37.1/src/
H A Dplugindata.h467 #define DOC_IDX(doc_ptr) \ argument
468 (doc_ptr ? doc_ptr->index : -1)
H A Ddocument.h162 #define DOC_VALID(doc_ptr) \ argument
163 ((doc_ptr) != NULL && (doc_ptr)->is_valid)
/dports/devel/geany/geany-1.38/src/
H A Dplugindata.h464 #define DOC_IDX(doc_ptr) \ argument
465 (doc_ptr ? doc_ptr->index : -1)
H A Ddocument.h162 #define DOC_VALID(doc_ptr) \ argument
163 ((doc_ptr) != NULL && (doc_ptr)->is_valid)
/dports/games/wesnoth/wesnoth-1.14.17/src/server/
H A Dsend_receive_wml_helpers.ipp75 std::shared_ptr<simple_wml::document> doc_ptr(doc.clone());
76 simple_wml::string_span s = doc_ptr->output_compressed();
79 …ndle_doc<Handler, ErrorHandler> handle_send_doc(socket, handler, error_handler, s.size(), doc_ptr);
/dports/net/grilo-plugins/grilo-plugins-0.3.14/src/thetvdb/
H A Dgrl-thetvdb.c1072 xmlDocPtr doc_ptr; in xml_load_data() local
1075 doc_ptr = xmlReadMemory (str, strlen (str), NULL, NULL, in xml_load_data()
1077 if (!doc_ptr) in xml_load_data()
1080 node = xmlDocGetRootElement (doc_ptr); in xml_load_data()
1084 *doc = doc_ptr; in xml_load_data()
1088 xmlFreeDoc (doc_ptr); in xml_load_data()
/dports/devel/geany-plugin-tableconvert/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-xmlsnippets/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugins-l10n/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-prj/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-spellcheck/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-vimode/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-projectorganizer/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-sendmail/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-shiftcolumn/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-pretty-printer/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-treebrowser/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()
/dports/devel/geany-plugin-pairtaghighlighter/geany-plugins-1.38/overview/overview/
H A Doverviewscintilla.c928 sptr_t doc_ptr; in overview_scintilla_sync() local
932 doc_ptr = sci_send (self->sci, GETDOCPOINTER, 0, 0); in overview_scintilla_sync()
933 sci_send (self, SETDOCPOINTER, 0, doc_ptr); in overview_scintilla_sync()

123