Home
last modified time | relevance | path

Searched refs:array (Results 176 – 200 of 765) sorted by last modified time

12345678910>>...31

/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js746 function removeMatching(array, testFunc) {
749 while (i < array.length) {
750 if (testFunc(array[i])) { // truthy value means *remove*
751 array.splice(i, 1);
761 function removeExact(array, exactVal) {
764 while (i < array.length) {
765 if (array[i] === exactVal) {
766 array.splice(i, 1);
H A Dmoment.js700 func = function (input, array) { argument
701 array[callback] = toInt(input);
767 addParseToken('YY', function (input, array) { argument
770 addParseToken('Y', function (input, array) { argument
771 array[YEAR] = parseInt(input, 10);
917 array[MONTH] = toInt(input) - 1;
924 array[MONTH] = month;
1721 array[HOUR] = toInt(input);
3642 addParseToken('Q', function (input, array) { argument
3643 array[MONTH] = (toInt(input) - 1) * 3;
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DComponent.php268 * @param array $array
271 $sortScore = function($key, $array) {
273 if ($array[$key] instanceof Component) {
277 if ($array[$key]->name === 'VTIMEZONE') {
287 if ($array[$key] instanceof Property) {
288 if ($array[$key]->name === 'VERSION') {
/plugin/davcal/vendor/sabre/xml/
H A DCHANGELOG.md8 that it always returns an array of elements, or an empty array.
143 * Changed: Reader::parse returns an array with 1 level less depth.
157 a string (in case of a text-node), or an array (in case there were child
/plugin/davcal/vendor/sabre/http/
H A DREADME.md335 * @param array $headers
428 * @return array
437 * @return array
449 * @param array $postData
467 * @param array $data
512 * @return array
544 * @param array $headers
555 * @param array $headers
657 * @return array
689 * @param array $headers
[all …]
/plugin/davcal/vendor/sabre/dav/
H A DCONTRIBUTING.md45 1. PHP 5.4 array syntax must be used every where. This means you use `[` and
46 `]` instead of `array(` and `)`.
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md144 strings or array of strings and is used to serialize an
706 $command = $client->getCommand('foo', array(
713 $command = $client->getCommand('foo', array(
714 'command.request_options' => array(
715 'headers' => array('Test' => '123'),
732 default `array()`
912 public static function factory($config = array())
914 $default = array();
940 $default = array();
1027 "type": "array",
[all …]
H A DCHANGELOG.md241 previous headers in the associative array.
290 an array.
523 passing an array of arrays of listener configuration.
584 * HasDataTrait now initializes the internal data array as an empty array so
585 that the toArray() method always returns an array.
597 associative array contains the "fn", "priority", and "once" keys.
758 default `array()`
901 * Bug fix: Parsing a query string with a single PHP array value will now result in an array. #263
956 JSON is an array
1001 * Added context array to RequestInterface::setState()
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md8 …olog/LogRecord.php) interface that can be used to type-hint records like `array|\Monolog\LogRecord…
72 * Fixed array access on null in RavenHandler
104 …* Fixed type error in BrowserConsoleHandler when the context array of log records was not associat…
165 * Fixed array access on null in RavenHandler
499 * Fixed WebProcessor array access so it checks for data presence
H A DUPGRADE.md13 - The `datetime` in every record array is now a DateTimeImmutable, not that you
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md65 - Ignore array keys in header values when merging
214 - `Uri::withAddedHeader` with an array of header values.
H A DREADME.md344 `public static function parseMessage(string $message): array`
346 Parses an HTTP message into an associative array.
376 `public static function parse(string|array $header): array`
386 `public static function normalize(string|array $header): array`
396 Parse a query string into an associative array.
408 Build a query string from an array of key value pairs.
417 `public static function caselessRemove(iterable<string> $keys, $keys, array $data): array`
458 - set_headers: (array) Sets the given headers.
459 - remove_headers: (array) Remove the given headers.
660 `public static function fromParts(array $parts): UriInterface`
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md450 $opt_params = array(
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php50 $array = func_get_arg(0);
51 $this->mapTypes($array);
102 protected function mapTypes($array) argument
105 foreach ($array as $key => $val) {
122 unset($array[$key]);
125 unset($array[$key]);
132 $this->modelData = $array;
224 * @param array $array
227 protected function isAssociativeArray($array) argument
229 if (!is_array($array)) {
[all …]
/plugin/authgooglesheets/vendor/psr/cache/
H A DCHANGELOG.md11 …cks that `getItems()` and `deleteItems()` take an array of strings (`string[]`) compared to just `
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md185 // Define the Google Application Credentials array
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUriTemplate.php216 * @param array $array Array to check
220 private function isAssoc(array $array) argument
222 return $array && array_keys($array)[0] !== 0;
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DCHANGELOG.md8 - Fix pool memory leak when empty array of promises provided
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DMongoDBFormatter.php73 * @param mixed[] $array
76 protected function formatArray(array $array, int $nestingLevel = 0) argument
82 foreach ($array as $name => $value) {
84 $array[$name] = $this->formatDate($value, $nestingLevel + 1);
86 $array[$name] = $this->formatException($value, $nestingLevel + 1);
88 $array[$name] = $this->formatArray($value, $nestingLevel + 1);
90 $array[$name] = $this->formatObject($value, $nestingLevel + 1);
94 return $array;
/plugin/authgooglesheets/vendor/psr/log/
H A DREADME.md45 $this->logger->error('Oh no!', array('exception' => $exception));
/plugin/authgooglesheets/vendor/psr/http-message/
H A DCHANGELOG.md25 value `string[][]`, indicating the format is a nested array of strings.
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md33 $payload = array(
53 an associative array, you will need to cast it as such:
56 $decoded_array = (array) $decoded;
101 $payload = array(
115 an associative array, you will need to cast it as such:
118 $decoded_array = (array) $decoded;
142 $payload = array(
176 $payload = array(
209 #### Casting to array
218 // cast to array
[all …]
/plugin/translate/
H A DList_of_ISO_639-1_codes.txt4 $a=array(
5 array("aa", "aar", "-", "aar", "Afar", "Afaraf", ""),
6 array("ab", "abk", "-", "abk", "Abkhazian", "Аҧсуа", ""),
10 array("am", "amh", "-", "amh", "Amharic", "አማርኛ", ""),
23 array("bn", "ben", "-", "ben", "Bengali", "বাংলা", ""),
36 array("da", "dan", "-", "dan", "Danish", "dansk", ""),
40 array("ee", "ewe", "-", "ewe", "Ewe", "Ɛʋɛgbɛ", ""),
72 array("ig", "ibo", "-", "ibo", "Igbo", "Igbo", ""),
164 array("th", "tha", "-", "tha", "Thai", "ไทย", ""),
192 $k = array();
[all …]
/plugin/tablelayout/
H A Dyarn.lock92 array-find-index@^1.0.1:
96 array-union@^1.0.1:
98 …resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375…
100 array-uniq "^1.0.1"
102 array-uniq@^1.0.1:
104 …resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e0588947…
106 array-unique@^0.2.1:
108 …resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70f…
430 array-find-index "^1.0.1"
990 array-union "^1.0.1"
[all …]
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js830 var arr = this.array();
859 var arr = this.array();
875 var arr = this.array();
1486 var arr = this.array();
1523 var arr = this.array();
1541 var arr = this.array();
1623 !! ~index(this.array(), name)
3226 function repush(array, item) { argument
3227 for (var i = 0, ii = array.length; i < ii; i++) if (array[i] === item) {
3228 return array.push(array.splice(i, 1)[0]);
[all …]

12345678910>>...31