Home
last modified time | relevance | path

Searched refs:set (Results 126 – 150 of 1255) sorted by last modified time

12345678910>>...51

/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php90 public function set(Metadata $metadata) function in ComboStrap\\Meta\\Store\\MetadataDbStore
98 throw new ExceptionRuntime("The metadata ($metadata) is not yet supported on set", self::CANONICAL);
250 throw new ExceptionRuntimeInternal("The children of the tabular metadata ($metadata) should be set to synchronize into the database");
H A DMetadataDokuWikiStore.php37 * This metadata can only be set when {@link Syntax::render() rendering}
97 * to set the metadata
100 * The metadata are set in $METADATA_RENDERERS (A global cache variable where the persistent data is set/exist
137 public function set(Metadata $metadata) function in ComboStrap\\Meta\\Store\\MetadataDokuWikiStore
213 * Done on set via the dokuwiki function
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DDisk.php94 public function set($name, $value) function in Handlebars\\Cache\\Disk
H A DDummy.php45 public function set($name, $value) function in Handlebars\\Cache\\Dummy
/plugin/combo/vendor/dragonmantank/cron-expression/
H A DCHANGELOG.md36 - Only set default timezone if the given $currentTime is not a DateTime instance ([#34](https://github.com/mtdowling/cron-expression/issues/34))
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DCache.php38 public function set($name, $value); function
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DSetTransition.php12 * A transition containing a set of values.
17 public $set; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\SetTransition
19 public function __construct(ATNState $target, ?IntervalSet $set = null) argument
23 if ($set !== null) {
24 $this->set = $set;
26 $this->set = new IntervalSet();
27 $this->set->addOne(Token::INVALID_TYPE);
33 return $this->set->contains($symbol);
38 return $this->set;
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php163 * until we find one in the resynchronization set--loosely the set of tokens
180 // token set so nothing got consumed. Consume a single token
213 * resynchronization set of the current rule.
216 * with an empty alternative), then the expected set includes what follows
236 * compare token set at the start of the loop and at each iteration. If for
510 * `LA(1)==';'` is in the set of tokens that can follow the `')'` token
762 * Compute the error recovery set for the current rule. During
763 * rule invocation, the parser pushes the set of tokens that can
767 * This local follow set onl
886 consumeUntil(Parser $recognizer, IntervalSet $set) global() argument
[all...]
/plugin/combo/ComboStrap/
H A DIdentity.php73 // $INPUT->server->set('REMOTE_USER', $user);
110 $INPUT->server->set('REMOTE_USER', $user);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntervalSet.php15 * of a sequential range of numbers that are all part of the set. For example,
16 * the set { 1, 2, 3, 4, 7, 8 } may be represented as { [1, 4], [7, 8] }.
31 * Create a set with a single element, el.
35 $set = new self();
37 $set->addOne($number);
39 return $set;
43 * Create a set with all ints within range [start..end] (inclusive).
47 $set = new self();
49 $set->addRange($start, $end);
51 return $set;
54 complement(IntervalSet $set) global() argument
63 subtract(IntervalSet $set) global() argument
[all...]
H A DLL1Analyzer.php38 * Calculates the SLL(1) expected lookahead set for each outgoing transition
85 * Compute set of tokens that can follow `s` in the ATN in the
89 * `s` is reached, {@see Token::EPSILON} is added to the result set.
91 * reached, {@see Token::EOF} is added to the result set.
100 * @return IntervalSet The set of tokens that can follow `s` in the ATN
127 * Compute set of tokens that can follow `s` in the ATN in the
132 * the result set. If `context` is not `null` and `addEOF` is
134 * reached, {@see Token::EOF} is added to the result set.
145 * @param IntervalSet $look The result lookahead set.
146 * @param Set $lookBusy A set use
[all...]
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js19 if(!cssLoaded){document.getElementsByTagName("head")[0].appendChild(new lib.element("link").attribute.set("rel","stylesheet").attribute.set("type","text/css").attribute.set("href",env.css).element);}
21 el.firebugIcon=new lib.element("div").attribute.set('firebugIgnore',true).attribute.set("id","firebugIconDiv").attribute.set("title",iconTitle).attribute.set("alt",iconTitle).event.addListener("mousedown",win.iconClicked).insert(document.body);el.content={};el.mainiframe=new lib.element("IFRAME").attribute.set("id","FirebugIFrame").attribute.set('firebugIgnore',true).environment.addStyle({"display":"none","width":lib.util.GetViewport().width+"px"}).insert(document.body);el.main=new lib.element("DIV").attribute.set("i
127 if(pi.util.IsHash(_object[name])){_branch[name]={};this.movePrivateMembers(_object[name],_branch[name]);}};};};pi.element=new pi.base;pi.element.init=function(_val){this.environmen global() method in pi.element.body.attribute
[all...]
H A Dfirebug-lite-1.2.js116 new lib.element("link").attribute.set("rel","stylesheet").attribute.set("type","text/css").attribute.set("href",env.css).element
127 el.firebugIcon = new lib.element("div").attribute.set('firebugIgnore',true).attribute.set("id","firebugIconDiv").attribute.set("title",iconTitle).attribute.set("alt",iconTitle).event.addListener("mousedown",win.iconClicked).insert(document.body);
133 el.mainiframe = new lib.element("IFRAME").attribute.set("id","FirebugIFrame").attribute.set('firebugIgnore',true).environment.addStyle({ "display":"none", "width":lib.util.GetViewport().width+"px" }).insert(document.body);
134 el.main = new lib.element("DIV").attribute.set("i
2354 "set":function(_name,_value){ global() method in pi.element.body.attribute
[all...]
/plugin/combo/vendor/salesforce/handlebars-php/
H A DREADME.md84 Below we are going to create the Handlebars object, set the partials loader, and put some data in the model.
109 # We'll use $handlebars throughout this the examples, assuming the will be all set this way
174 Let's use this simple model for the following examples, assuming everything is already set like above.
683 To enable the new data variables, set the `enableDataVariables` option to `true` when instantiating the Handlebars
/plugin/combo/vendor/composer/
H A Dautoload_real.php39 $loader->set($namespace, $path);
/plugin/combo/vendor/symfony/process/
H A DCHANGELOG.md7 * added `Process::setOptions()` to set `Process` specific options
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DPredictionContext.php101 * context is in set.
217 $mergeCache->set($a, $b, $rootMerge);
247 $mergeCache->set($a, $b, $spc);
276 $mergeCache->set($a, $b, $apc);
298 $mergeCache->set($a, $b, $a_);
500 $mergeCache->set($a, $b, $a_);
518 $mergeCache->set($a, $b, $a);
526 $mergeCache->set($a, $b, $b);
533 $mergeCache->set($a, $b, $M);
/plugin/combo/.travis/
H A D.travis.yml38 # - set | grep TRAVIS # env variable
/plugin/data/_test/
H A Dhelper.test.php
/plugin/adhoctags/
H A DREADME.md82 Note: this will also set the HTML `dir` attribute: either by setting a language code that has a default RTL script, or by appending a script tag that refers to a RTL script (e.g. `Arab` or `Hebr`). The resulting text direction can still be overriden by the `[dir=…]` attribute (see below)
88 - `[name=value]` – extended format for all other allowed attributes. For example, `[style=color:red]`, or `[dir=ltr]` to override the text direction set by the `:lang` attribute, etc.
/plugin/dwtimeline/
H A Dstyle.less199 /* set the Header to left or */
H A Dprint.css87 /* set the Header to left or */
/plugin/mobiletable/
H A DmobileTable.js91 cellMap.set(cell, newCell)
105 cellMap.set(cell, newCell)
233 tableMap.set(mobile, table)
H A Dscript.js3 C.set(d,b);g.appendChild(b);return b},I=function(g){var d=document.createElement("div");g.replaceWi…
5 …document.createElement("th");h.colSpan=2;h.className=x.className;E(x,h)&&C.set(x,h);q.appendChild(…
6 …children[l-w],q===D).rowSpan=h);y=1===y?h:y-1;if(1<y)continue}}l+=1}}c=u;B.set(c,b);m.replaceWith(…
/plugin/bpmnio/images/
H A DREADME4 Icon set: Silk

12345678910>>...51