Home
last modified time | relevance | path

Searched refs:toString (Results 26 – 50 of 737) sorted by relevance

12345678910>>...30

/plugin/diagramsnet/lib/shapes/
H A DmxElectrical.js754 var labelNames = mxUtils.getValue(this.style, 'labelNames', '').toString().split(',');
810 …c.text(20, currH, 0, 0, currPinNum.toString(), mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0…
828 …c.text(w - 20, currH, 0, 0, pc2.toString(), mxConstants.ALIGN_RIGHT, mxConstants.ALIGN_MIDDLE, 0, …
877 …c.text(currH, h - 20, 0, 0, pc2.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0,…
972 …c.text(currH, 5, 0, 0, currPinNum.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, …
990 …c.text(currH, h - 5, 0, 0, pc2.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0, …
1148 var labelNames = mxUtils.getValue(this.style, 'labelNames', '').toString().split(',');
1189 …c.text(20, currH, 0, 0, currPinNum.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE,…
1213 …c.text(w - 20, currH, 0, 0, pc2.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0,…
1275 …c.text(currH, 20, 0, 0, pc2.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0, nul…
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DFilterContainerTrait.php118 public function toString(): string
124 return $filter->toString();
153 return $this->toString();
113 public function toString(): string global() function
/plugin/combo/ComboStrap/
H A DImageLink.php92 $href = FetcherRawLocalPath::createFromPath($dokuPath)->getFetchUrl()->toString();
105 $href = FetcherRawLocalPath::createFromPath($dokuPath)->getFetchUrl()->toString();
124 $linkTagAttributes->addOutputAttributeValue("href", $url->toString());
H A DThirdMediaLink.php23 $urlString = $mediaMarkup->getFetchUrl()->toString();
73 switch ($mime->toString()) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DReferralContext.php65 if (strtolower($referral->toString()) === strtolower($url->toString())) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DTestDecorator.php42 public function toString() function in PHPUnit_Extensions_TestDecorator
44 return $this->test->toString();
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/
H A DInvokedCount.php47 public function toString() function in PHPUnit_Framework_MockObject_Matcher_InvokedCount
64 $message = $invocation->toString() . ' ';
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DTestResult.php297 return '<pre>' . htmlspecialchars($this->toString()) . '</pre>';
306 function toString() { function in PHPUnit_TestResult
319 $result .= $failedTest->toString();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DOr.php83 public function toString() function in PHPUnit_Framework_Constraint_Or
92 $text .= $constraint->toString();
H A DArraySubset.php69 public function toString() function in PHPUnit_Framework_Constraint_ArraySubset
86 return 'an array ' . $this->toString();
H A DAnd.php91 public function toString() function in PHPUnit_Framework_Constraint_And
100 $text .= $constraint->toString();
H A DXor.php88 public function toString() function in PHPUnit_Framework_Constraint_Xor
97 $text .= $constraint->toString();
H A DTraversableContains.php96 public function toString() function in PHPUnit_Framework_Constraint_TraversableContains
120 $this->toString()
/plugin/preservefilenames/
H A Dscript.js139 eval('media_manager.list = ' + media_manager.list.toString().replace(
146 eval('media_manager.select = ' + media_manager.select.toString().replace(
153 eval('media_manager.insert = ' + media_manager.insert.toString().replace(
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFA.php158 return $this->toString(VocabularyImpl::emptyVocabulary());
161 public function toString(Vocabulary $vocabulary) : string function in Antlr\\Antlr4\\Runtime\\Dfa\\DFA
178 return (new LexerDFASerializer($this))->toString();
H A DDFASerializer.php27 public function toString() : string function in Antlr\\Antlr4\\Runtime\\Dfa\\DFASerializer
87 return $this->toString();
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DRecordingControlsFrame.java109 e.toString(), "Error pausing/resuming recording", in RecordingControlsFrame()
161 RecordingControlsFrame.this, e.toString(), in RecordingControlsFrame()
188 e.toString(), "Error cancelling recording", in RecordingControlsFrame()
205 …JOptionPane.showMessageDialog(this, e.toString(), "Error starting recording", JOptionPane.ERROR_ME… in RecordingControlsFrame()
267 errorMessage=e.toString(); in uploadMovie()
299 e.toString(), in uploadMovie()
/plugin/jcapture/lib/
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/pureldap/classes/
H A DADClient.php54 $this->debug('Searching ' . $filter->toString(), __FILE__, __LINE__);
122 $this->debug('Searching ' . $filter->toString(), __FILE__, __LINE__);
137 $groups[$entry->getDn()->toString()] = $this->cleanGroup($this->attr2str($entry->get('cn')));
192 $this->debug('Searching ' . $filter->toString(), __FILE__, __LINE__);
295 'dn' => $entry->getDn()->toString(),
/plugin/wysiwyg/fckeditor/
H A Dfckeditor.js74 var sWidth = this.Width.toString().indexOf('%') > 0 ? this.Width : this.Width + 'px' ;
75 var sHeight = this.Height.toString().indexOf('%') > 0 ? this.Height : this.Height + 'px' ;
177 text = text.toString() ;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DAttribute.php163 return $this->getName() . ($this->options()->count() > 0 ? ';' . $this->options()->toString() : '');
253 return $nameMatches && ($this->getOptions()->toString(true) === $attribute->getOptions()->toString(true));
/plugin/fckg/fckeditor/
H A Dfckeditor.js89 var sWidth = this.Width.toString().indexOf('%') > 0 ? this.Width : this.Width + 'px' ;
90 var sHeight = this.Height.toString().indexOf('%') > 0 ? this.Height : this.Height + 'px' ;
217 text = text.toString() ;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyDnRequest.php189 Asn1::octetString($this->dn->toString()),
191 Asn1::octetString($this->newRdn->toString()),
195 $asn1->addChild(Asn1::context(0, Asn1::octetString($this->newParentDn->toString())));
/plugin/combo/action/
H A Dstaticresource.php113 $event->data["mime"] = $mime->toString();
117 if ($mime->isImage() || in_array($mime->toString(), [Mime::JAVASCRIPT, Mime::CSS])) {
294 if ($download && $mime->toString() !== "image/svg+xml") {
321 http_rangeRequest($filePointer, FileSystems::getSize($mediaToSend), $mime->toString());
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php241 $modulo = [(int) $params['m']->toString()];
244 $modulo[] = (int) $params['parameters']->toString();
249 $modulo[] = (int) $temp['k3']->toString();
250 $modulo[] = (int) $temp['k2']->toString();
251 $modulo[] = (int) $temp['k1']->toString();

12345678910>>...30