Home
last modified time | relevance | path

Searched refs:keys (Results 151 – 175 of 576) sorted by relevance

12345678910>>...24

/plugin/dx/build/
H A DpluginInfoVersionUpdater.js14 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
/plugin/yearbox/build/
H A DpluginInfoVersionUpdater.js18 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
/plugin/eventum/
H A Dsyntax.php116 function filter_keys($keys, $data) { argument
118 foreach ($keys as $key => $value) {
/plugin/textinsert/
H A Dadmin.php84 $keys = array_keys($deletions);
85 foreach ($keys AS $_key) {
/plugin/addressbook/
H A Dsyntax.php411 $keys = $this->getKeys();#Array('firstname','surname','cfunction','description');
413 foreach ($keys as $k) $res[$k] = $_REQUEST[$k];
460 $keys = array_keys($info);
474 (".implode(',',$keys).") VALUES
477 foreach ($keys as $k) {
498 foreach ($keys as $k) {
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.core.js232 nativeKeys = overArg(Object.keys, Object),
581 return object && baseFor(object, iteratee, keys);
1119 collection = keys(collection);
1281 objProps = keys(object),
1283 othProps = keys(other),
3276 var keys = nativeKeys; variable
3388 return object == null ? [] : baseValues(object, keys(object));
3563 var props = keys(source),
3571 methodNames = baseFunctions(source, keys(source));
3723 lodash.keys = keys;
/plugin/dx/skel/build/
H A DpluginInfoVersionUpdater.js.skel14 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSEENTRIES.php241 $keys = preg_split("/=,/", $oldString);
245 array_pop($keys);
246 foreach($keys as $key)
/plugin/keyboard/
H A Dplugin.info.txt7 …s a combined syntax and action plugin in order to markup text as keyboard keys, similar to (and ma…
/plugin/pdb/classes/
H A Dcache.php168 $keys = array_keys($ar);
171 $k = $keys[$i];
/plugin/cache/
H A Dplugin_cache.php175 $keys = array_keys($ar);
178 $k = $keys[$i];
/plugin/pubchem/classes/
H A Dcache.php168 $keys = array_keys($ar);
171 $k = $keys[$i];
/plugin/pubmed/classes/
H A Dcache.php168 $keys = array_keys($ar);
171 $k = $keys[$i];
/plugin/approve/action/
H A Dmigration.php55 $keys = join(',', array_keys($entry));
58 $sql = "INSERT OR IGNORE INTO $table ($keys) VALUES ($vals)";
/plugin/pagequery/
H A Dsyntax.php301 $keys = ['name', 'id', 'title', 'abstract', 'display'];
305 $sorted_results = $pq->mgroup($sort_array, $keys, $group_opts);
/plugin/sqlcomp/
H A Dsyntax.php485 $keys = fgetcsv ( $handle , 1000, $Query);
490 $temprow[$keys[$key]] = $value;
524 $keys = array_keys($data[0]);
525 $sResponse .= implode(";",$keys)."\n";
/plugin/diagramsnet/lib/plugins/
H A Dvoice.js1524 var keys = [mxConstants.STYLE_FILLCOLOR, mxConstants.STYLE_GRADIENTCOLOR,
1537 var style = getBestWord(styleToken, keys);
1613 style = getBestWord(styleToken, keys);
1668 keys = [mxConstants.STYLE_GRADIENTCOLOR,
1689 style = getBestWord(styleToken, keys);
1714 var keys = [mxConstants.STYLE_ALIGN, mxConstants.STYLE_VERTICAL_ALIGN,
1727 var style = resolveStylename(styleToken, keys);
2089 var keys = evt.getProperty('keys');
2092 if (cells != null && keys != null && keys.length == 1 && values.length == 1)
2108 App.say('Removed {1}', [keys[0]]);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/
H A Dobjects.test15 {% for key in items|keys %}
/plugin/contactmodern/
H A DREADME.textile38 * reCaptcha keys (optional)
40 p. You can receive the needed reCaptcha keys on http://www.google.com/recaptcha.
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php232 $keys = array_keys($array);
233 foreach ($keys as $key) {
/plugin/ireadit/action/
H A Dmigration.php57 $keys = join(',', array_keys($entry));
60 $sql = "INSERT OR IGNORE INTO $table ($keys) VALUES ($vals)";
/plugin/structodt/
H A Daction.php39 $keys = ['template', 'pdf', 'hideform', 'filename'];
44 if (!in_array($key, $keys)) return;
/plugin/htmlokay/
H A Dadmin.php136 $keys = array_keys($this->output);
137 if (!in_array('group', $keys) && !in_array('user', $keys)) return false;
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php860 $keys = array_unique(array_map(function($child) {
863 $keys = array_diff($keys, $propertiesFilter);
864 foreach ($keys as $key) {
/plugin/discussion/
H A Daction.php419 $keys = [];
421 $keys = @array_keys($data['comments']);
424 …if($cnt > 1 || ($cnt == 1 && $data['comments'][$keys[0]]['show'] == 1) || $this->getConf('allowgue…
469 * @param null|array $keys
472 protected function _flattenThreads($comments, $keys = null) { argument
473 if (is_null($keys))
474 $keys = array_keys($comments);
476 foreach($keys as $cid) {

12345678910>>...24