/plugin/asciidocjs/node_modules/clean-css/lib/writer/ |
D | helpers.js | 46 var store = context.store; 49 store(context, tokens[i]); 52 store(context, comma(context)); 78 var store = context.store; 101 store(context, token); 102 store(context, semicolon(context, Breaks.AfterProperty, false)); 106 store(context, openBrace(context, Breaks.AfterRuleBegins, true)); 108 store(context, closeBrace(context, Breaks.AfterRuleEnds, false, isLast)); 111 store(context, token); 114 store(context, token[1]); [all …]
|
D | one-time.js | 3 function store(serializeContext, token) { function 10 store: store property
|
/plugin/swiftmail/Swift/Plugin/ |
D | Decorator.php | 34 protected $store; variable in Swift_Plugin_Decorator 112 $this->recursiveRestore($message, $this->store); //3.3.3 bugfix 121 $this->store = array( 126 $this->recursiveReplace($message, $replacements, $this->store); 134 protected function recursiveReplace(Swift_Message_Mime $mime, $replacements, &$store) argument 144 $store["headers"][$name] = array(); 145 $store["headers"][$name]["value"] = $value; 146 $store["headers"][$name]["attributes"] = array(); 153 if (!isset($store["headers"][$name])) 155 $store["headers"][$name] = array("value" => false, "attributes" => array()); [all …]
|
/plugin/swiftmail/Swift/Cache/ |
D | Memory.php | 25 protected $store = array(); variable in Swift_Cache_Memory 39 if (!isset($this->store[$key])) $this->store[$key] = $data; 40 else $this->store[$key] .= $data; 48 $this->store[$key] = null; 49 unset($this->store[$key]); 58 return array_key_exists($key, $this->store); 76 return $this->store[$key];
|
/plugin/asciidocjs/node_modules/core-js/modules/ |
D | _wks.js | 1 var store = require('./_shared')('wks'); variable 7 return store[name] || (store[name] = 11 $exports.store = store;
|
D | _metadata.js | 4 var store = shared.store || (shared.store = new (require('./es6.weak-map'))()); variable 7 var targetMetadata = store.get(target); 10 store.set(target, targetMetadata = new Map()); 43 store: store, property
|
D | es7.reflect.delete-metadata.js | 5 var store = metadata.store; variable 12 var targetMetadata = store.get(target); 14 return !!targetMetadata.size || store['delete'](target);
|
D | _shared.js | 4 var store = global[SHARED] || (global[SHARED] = {}); variable 7 return store[key] || (store[key] = value !== undefined ? value : {});
|
/plugin/asciidocjs/node_modules/core-js/library/modules/ |
D | _wks.js | 1 var store = require('./_shared')('wks'); variable 7 return store[name] || (store[name] = 11 $exports.store = store;
|
D | _metadata.js | 4 var store = shared.store || (shared.store = new (require('./es6.weak-map'))()); variable 7 var targetMetadata = store.get(target); 10 store.set(target, targetMetadata = new Map()); 43 store: store, property
|
D | es7.reflect.delete-metadata.js | 5 var store = metadata.store; variable 12 var targetMetadata = store.get(target); 14 return !!targetMetadata.size || store['delete'](target);
|
D | _shared.js | 4 var store = global[SHARED] || (global[SHARED] = {}); variable 7 return store[key] || (store[key] = value !== undefined ? value : {});
|
/plugin/captcha/ |
D | IpCounter.php | 11 protected $store; variable in dokuwiki\\plugin\\captcha\\IpCounter 19 $this->store = getCacheName($this->ip, '.captchaip'); 29 io_saveFile($this->store, '1', true); 39 return (int)@filesize($this->store); 49 @unlink($this->store);
|
/plugin/combo/ComboStrap/Meta/Field/ |
D | PageH1.php | 64 $store = $this->getReadStore(); 65 if ($store instanceof MetadataDokuWikiStore) { 66 $h1Parsed = $store->getFromName(self::H1_PARSED); 71 $h1 = $store->getCurrentFromName("title"); 108 $store = $this->getWriteStore(); 109 if ($store instanceof MetadataDokuWikiStore) { 110 $store->setFromPersistentName(self::H1_PARSED, $defaultValue);
|
/plugin/indexmenu/scripts/fancytree/modules/ |
D | jquery.fancytree.persist.js | 242 … store: "auto", // 'cookie': force cookie, 'local': force localStore, 'session': force sessionStore property 248 var store = this._local.store; 251 return store.get.call(this, key); 253 store.remove.call(this, key); 255 store.set.call(this, key, value); 296 local.store = null; 298 if (instOpts.store === "auto") { 299 instOpts.store = localStorageStore ? "local" : "cookie"; 301 if ($.isPlainObject(instOpts.store)) { 302 local.store = instOpts.store; [all …]
|
/plugin/combo/ComboStrap/Meta/Api/ |
D | MetadataBoolean.php | 65 $store = $this->getWriteStore(); 67 if ($store instanceof MetadataFormDataStore) { 91 $store = $this->getWriteStore(); 98 if ($store instanceof MetadataFormDataStore) { 102 if ($store instanceof MetadataDokuWikiStore) { 107 if ($store->isHierarchicalTextBased()) {
|
/plugin/combo/ComboStrap/ |
D | CreationDate.php | 48 $store = $this->getReadStore(); 50 if (!($store instanceof MetadataDokuWikiStore)) { 54 $fromName = $store->getFromName(self::DATE_DOKUWIKI_PROPERTY_NAME); 71 $store = $this->getWriteStore(); 72 if (!($store instanceof MetadataDokuWikiStore)) {
|
D | PageType.php | 40 public function setWriteStore($store): PageType argument 43 return parent::setWriteStore($store); 59 public function setReadStore($store): PageType argument 62 return parent::setReadStore($store);
|
D | FirstSvgIllustration.php | 52 $store = $this->getReadStore(); 53 if (!($store instanceof MetadataDokuWikiStore)) { 64 $firstImageId = $store->getFromName(FirstSvgIllustration::PROPERTY_NAME);
|
D | FirstRasterImage.php | 57 $store = $this->getReadStore(); 58 if (!($store instanceof MetadataDokuWikiStore)) { 66 $firstImageId = $store->getFromName(FirstRasterImage::PROPERTY_NAME);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/ |
D | PosCustomBatchResponseEntry.php | 112 public function setStore(PosStore $store) argument 114 $this->store = $store; 121 return $this->store;
|
D | PosCustomBatchRequestEntry.php | 122 public function setStore(PosStore $store) argument 124 $this->store = $store; 131 return $this->store;
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/ |
D | ApcCache.php | 50 $store = apc_store($key, $value, $this->ttl); 52 if (!$store) { 56 return $store;
|
/plugin/fedauth/classes/usr/ |
D | fa_signedin.usr.class.php | 45 $store =& $this->getUserStore(); 46 $uname = $store->getUsernameByIdentity($this->provid, $claimedId); 66 $store->refreshUserDataEntry($claimedId); 76 $store->addUserDataEntry($this->provid, $claimedId);
|
/plugin/move/helper/ |
D | plan.php | 689 $store = 'pages'; 691 $store = 'media'; 693 $store = 'ns'; 698 if(!isset($this->tmpstore[$store][$src])) { 699 $this->tmpstore[$store][$src] = $dst; 810 foreach($lists as $store => $file) { 812 $count = count($this->tmpstore[$store]); 817 … $this->tmpstore[$store] = array_reverse($this->tmpstore[$store]); // store in reverse order 818 foreach($this->tmpstore[$store] as $src => $dst) { 829 if($store != 'ns') { [all …]
|