Home
last modified time | relevance | path

Searched refs:string (Results 226 – 250 of 3037) sorted by relevance

12345678910>>...122

/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DVersionHistory.php72 'type' => 'string',
81 'type' => 'string',
100 'type' => 'string',
109 'type' => 'string',
128 'type' => 'string',
133 'type' => 'string',
137 'type' => 'string',
145 'type' => 'string',
164 'type' => 'string',
169 'type' => 'string',
[all …]
H A DCloudSearch.php116 'type' => 'string',
130 'type' => 'string',
150 'type' => 'string',
163 'type' => 'string',
182 'type' => 'string',
191 'type' => 'string',
199 'type' => 'string',
203 'type' => 'string',
222 'type' => 'string',
235 'type' => 'string',
[all …]
H A DSmartDeviceManagement.php78 'type' => 'string',
88 'type' => 'string',
98 'type' => 'string',
103 'type' => 'string',
111 'type' => 'string',
130 'type' => 'string',
140 'type' => 'string',
145 'type' => 'string',
153 'type' => 'string',
172 'type' => 'string',
[all …]
H A DDigitalassetlinks.php75 'type' => 'string',
79 'type' => 'string',
83 'type' => 'string',
87 'type' => 'string',
91 'type' => 'string',
95 'type' => 'string',
99 'type' => 'string',
118 'type' => 'string',
122 'type' => 'string',
126 'type' => 'string',
[all …]
H A DApiKeysService.php76 'type' => 'string',
95 'type' => 'string',
115 'type' => 'string',
120 'type' => 'string',
129 'type' => 'string',
134 'type' => 'string',
143 'type' => 'string',
153 'type' => 'string',
163 'type' => 'string',
172 'type' => 'string',
[all …]
H A DGamesConfiguration.php74 'type' => 'string',
84 'type' => 'string',
94 'type' => 'string',
104 'type' => 'string',
113 'type' => 'string',
122 'type' => 'string',
142 'type' => 'string',
147 'type' => 'string',
167 'type' => 'string',
177 'type' => 'string',
[all …]
H A DMyBusinessPlaceActions.php72 'type' => 'string',
82 'type' => 'string',
92 'type' => 'string',
102 'type' => 'string',
107 'type' => 'string',
115 'type' => 'string',
124 'type' => 'string',
129 'type' => 'string',
148 'type' => 'string',
152 'type' => 'string',
[all …]
H A DDatapipelines.php74 'type' => 'string',
79 'type' => 'string',
87 'type' => 'string',
106 'type' => 'string',
116 'type' => 'string',
126 'type' => 'string',
136 'type' => 'string',
141 'type' => 'string',
150 'type' => 'string',
160 'type' => 'string',
[all …]
H A DBigQueryConnectionService.php75 'type' => 'string',
80 'type' => 'string',
89 'type' => 'string',
99 'type' => 'string',
109 'type' => 'string',
119 'type' => 'string',
128 'type' => 'string',
137 'type' => 'string',
142 'type' => 'string',
151 'type' => 'string',
[all …]
H A DWebmasters.php76 'type' => 'string',
96 'type' => 'string',
101 'type' => 'string',
111 'type' => 'string',
116 'type' => 'string',
126 'type' => 'string',
131 'type' => 'string',
140 'type' => 'string',
145 'type' => 'string',
165 'type' => 'string',
[all …]
H A DCloudOSLogin.php82 'type' => 'string',
87 'type' => 'string',
91 'type' => 'string',
100 'type' => 'string',
105 'type' => 'string',
124 'type' => 'string',
144 'type' => 'string',
154 'type' => 'string',
164 'type' => 'string',
174 'type' => 'string',
[all …]
H A DIdeahub.php73 'type' => 'string',
93 'type' => 'string',
98 'type' => 'string',
117 'type' => 'string',
122 'type' => 'string',
126 'type' => 'string',
134 'type' => 'string',
153 'type' => 'string',
162 'type' => 'string',
181 'type' => 'string',
[all …]
H A DForms.php88 'type' => 'string',
102 'type' => 'string',
122 'type' => 'string',
127 'type' => 'string',
137 'type' => 'string',
142 'type' => 'string',
150 'type' => 'string',
169 'type' => 'string',
179 'type' => 'string',
184 'type' => 'string',
[all …]
/plugin/authucenter/lib/uc_client/model/
H A Dbase.php147 if(strlen($string) <= $length) {
148 return $string;
151 …$string = str_replace(array('&amp;', '&quot;', '&lt;', '&gt;'), array('&', '"', '<', '>'), $string
157 while($n < strlen($string)) {
159 $t = ord($string[$n]);
185 $strcut = substr($string, 0, $n);
189 $strcut .= ord($string[$i]) > 127 ? $string[$i].$string[++$i] : $string[$i];
241 function dstripslashes($string) { argument
242 if(is_array($string)) {
247 $string = stripslashes($string);
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DDocument.php39 * @param string|null $id The document ID, if null it will be created
40 * @param array|string $data Data array
41 * @param Index|string $index Index name
43 public function __construct(?string $id = null, $data = [], $index = '')
53 public function __get(string $key)
61 public function __set(string $key, $value): void
66 public function __isset(string $key): bool
71 public function __unset(string $key): void
101 public function set(string $key, $value): self
114 public function has(string
[all...]
/plugin/odtsupport/
H A Dsyntax.php83 $string = "";
88 $string = substr($match, 7, -2); //strip markup
89 $hash = hash(hash_hmac_algos()[0], $string);
92 $string = substr($match, 8, -2); //strip markup
93 $hash = hash(hash_hmac_algos()[0], $string);
106 list($string,$string2) = explode(":",$params);
121 if (strpos($string,'date') !== false) {
132 return array($command,$string,$hash,$string2);
146 list($command, $string, $hash, $string2) = $data;
150 $url = $this->getConf('serverurl').$string;
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D20.20.js1string","@string"],[/`/,"string","@rawstring"],[/'[^\\']'/,"string"],[/(')(@escapes)(')/,["string"… property in AnonymousFunction485efcbf0100.s.tokenizer
H A D33.33.js1string",'@herestring."""'],[/'''/,"string","@herestring.'''"],[/"/,{cases:{"@eos":"string","@defau… property in AnonymousFunction1ba345870100.s.tokenizer
H A D44.44.js1string",'@herestring."'],[/\@'/,"string","@herestring.'"],[/"/,{cases:{"@eos":"string","@default":… property in AnonymousFunction54f1fc0b0100.o.tokenizer
/plugin/combo/ComboStrap/
H A DSlug.php21 static public function getCanonical(): string
30 * @param $string
31 * @return string|null
33 public static function toSlugPath($string): ?string argument
35 if (empty($string)) return null;
38 $parts = explode(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, $string);
57 static public function getTab(): string
62 static public function getDescription(): string
67 static public function getLabel(): string
[all...]
H A DPath.php24 * @param string $uri
27 public static function createFromUri(string $uri): Path;
30 * @return string
33 function getExtension(): string;
36 * @return string
39 function getLastNameWithoutExtension(): string;
50 * @return string
53 function getLastName(): string;
73 * @return string only the string representatio
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
H A DDsn.php17 * @var string|null
26 public function __construct(?string $scheme, array $parameters = [])
32 public function getScheme(): ?string
40 public function withScheme(?string $scheme)
58 public function getParameter(string $key, $default = null)
68 public function withParameter(string $key, $value)
79 public function withoutParameter(string $key)
87 public function getHost(): ?string
97 public function getPath(): ?string
102 public function getUser(): ?string
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DScriptedMetric.php13 * @param string $name the name if this aggregation
14 * @param string|null $initScript Executed prior to any collection of documents
15 * @param string|null $mapScript Executed once per document collected
16 * @param string|null $combineScript Executed once on each shard after document collection is complete
17 * @param string|null $reduceScript Executed once on the coordinating node after all shards have returned their results
20 string $name,
21 ?string $initScript = null,
22 ?string $mapScript = null,
23 ?string $combineScript = null,
24 ?string
[all...]
/plugin/highlightjs/highlight/
H A Dreadme.rus.txt60 .python .string {
118 string строка
130 string строка
145 string строка
218 string строка
229 string строка
237 string строка
248 string строка
279 string строка
290 string строка
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DMatchPhrase.php18 public function __construct(?string $field = null, $values = null)
32 public function setField(string $field, $values): self
40 * @param bool|float|int|string $value
44 public function setFieldParam(string $field, string $key, $value): self
56 * Sets the query string.
60 public function setFieldQuery(string $field, string $query): self
70 public function setFieldAnalyzer(string $field, string
[all...]

12345678910>>...122