Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 25 of 1088) sorted by relevance

12345678910>>...44

/plugin/gtime/gtlib/asn1/tsp/
H A DTSPAccuracy.php77 throw new GTException("Unexpected ASN1Integer: {$item->getValue()}");
84 $this->seconds = $item->getValue();
104 if ((int) $millis->getValue() < 1) {
108 if ((int) $millis->getValue() > 999) {
112 $this->millis = $millis->getValue();
130 if ((int) $micros->getValue() < 1) {
134 if ((int) $micros->getValue() > 999) {
138 $this->micros = $micros->getValue();
221 return "{$accuracy->div(new GTBigInteger(1000000))->getValue()}s";
224 return "{$accuracy->div(new GTBigInteger(1000))->getValue()}ms";
[all …]
/plugin/diagramsnet/lib/shapes/
H A DmxArrows.js53 var headCrossline = mxUtils.getValue(this.style, 'headCrossline', false);
89 if (mxUtils.getValue(this.style, 'boundedLbl', false))
97 if (mxUtils.getValue(this.style, 'flipH', false))
105 if (mxUtils.getValue(this.style, 'flipV', false))
259 if (mxUtils.getValue(this.style, 'boundedLbl', false))
965 var rounded = mxUtils.getValue(this.style, 'rounded', '0');
1060 var rounded = mxUtils.getValue(this.style, 'rounded', '0');
1136 var rounded = mxUtils.getValue(this.style, 'rounded', '0');
1217 var rounded = mxUtils.getValue(this.style, 'rounded', '0');
1672getValue(this.state.style, 'dy1', this.dy1)) + parseFloat(mxUtils.getValue(this.state.style, 'arro…
[all …]
H A DmxAWS4.js39 var opacity = parseFloat(mxUtils.getValue(this.style, 'opacity', '100'));
54 var strokeColor = mxUtils.getValue(this.state.style, 'strokeColor', 'none');
66 var fillColor = mxUtils.getValue(this.state.style, 'fillColor', '#ffffff');
82 var prIcon = mxUtils.getValue(this.state.style, 'prIcon', '');
140 var prIcon = mxUtils.getValue(this.state.style, 'resIcon', '');
145 var strokeColor = mxUtils.getValue(this.state.style, 'strokeColor', '#000000');
187 var grStroke = mxUtils.getValue(this.state.style, 'grStroke', '1');
215 var grIcon = mxUtils.getValue(this.state.style, 'grIcon', '');
262 var grStroke = mxUtils.getValue(this.state.style, 'grStroke', '1');
283 var grIcon = mxUtils.getValue(this.state.style, 'grIcon', '');
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DDumper.php100 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && false !== strpos($value->getValue(), "\n") && false === strpos($value->getValue(), "\r\n")) {
103 $blockIndentationIndicator = (' ' === substr($value->getValue(), 0, 1)) ? (string) $this->indentation : '';
106 foreach (explode("\n", $value->getValue()) as $row) {
113 if ($inline - 1 <= 0 || null === $value->getValue() || \is_scalar($value->getValue())) {
114 $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
117 $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags);
147 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue())
[all...]
/plugin/diagramsnet/lib/plugins/
H A DrackF5.js39 var hasEars = mxUtils.getValue(this.style, 'hasEars', '1');
40 var isFront = mxUtils.getValue(this.style, 'isFront', '0');
41 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
119 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
197 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
275 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
353 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
431 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
509 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
587 var isDC = mxUtils.getValue(this.style, 'isDC', '0');
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DVCardConverter.php80 $valueType = $parameters['VALUE']->getValue();
107 $parts = DateTimeParser::parseVCardDateTime($property->getValue());
130 switch (strtolower($property->getValue())) {
171 if ('COMPANY' === strtoupper($property->getValue())) {
176 if ('GROUP' === strtoupper($property->getValue())) {
185 if ($anniversary->getValue() === $newProperty->getValue()) {
205 if ($anniversary->getValue() === $newProperty->getValue()) {
213 if ('_$!<Anniversary>!$_' === $newProperty->getValue()) {
257 $value = $newProperty->getValue();
309 $value = $newProperty->getValue();
[all …]
H A DBirthdayCalendarGenerator.php110 if (empty($object->BDAY->getValue())) {
130 $dateParts = DateTimeParser::parseVCardDateTime($object->BDAY->getValue());
146 'SUMMARY' => sprintf($this->format, $object->FN->getValue()),
147 'DTSTART' => new \DateTime($object->BDAY->getValue()),
158 'X-SABRE-VCARD-UID' => $object->UID->getValue(),
159 'X-SABRE-VCARD-FN' => $object->FN->getValue(),
164 'X-SABRE-VCARD-UID' => $object->UID->getValue(),
165 'X-SABRE-VCARD-FN' => $object->FN->getValue(),
/plugin/davcard/vendor/sabre/vobject/lib/
H A DVCardConverter.php81 $valueType = $parameters['VALUE']->getValue();
135 switch(strtolower($property->getValue())) {
184 if (strtoupper($property->getValue()) === 'COMPANY') {
189 if (strtoupper($property->getValue()) === 'GROUP') {
198 if ($anniversary->getValue() === $newProperty->getValue()) {
218 if ($anniversary->getValue() === $newProperty->getValue()) {
226 if($newProperty->getValue() === '_$!<Anniversary>!$_') {
273 $value = $newProperty->getValue();
326 $value = $newProperty->getValue();
434 if (strtoupper($param->getValue())!=='QUOTED-PRINTABLE') {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DVCardConverter.php85 $valueType = $parameters['VALUE']->getValue();
114 $parts = DateTimeParser::parseVCardDateTime($property->getValue());
139 switch (strtolower($property->getValue())) {
188 if (strtoupper($property->getValue()) === 'COMPANY') {
193 if (strtoupper($property->getValue()) === 'GROUP') {
202 if ($anniversary->getValue() === $newProperty->getValue()) {
222 if ($anniversary->getValue() === $newProperty->getValue()) {
230 if ($newProperty->getValue() === '_$!<Anniversary>!$_') {
278 $value = $newProperty->getValue();
332 $value = $newProperty->getValue();
[all …]
H A DBirthdayCalendarGenerator.php126 if (empty($object->BDAY->getValue())) {
146 $dateParts = DateTimeParser::parseVCardDateTime($object->BDAY->getValue());
162 'SUMMARY' => sprintf($this->format, $object->FN->getValue()),
163 'DTSTART' => new \DateTime($object->BDAY->getValue()),
174 'X-SABRE-VCARD-UID' => $object->UID->getValue(),
175 'X-SABRE-VCARD-FN' => $object->FN->getValue(),
180 'X-SABRE-VCARD-UID' => $object->UID->getValue(),
181 'X-SABRE-VCARD-FN' => $object->FN->getValue(),
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DVCardConverter.php81 $valueType = $parameters['VALUE']->getValue();
135 switch(strtolower($property->getValue())) {
184 if (strtoupper($property->getValue()) === 'COMPANY') {
189 if (strtoupper($property->getValue()) === 'GROUP') {
198 if ($anniversary->getValue() === $newProperty->getValue()) {
218 if ($anniversary->getValue() === $newProperty->getValue()) {
226 if($newProperty->getValue() === '_$!<Anniversary>!$_') {
273 $value = $newProperty->getValue();
326 $value = $newProperty->getValue();
434 if (strtoupper($param->getValue())!=='QUOTED-PRINTABLE') {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DVCardConverter.php81 $valueType = $parameters['VALUE']->getValue();
135 switch(strtolower($property->getValue())) {
184 if (strtoupper($property->getValue()) === 'COMPANY') {
189 if (strtoupper($property->getValue()) === 'GROUP') {
198 if ($anniversary->getValue() === $newProperty->getValue()) {
218 if ($anniversary->getValue() === $newProperty->getValue()) {
226 if($newProperty->getValue() === '_$!<Anniversary>!$_') {
273 $value = $newProperty->getValue();
326 $value = $newProperty->getValue();
434 if (strtoupper($param->getValue())!=='QUOTED-PRINTABLE') {
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DReaderTest.php88 $this->assertEquals('propValue', $result->getValue());
112 $this->assertEquals('20110529', $result->getValue());
124 $this->assertEquals('20110529', $result->getValue());
191 $this->assertEquals('propValue', $result->getValue());
207 $this->assertEquals('propValue', $result->getValue());
223 $this->assertEquals('propValue', $result->getValue());
240 $this->assertEquals('propValue', $result->getValue());
273 $this->assertEquals('propValue', $result->getValue());
291 $this->assertEquals('propValue', $result->getValue());
307 $this->assertEquals('propValue', $result->getValue());
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DReaderTest.php88 $this->assertEquals('propValue', $result->getValue());
112 $this->assertEquals('20110529', $result->getValue());
124 $this->assertEquals('20110529', $result->getValue());
191 $this->assertEquals('propValue', $result->getValue());
207 $this->assertEquals('propValue', $result->getValue());
223 $this->assertEquals('propValue', $result->getValue());
240 $this->assertEquals('propValue', $result->getValue());
273 $this->assertEquals('propValue', $result->getValue());
291 $this->assertEquals('propValue', $result->getValue());
307 $this->assertEquals('propValue', $result->getValue());
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DReaderTest.php88 $this->assertEquals('propValue', $result->getValue());
112 $this->assertEquals('20110529', $result->getValue());
124 $this->assertEquals('20110529', $result->getValue());
191 $this->assertEquals('propValue', $result->getValue());
207 $this->assertEquals('propValue', $result->getValue());
223 $this->assertEquals('propValue', $result->getValue());
240 $this->assertEquals('propValue', $result->getValue());
273 $this->assertEquals('propValue', $result->getValue());
291 $this->assertEquals('propValue', $result->getValue());
307 $this->assertEquals('propValue', $result->getValue());
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DReaderTest.php89 $this->assertEquals('propValue', $result->getValue());
113 $this->assertEquals('20110529', $result->getValue());
125 $this->assertEquals('20110529', $result->getValue());
192 $this->assertEquals('propValue', $result->getValue());
208 $this->assertEquals('propValue', $result->getValue());
225 $this->assertEquals('propValue', $result->getValue());
242 $this->assertEquals('propValue', $result->getValue());
275 $this->assertEquals('propValue', $result->getValue());
293 $this->assertEquals('propValue', $result->getValue());
309 $this->assertEquals('propValue', $result->getValue());
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DRecurTest.php210 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYMONTHDAY=24', $property->getValue());
236 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYMONTHDAY=24', $property->getValue());
263 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYMONTHDAY=24', $property->getValue());
327 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYWEEKNO=11', $property->getValue());
340 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYDAY=WE', $property->getValue());
355 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYWEEKNO=2;BYDAY=WE', $property->getValue());
370 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYDAY=WE', $property->getValue());
383 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYWEEKNO=55;BYDAY=WE', $property->getValue());
394 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYYEARDAY=119', $property->getValue());
407 $this->assertEquals('FREQ=YEARLY;COUNT=6;BYDAY=WE', $property->getValue());
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php76 $op = $this->binaryOperators[$token->getValue()];
79 if ('is not' === $token->getValue()) {
81 } elseif ('is' === $token->getValue()) {
106 $operator = $this->unaryOperators[$token->getValue()];
160 switch ($token->getValue()) {
198 …if (preg_match(Lexer::REGEX_NAME, $token->getValue(), $matches) && $matches[0] == $token->getValue
341 if ('.' == $token->getValue() || '[' == $token->getValue()) {
343 } elseif ('|' == $token->getValue()) {
411 if ('.' == $token->getValue()) {
590 $value = $token->getValue();
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Parser/
H A DMimeDirTest.php33 $this->assertEquals("umlaut u - \xC3\xBC", $vcard->FN->getValue());
48 $this->assertEquals("umlaut u - \xC3\xBC", $vcard->FN->getValue());
63 $this->assertEquals("foo-bar - \xFC", $vcard->FN->getValue());
82 $this->assertEquals("umlaut u - \xFC", $vcard->FN->getValue());
125 $this->assertEquals("Euro \xE2\x82\xAC", $vcard->FN->getValue());
140 $this->assertEquals("Euro \xE2\x82\xAC", $vcard->FN->getValue());
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticTokenParser.php61 $inputs[] = $stream->next()->getValue();
66 …ay_filter(array_map('trim', explode(',', $stream->expect(\Twig_Token::STRING_TYPE)->getValue()))));
71 $attributes['output'] = $stream->expect(\Twig_Token::STRING_TYPE)->getValue();
76 $name = $stream->expect(\Twig_Token::STRING_TYPE)->getValue();
81 $attributes['var_name'] = $stream->expect(\Twig_Token::STRING_TYPE)->getValue();
86 …s['debug'] = 'true' == $stream->expect(\Twig_Token::NAME_TYPE, array('true', 'false'))->getValue();
91 …'combine'] = 'true' == $stream->expect(\Twig_Token::NAME_TYPE, array('true', 'false'))->getValue();
99 $attributes['vars'][] = $stream->expect(\Twig_Token::STRING_TYPE)->getValue();
111 $key = $stream->next()->getValue();
113 $attributes[$key] = $stream->expect(\Twig_Token::STRING_TYPE)->getValue();
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DExpandEventsFloatingTimeTest.php113 $this->assertEquals($child->getValue(), '20141108T043000Z');
116 $this->assertEquals($child->getValue(), '20141108T063000Z');
162 $this->assertEquals($child->getValue(), '20141108T043000Z');
165 $this->assertEquals($child->getValue(), '20141108T063000Z');
200 $this->assertEquals($child->getValue(), '20141108T043000Z');
203 $this->assertEquals($child->getValue(), '20141108T063000Z');
H A DExpandEventsDTSTARTandDTENDbyDayTest.php93 …ssertContains($child->getValue(), array('20120214T171500Z', '20120216T171500Z'), 'DTSTART is not a…
96 …assertContains($child->getValue(), array('20120214T181500Z', '20120216T181500Z'), 'DTEND is not a …
/plugin/gtime/gtlib/asn1/x509/
H A DX509GeneralName.php110 return "RFC:" . $this->object->getObjectAs(ASN1_TAG_IA5_STRING)->getValue();
113 return "DNS:" . $this->object->getObjectAs(ASN1_TAG_IA5_STRING)->getValue();
125 return "URI:" . $this->object->getObjectAs(ASN1_TAG_IA5_STRING)->getValue();
131 return "RID: " . $this->object->getObjectAs(ASN1_TAG_OBJECT_ID)->getValue();
H A DX509Extension.php76 $this->id = $id->getValue();
86 $this->value = $value->getValue();
97 $this->critical = $critical->getValue();
105 $this->value = $value->getValue();
177 public function getValue() { function in X509Extension
/plugin/diagramsnet/lib/shapes/ios7/
H A DmxIOS7Ui.js272 var barPos = mxUtils.getValue(this.style, mxIOS7C.BAR_POS, '80');
341 var fieldText = mxUtils.getValue(this.style, mxIOS7C.BUTTON_TEXT, '');
345 var barPos = mxUtils.getValue(this.style, mxIOS7C.BAR_POS, '80');
419 var fieldText = mxUtils.getValue(this.style, mxIOS7C.BUTTON_TEXT, '');
827 var mainText = mxUtils.getValue(this.style, mxIOS7C.BUTTON_TEXT, 'Search');
830 var fontSize = mxUtils.getValue(this.style, mxIOS7C.STYLE_TEXTSIZE, '17');
894 var mainText = mxUtils.getValue(this.style, mxIOS7C.BUTTON_TEXT, 'draw.io');
897 var fontSize = mxUtils.getValue(this.style, mxIOS7C.STYLE_TEXTSIZE, '17');
953 var mainText = mxUtils.getValue(this.style, mxIOS7C.MAIN_TEXT, 'Main Text');
954 var subText = mxUtils.getValue(this.style, mxIOS7C.SUB_TEXT, 'Sub Text');
[all …]

12345678910>>...44