Home
last modified time | relevance | path

Searched refs:valueType (Results 51 – 75 of 89) sorted by last modified time

1234

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DMetricDescriptor.php62 public $valueType; variable in Google\\Service\\Monitoring\\MetricDescriptor
207 public function setValueType($valueType) argument
209 $this->valueType = $valueType;
216 return $this->valueType;
H A DTimeSeries.php42 public $valueType; variable in Google\\Service\\Monitoring\\TimeSeries
131 public function setValueType($valueType) argument
133 $this->valueType = $valueType;
140 return $this->valueType;
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
H A Dgson-2.7.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
H A Dcache-api-1.1.1.jarMETA-INF/MANIFEST.MF META-INF/ javax/ javax/cache/ javax/ ...
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js8080 var valueType=typeof(value);
8081 …&&!(value instanceof ErrorCopy)&&(isFunction(value)||(valueType=="object"&&value!=null)||(valueTyp…
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDocument.php188 * @param string $valueType Force a specific valuetype, such as URI or TEXT
192 … public function createProperty($name, $value = null, array $parameters = null, $valueType = null) argument
205 if ($valueType) {
208 $class = $this->getClassNameForPropertyValue($valueType);
H A DVCardConverter.php78 $valueType = null;
80 $valueType = $parameters['VALUE']->getValue();
83 if (!$valueType) {
84 $valueType = $property->getValueType();
86 if (Document::VCARD30 !== $targetVersion && 'PHONE-NUMBER' === $valueType) {
87 $valueType = null;
93 $valueType
H A DProperty.php364 $valueType = strtolower($this->getValueType());
368 $writer->writeElement($valueType, $value);
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DJson.php136 $valueType
149 $valueType = strtoupper($valueType);
156 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
171 $prop['VALUE'] = $valueType;
/plugin/webdav/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php239 $valueType = strtolower($this->getValueType());
306 $writer->writeElement($valueType, $value);
H A DTimeStamp.php78 $valueType = strtolower($this->getValueType());
79 $writer->writeElement($valueType, $this->getValue());
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php344 $valueType = $this->getValueType();
348 switch ($valueType) {
360 'message' => 'The supplied value ('.$value.') is not a correct '.$valueType,
H A DRecur.php180 $valueType = strtolower($this->getValueType());
183 $writer->writeElement($valueType, $value);
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/
H A DPDO.php153 $valueType = self::VT_STRING;
155 $valueType = self::VT_XML;
158 $valueType = self::VT_OBJECT;
164 $updateStmt->bindParam('valuetype', $valueType, \PDO::PARAM_INT);
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js4437 valueType = _typeof(value);
4439 …if (valueType === 'boolean' || valueType === 'string' || valueType === 'number' && Number.isIntege…
14064 var defaultValue, valueType, defaultType;
14091 valueType = _typeof(value);
14094 if (!(valueType !== defaultType)) {
14099 if (!(valueType === 'number' && defaultType === 'string')) {
14109 …throw new Error("Set preference: \"".concat(value, "\" is a ").concat(valueType, ", ") + "expected…
14116 if (!(valueType === 'number' && !Number.isInteger(value))) {
H A Dviewer.js.map1valueType","pdfjsLib","__non_webpack_require__","compatibilityParams","userAgent","isAndroid","isI…
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DVCardConverter.php79 $valueType = null;
81 $valueType = $parameters['VALUE']->getValue();
84 if (!$valueType) {
85 $valueType = $property->getValueType();
91 $valueType
H A DDocument.php190 * @param string $valueType Force a specific valuetype, such as URI or TEXT
193 …public function createProperty($name, $value = null, array $parameters = null, $valueType = null) { argument
206 if ($valueType) {
209 $class = $this->getClassNameForPropertyValue($valueType);
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DJson.php134 $valueType
147 $valueType = strtoupper($valueType);
154 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
169 $prop["VALUE"] = $valueType;
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php367 $valueType = $this->getValueType();
371 switch($valueType) {
383 'message' => 'The supplied value (' . $value . ') is not a correct ' . $valueType,
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js30579 var valueType = typeof(value);
30581 (isFunction(value) || (valueType == "object" && value != null)
30582 || (valueType == "string" && value.length > Firebug.stringCropLength));
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/
H A DXmlSerializationTest.php318 * @param string $valueType
321 public function testSimpleValuesAddedToItemViaShortcutAccumulate($valueType, array $values) argument
326 $item->{'add' . $valueType}($value, $usergroup);
329 $this->assertEquals($values, $item->{'get' . $valueType}()->getValues());
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/src/Types/
H A DArray_.php29 private $valueType; variable in phpDocumentor\\Reflection\\Types\\Array_
37 * @param Type $valueType
40 public function __construct(Type $valueType = null, Type $keyType = null) argument
45 if ($valueType === null) {
46 $valueType = new Mixed_();
49 $this->valueType = $valueType;
70 return $this->valueType;
80 if ($this->valueType instanceof Mixed_) {
84 return $this->valueType . '[]';
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DJson.php134 $valueType
147 $valueType = strtoupper($valueType);
154 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
169 $prop["VALUE"] = $valueType;

1234