Home
last modified time | relevance | path

Searched refs:type (Results 926 – 950 of 4303) sorted by relevance

1...<<31323334353637383940>>...173

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DAccessConfig.php57 public $type; variable in Google\\Service\\Compute\\AccessConfig
174 public function setType($type) argument
176 $this->type = $type;
183 return $this->type;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/
H A DOperation.php43 public $type; variable in Google\\Service\\Dns\\Operation
124 public function setType($type) argument
126 $this->type = $type;
133 return $this->type;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SearchConsole/
H A DWmxSitemap.php52 public $type; variable in Google\\Service\\SearchConsole\\WmxSitemap
159 public function setType($type) argument
161 $this->type = $type;
168 return $this->type;
H A DSearchAnalyticsQueryRequest.php60 public $type; variable in Google\\Service\\SearchConsole\\SearchAnalyticsQueryRequest
191 public function setType($type) argument
193 $this->type = $type;
200 return $this->type;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DTestUtil.php54 static function getTestCalendarData($type = 1) { argument
83 switch($type) {
122 static function getTestTODO($type = 'due') { argument
124 switch($type) {
184 throw new Exception('Unknown type: ' . $type);
/plugin/struct/meta/
H A DPublishedColumn.php14 * @param Decimal $type
17 public function __construct($sort, Decimal $type, $table) argument
19 if ($type->isMulti()) throw new StructException('PublishedColumns can not be multi value types!');
20 Column::__construct($sort, $type, 0, true, $table);
H A DRowColumn.php8 * Like a Page Column but for Lookups using a decimal type
14 * @param Decimal $type
17 public function __construct($sort, Decimal $type, $table) argument
19 if ($type->isMulti()) throw new StructException('RowColumns can not be multi value types!');
20 Column::__construct($sort, $type, 0, true, $table);
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A DImageObject.cfc89 <cfargument name="arg1" type="any" required="yes">
90 <cfargument name="arg2" type="any" required="no">
163 <cfargument name="fromX" required="yes" type="numeric">
164 <cfargument name="fromY" required="yes" type="numeric">
184 <cfargument name="key" type="string" required="yes">
185 <cfargument name="val" type="string" required="yes">
194 <cfargument name="key" type="string" required="yes">
218 <cfargument name="amount" required="yes" type="string">
227 <cfargument name="x" required="yes" type="numeric">
228 <cfargument name="y" required="yes" type="numeric">
[all …]
/plugin/sequencediagram/bower_components/snap.svg/doc/css/
H A Ddr.css38 .dr-type {
45 .dr-type em,
61 .dr-type em.amp,
73 .dr-property em.dr-type {
76 em.dr-type-string {
80 em.dr-type-object {
84 em.dr-type-function {
88 em.dr-type-number {
92 em.dr-type-boolean {
96 em.dr-type-array {
/plugin/codemirror/dist/modes/
H A Dq.min.js1type:b}}function m(a){a.indent=a.context.indent;a.context=a.context.prev}return{startState:functio… property in a.context
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DQueryParameterTypeStructTypes.php64 public function setType(QueryParameterType $type) argument
66 $this->type = $type;
73 return $this->type;
/plugin/strata/syntax/
H A Dentry.php69 $result['data'][$this->util->getIsaKey(false)][] = array('value'=>$class,'type'=>'text', 'hint'=>null);
77 $result['title candidate'] = array('value'=>$result['entry'], 'type'=>'text', 'hint'=>null);
103 if(preg_match("/^({$p->predicate})\s*({$p->type})?\s*(\*)?\s*:\s*({$p->any}?)$/",$line,$parts)) {
106 list($type,$hint) = $p->type($ptype);
125 if(!isset($type) || $type == '') {
126 list($type, $hint) = $this->util->getDefaultType();
128 $result['data'][$property][] = array('value'=>$v,'type'=>$type,'hin
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DForbiddenStylesSniff.php157 $type = 'Found';
160 $type = 'Discouraged';
171 …$fix = $phpcsFile->addFixableError($error.'; use %s instead', $stackPtr, $type.'WithAlternative', …
173 …$fix = $phpcsFile->addFixableWarning($error.'; use %s instead', $stackPtr, $type.'WithAlternative'…
181 $phpcsFile->addError($error, $stackPtr, $type, $data);
183 $phpcsFile->addWarning($error, $stackPtr, $type, $data);
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DPreDeserializeEvent.php18 * @param array $type
20 public function __construct(DeserializationContext $context, $data, array $type) argument
22 parent::__construct($context, $type);
29 $this->type = ['name' => $name, 'params' => $params];
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DOidType.php14 * Represents an OID ASN1 type.
49 $type = new self($value);
50 $type->tagNumber = $tagNumber;
51 $type->taggingClass = $class;
53 return $type;
H A DBooleanType.php14 * Represents an ASN1 boolean type.
49 $type = new self($value);
50 $type->taggingClass = $class;
51 $type->tagNumber = $tagNumber;
53 return $type;
/plugin/swiftmail/Swift/Plugin/
H A DDecorator.php74 public function addPermittedType($type) argument
76 $type = strtolower($type);
77 $this->permittedTypes[$type] = 1;
83 public function removePermittedType($type) argument
85 unset($this->permittedTypes[$type]);
100 public function isPermittedType($type) argument
102 return array_key_exists(strtolower($type), $this->permittedTypes);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php591 $type = isset(self::$typeMap[$attribute->type])
592 ? self::$typeMap[$attribute->type]
593 : $attribute->type;
596 if ('mixed' === $type) {
605 $type = 'array';
617 $type = 'array';
798 if ($type['required']) {
805 if ($type['type'] === 'array') {
812 if (isset($type['array_type'])) {
814 … if (gettype($item) !== $type['array_type'] && !$item instanceof $type['array_type']) {
[all …]
/plugin/webdav/
H A Dcomposer.lock13 "type": "git",
18 "type": "zip",
26 "type": "library",
60 "type": "git",
65 "type": "zip",
102 "type": "library",
143 "type": "git",
148 "type": "zip",
160 "type": "library",
200 "type": "git",
[all …]
/plugin/dw2pdf/
H A Dcomposer.lock13 "type": "git",
18 "type": "zip",
44 "type": "library",
79 "type": "custom"
88 "type": "git",
93 "type": "zip",
112 "type": "library",
147 "type": "custom"
156 "type": "git",
161 "type"
[all...]
/plugin/authgooglesheets/vendor/google/auth/src/
H A DCredentialsLoader.php130 if (!array_key_exists('type', $jsonKey)) {
131 throw new \InvalidArgumentException('json key is missing the type field');
134 if ($jsonKey['type'] == 'service_account') {
139 if ($jsonKey['type'] == 'authorized_user') {
144 throw new \InvalidArgumentException('invalid value in the type field');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessAccountManagement/
H A DAccount.php51 public $type; variable in Google\\Service\\MyBusinessAccountManagement\\Account
162 public function setType($type) argument
164 $this->type = $type;
171 return $this->type;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Fitness/
H A DDataSource.php48 public $type; variable in Google\\Service\\Fitness\\DataSource
151 public function setType($type) argument
153 $this->type = $type;
160 return $this->type;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
H A DChannel.php61 public $type; variable in Google\\Service\\Storage\\Channel
192 public function setType($type) argument
194 $this->type = $type;
201 return $this->type;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/
H A DLinkedForeignAccount.php57 public $type; variable in Google\\Service\\Analytics\\LinkedForeignAccount
178 public function setType($type) argument
180 $this->type = $type;
187 return $this->type;

1...<<31323334353637383940>>...173