Home
last modified time | relevance | path

Searched refs:qtext (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/dports/print/lyx/lyx-2.3.4.2/src/frontends/qt4/
H A DValidator.cpp41 QValidator::State LengthValidator::validate(QString & qtext, int &) const in validate() argument
45 double d = loc.toDouble(qtext.trimmed(), &ok); in validate()
48 bool dp = qtext.endsWith(loc.decimalPoint()); in validate()
52 d = c.toDouble(qtext.trimmed(), &ok); in validate()
53 dp = qtext.endsWith(c.decimalPoint()); in validate()
59 if (qtext.isEmpty() || (ok && !dp)) in validate()
62 string const text = fromqstr(qtext); in validate()
129 if (qtext == autotext_) in validate()
131 return LengthValidator::validate(qtext, dummy); in validate()
170 qtext.remove(QRegExp("[\\n\\r]")); in validate()
[all …]
/dports/www/ilias/ILIAS-5.4.25/Modules/Survey/classes/
H A Dclass.ilSurveyImporter.php153 $qtext = $new_question->getQuestiontext();
155 $this->svy_log->debug("old question text: " . $qtext);
157 $qtext = ilRTE::_replaceMediaObjectImageSrc($qtext, 0);
158 …$qtext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $med…
159 $qtext = ilRTE::_replaceMediaObjectImageSrc($qtext, 1);
160 $new_question->setQuestiontext($qtext);
163 $this->svy_log->debug("new question text: " . $qtext);
168 $pool_question->setQuestiontext($qtext);
/dports/www/ilias6/ILIAS-6.14/Modules/Survey/Export/
H A Dclass.ilSurveyImporter.php145 $qtext = $new_question->getQuestiontext();
147 $this->svy_log->debug("old question text: " . $qtext);
149 $qtext = ilRTE::_replaceMediaObjectImageSrc($qtext, 0);
150 …$qtext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $med…
151 $qtext = ilRTE::_replaceMediaObjectImageSrc($qtext, 1);
152 $new_question->setQuestiontext($qtext);
155 $this->svy_log->debug("new question text: " . $qtext);
160 $pool_question->setQuestiontext($qtext);
/dports/graphics/simage/simage-1.7.0/src/
H A Dsimage_write.c252 char * qtext = NULL; in add_internal_savers() local
314 if (qtext) { in add_internal_savers()
317 char * ext = qtext; in add_internal_savers()
333 free(qtext); in add_internal_savers()
338 if (qtext) { in add_internal_savers()
341 char * ext = qtext; in add_internal_savers()
357 free(qtext); in add_internal_savers()
362 if (qtext) { in add_internal_savers()
381 free(qtext); in add_internal_savers()
386 if (qtext) { in add_internal_savers()
[all …]
H A Dsimage_qimage.cpp154 const char * qtext = olist.getFirst(); in qimage_set_save_format() local
155 while (qtext) { in qimage_set_save_format()
156 if (strcmp(buf, qtext) == 0) return 1; in qimage_set_save_format()
157 qtext = olist.next(); in qimage_set_save_format()
192 const char * qtext = olist.getFirst(); in simage_qimage_get_savers()
193 while (qtext) { in simage_qimage_get_savers()
196 str += qtext; in simage_qimage_get_savers()
197 qtext = olist.next(); in simage_qimage_get_savers()
/dports/textproc/py-whoosh/Whoosh-2.7.4/tests/
H A Dtest_spelling.py136 q = qp.parse(qtext, ix.schema)
138 c = s.correct_query(q, qtext)
146 qtext = u'alpha b:("brovo november" a:delta) detail'
147 q = qp.parse(qtext, ix.schema)
148 c = s.correct_query(q, qtext)
204 qtext = u"renderink"
205 q = qp.parse(qtext, s.schema)
210 c = s.correct_query(q, qtext)
276 qtext = u'dworska'
279 q = qp.parse(qtext, ix.schema)
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/Chem/Draw/
H A DqtCanvas.py55 qtext = QtGui.QTextDocument()
56 qtext.setDefaultFont(qfont)
61 qtext.setHtml(formatted)
63 qpos = QtCore.QPointF(pos[0] - qtext.idealWidth() / 2, pos[1] - font.size)
65 qpos = QtCore.QPointF(pos[0] - qtext.idealWidth() + font.size, pos[1] - font.size)
70 qtext.drawContents(self.painter)
/dports/mail/p5-Email-Address-Loose/Email-Address-Loose-0.10/lib/Email/Address/Loose/
H A DEmailValidLoose.pm27 my $qtext = qq/[^$esc$nonASCII$cr_list\"]/; # "
32 my $quoted_str = qq<\"$qtext*(?:$quoted_pair$qtext*)*\">; # "
/dports/mail/p5-Email-Find/Email-Find-0.10/lib/Email/Find/
H A Daddrspec.pm19 my $qtext = qq/[^$esc$nonASCII$cr_list\"]/; #"
24 my $quoted_str = qq<\"$qtext*(?:$quoted_pair$qtext*)*\">; #"
/dports/print/auctex/auctex-12.2/style/
H A Dmoodle.el124 (let ((qtext (TeX-read-string (TeX-argument-prompt nil nil "Question Text"))))
125 (when (and qtext (not (string= qtext "")))
128 (insert qtext)
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Net/Mail/
H A DMailBnfHelper.cs89 var qtext = new bool[128]; in CreateCharactersAllowedInQuotedStrings()
90 for (int i = 1; i <= 9; i++) { qtext[i] = true; } in CreateCharactersAllowedInQuotedStrings()
91 qtext[11] = true; in CreateCharactersAllowedInQuotedStrings()
92 qtext[12] = true; in CreateCharactersAllowedInQuotedStrings()
93 for (int i = 14; i <= 33; i++) { qtext[i] = true; } in CreateCharactersAllowedInQuotedStrings()
94 for (int i = 35; i <= 91; i++) { qtext[i] = true; } in CreateCharactersAllowedInQuotedStrings()
95 for (int i = 93; i <= 127; i++) { qtext[i] = true; } in CreateCharactersAllowedInQuotedStrings()
96 return qtext; in CreateCharactersAllowedInQuotedStrings()
/dports/www/moodle310/moodle/mod/quiz/report/responses/tests/
H A Dprivacy_provider_test.php77 $this->assertNotEmpty($preferences->qtext);
78 $this->assertEquals(transform::yesno(1), $preferences->qtext->value);
107 $this->assertNotEmpty($preferences->qtext);
108 $this->assertEquals(transform::yesno(0), $preferences->qtext->value);
/dports/www/moodle311/moodle/mod/quiz/report/responses/tests/
H A Dprivacy_provider_test.php77 $this->assertNotEmpty($preferences->qtext);
78 $this->assertEquals(transform::yesno(1), $preferences->qtext->value);
107 $this->assertNotEmpty($preferences->qtext);
108 $this->assertEquals(transform::yesno(0), $preferences->qtext->value);
/dports/www/moodle39/moodle/mod/quiz/report/responses/tests/
H A Dprivacy_provider_test.php77 $this->assertNotEmpty($preferences->qtext);
78 $this->assertEquals(transform::yesno(1), $preferences->qtext->value);
107 $this->assertNotEmpty($preferences->qtext);
108 $this->assertEquals(transform::yesno(0), $preferences->qtext->value);
/dports/mail/p5-Email-Valid-Loose/Email-Valid-Loose-0.05/lib/Email/Valid/
H A DLoose.pm18 my $qtext = qq/[^$esc$nonASCII$cr_list\"]/; # "
23 my $quoted_str = qq<\"$qtext*(?:$quoted_pair$qtext*)*\">; # "
/dports/devel/cweb/cweb-3.64a.a/examples/
H A Dkspell.el158 (let (word newword qtext lastchar
172 (setq qtext (concat "\\b" (regexp-quote word) "\\b")))
175 (if (re-search-forward qtext nil t)
199 (query-replace-regexp qtext newword))))))))))))
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/ultima8/gumps/
H A Dcru_inventory_gump.cpp112 const Std::string qtext = Std::string::format("%d", q); in PaintThis() local
114 if (!qtext.equals(currenttext)) { in PaintThis()
117 …_inventoryText = new TextWidget(_dims.width() / 2 + 22, _dims.height() / 2 + 3, qtext, true, INVEN… in PaintThis()
/dports/audio/mous/mous-2.0.1/apps/qt5/
H A DFrmTagEditor.cpp173 QString qtext = ui->tagTable->item(cell.first, cell.second)->text(); in SlotBtnSave() local
174 string text = qtext.toUtf8().data(); in SlotBtnSave()
197 tmpItem.tag.year = qtext.toInt(); in SlotBtnSave()
198 m_CurrentParser->SetYear(qtext.toInt()); in SlotBtnSave()
202 tmpItem.tag.track = qtext.toInt(); in SlotBtnSave()
203 m_CurrentParser->SetTrack(qtext.toInt()); in SlotBtnSave()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/Validator/
H A DEmail.php63 $qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]';
68 $quotedString = "\\x22($qtext|$quotedPair)*\\x22";
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/qt/
H A DPasteboardQt.cpp133 QString qtext = text; in writePlainText() local
134 qtext.replace(QChar(0xa0), QLatin1Char(' ')); in writePlainText()
135 md->setText(qtext); in writePlainText()
/dports/sysutils/usermin/usermin-1.830/mailbox/
H A Dview_mail.cgi566 my $qtext = &quote_escape($text);
580 "alt='$qtext' title='$qtext' border=0></a>";
593 my $qtext = &quote_escape($text);
596 "alt='$qtext' title='$qtext' border=0></a>";
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/upas/smtp/
H A Dsmtpd.y135 quoted_string : '"' qtext '"' ={ $$ = cat(&$1, &$2, &$3, 0, 0 ,0, 0); }
137 qtext : '\\' x ={ $$ = cat(&$2, 0, 0, 0, 0 ,0, 0); }
138 | qtext '\\' x ={ $$ = cat(&$1, &$3, 0, 0, 0 ,0, 0); }
140 | qtext q ={ $$ = cat(&$1, &$2, 0, 0, 0 ,0, 0); }
/dports/cad/py-phidl/phidl-1.0.1/phidl/
H A Dquickplotter.py305 qtext = self.scene.addText(str(port.name), self.portfont)
306 port_items = port_shapes + [qtext]
311 qtext.setPos(QPointF(x,y))
312 qtext.setFlag(QGraphicsItem.ItemIgnoresTransformations)
316 qtext.setDefaultTextColor(self.portfontcolor)
320 qtext.setDefaultTextColor(self.subportfontcolor)
326 qtext = self.scene.addText(str(name), self.portfont)
328 qtext.setPos(QPointF(x,y))
329 qtext.setFlag(QGraphicsItem.ItemIgnoresTransformations)
330 self.aliasitems += [qtext]
/dports/textproc/p5-Perl-Critic/Perl-Critic-1.140/lib/Perl/Critic/Policy/ValuesAndExpressions/
H A DRequireInterpolationOfMetachars.pm114 my $qtext = qr/[^\\"]/x;
115 my $qcontent = qr/$qtext|$quoted_pair/x;
/dports/news/husky/husky-1.9.20191207/msged/
H A Dquick.c337 struct qtext struct
344 static int read_qtext(FILE *f, struct qtext *qtext) in read_qtext() argument
353 qtext->length= *pbuf; pbuf++; in read_qtext()
354 memcpy(qtext->text, pbuf, BLOCKLEN); pbuf+=BLOCKLEN; in read_qtext()
360 static int write_qtext(FILE *f, struct qtext *qtext) in write_qtext() argument
364 *pbuf = qtext->length; pbuf++; in write_qtext()
365 memcpy(pbuf, qtext->text, BLOCKLEN); pbuf+=BLOCKLEN; in write_qtext()
426 static struct qtext block; in QuickMsgWriteText()
859 static struct qtext text; in QuickMsgReadText()

12345678910>>...16