Home
last modified time | relevance | path

Searched refs:new_docs (Results 1 – 10 of 10) sorted by relevance

/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/sphinxtools/
H A Dutilities.py530 new_docs = simple_docs
540 new_docs = new_docs.replace(regs, newstr, 1)
542 if '===' in new_docs:
543 new_docs = ''
545 elif new_docs.rstrip().endswith(':'):
547 new_docs = new_docs.rstrip(':')
549 summary += format%(substr, new_docs) + '\n'
/dports/textproc/p5-Plucene/Plucene-1.25/lib/Plucene/Index/
H A DSegmentsReader.pm280 my ($new_docs, $new_freqs) = $self->{current}->read($docs, $freqs);
281 if (!scalar @$new_docs) {
288 $_ += $self->{base} for @$new_docs;
289 push @$docs, @$new_docs;
/dports/math/pspp/pspp-1.4.1/src/language/data-io/
H A Dcombine-files.c530 struct string_array new_docs; in merge_dictionary() local
533 new_docs.n = m_docs->n + d_docs->n; in merge_dictionary()
534 new_docs.strings = xmalloc (new_docs.n * sizeof *new_docs.strings); in merge_dictionary()
536 new_docs.strings[i] = m_docs->strings[i]; in merge_dictionary()
538 new_docs.strings[m_docs->n + i] = d_docs->strings[i]; in merge_dictionary()
540 dict_set_documents (m, &new_docs); in merge_dictionary()
542 free (new_docs.strings); in merge_dictionary()
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/uk/ac/sanger/artemis/components/database/
H A DDatabaseEntrySource.java292 DatabaseDocument[] new_docs = doc.getGffDocuments(location, id, schema); in makeFromGff() local
293 db_entry = new DatabaseDocumentEntry[new_docs.length]; in makeFromGff()
295 for(int i = 0; i < new_docs.length; i++) in makeFromGff()
297 new_docs[i].setLazyFeatureLoad(doc.isLazyFeatureLoad()); in makeFromGff()
298 db_entry[i] = new DatabaseDocumentEntry(new_docs[i], null); in makeFromGff()
/dports/print/py-fonttools/fonttools-4.28.2/Lib/fontTools/subset/
H A Dsvg.py201 new_docs: List[Tuple[bytes, int, int]] = []
241 new_docs.append((new_doc, start, end))
243 self.docList = new_docs
/dports/devel/py-aws-xray-sdk/aws-xray-sdk-2.8.0/aws_xray_sdk/core/sampling/
H A Dconnector.py87 new_docs = resp['SamplingTargetDocuments']
90 for doc in new_docs:
/dports/databases/libcouchbase/libcouchbase-2.10.7/tools/docgen/
H A Ddocgen.h469 std::vector<std::string> new_docs; in promptPassword()
489 new_docs.push_back(writer.write(root)); in promptPassword()
491 initMatches(new_specs, new_docs); in promptPassword()
/dports/databases/couchdb3/apache-couchdb-3.2.1/test/elixir/test/
H A Dreplication_test.exs817 new_docs = make_docs(50..55)
818 new_docs = save_docs(src_db_name, new_docs)
823 Enum.each(new_docs, fn doc ->
1382 new_docs = make_docs(26..35)
1383 new_docs = save_docs(src_db_name, new_docs)
1387 Enum.each(new_docs, fn doc ->
1400 doc1 = Enum.at(new_docs, 0)
1404 doc2 = Enum.at(new_docs, 6)
/dports/math/pspp/pspp-1.4.1/src/data/
H A Ddictionary.c1468 dict_set_documents (struct dictionary *d, const struct string_array *new_docs) in dict_set_documents() argument
1474 for (i = 0; i < new_docs->n; i++) in dict_set_documents()
1475 dict_add_document_line (d, new_docs->strings[i], false); in dict_set_documents()
1482 dict_set_documents_string (struct dictionary *d, const char *new_docs) in dict_set_documents_string() argument
1487 for (s = new_docs; *s != '\0';) in dict_set_documents_string()
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/uk/ac/sanger/artemis/util/
H A DDatabaseDocument.java638 DatabaseDocument[] new_docs = new DatabaseDocument[nentries]; in getGffDocuments() local
647 new_docs[nentries] = new DatabaseDocument(location, pfield, id, schema, in getGffDocuments()
652 return new_docs; in getGffDocuments()