Home
last modified time | relevance | path

Searched refs:variableName (Results 1 – 25 of 28) sorted by relevance

12

/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DContext.php206 * @param string $variableName name of variable or a callable on current context
210 public function with($variableName) argument
212 $value = $this->get($variableName);
223 * @param string $variableName variavle name to get from current context
229 public function get($variableName, $strict = false) argument
232 $variableName = trim($variableName);
235 if ($this->enableDataVariables && substr($variableName, 0, 1) == '@') {
236 return $this->getDataVariable($variableName, $strict);
240 while (substr($variableName, 0, 3) == '../') {
241 $variableName = trim(substr($variableName, 3));
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
DParam.php34 private $variableName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Param
40 * @param string $variableName
45 …public function __construct($variableName, Type $type = null, $isVariadic = false, Description $de… argument
47 Assert::string($variableName);
50 $this->variableName = $variableName;
70 $variableName = '';
81 $variableName = array_shift($parts);
84 if (substr($variableName, 0, 3) === '...') {
86 $variableName = substr($variableName, 3);
89 if (substr($variableName, 0, 1) === '$') {
[all …]
DVar_.php34 protected $variableName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_
37 * @param string $variableName
41 public function __construct($variableName, Type $type = null, Description $description = null) argument
43 Assert::string($variableName);
45 $this->variableName = $variableName;
64 $variableName = '';
74 $variableName = array_shift($parts);
77 if (substr($variableName, 0, 1) === '$') {
78 $variableName = substr($variableName, 1);
84 return new static($variableName, $type, $description);
[all …]
DPropertyRead.php34 protected $variableName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead
37 * @param string $variableName
41 public function __construct($variableName, Type $type = null, Description $description = null) argument
43 Assert::string($variableName);
45 $this->variableName = $variableName;
64 $variableName = '';
74 $variableName = array_shift($parts);
77 if (substr($variableName, 0, 1) === '$') {
78 $variableName = substr($variableName, 1);
84 return new static($variableName, $type, $description);
[all …]
DProperty.php34 protected $variableName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Property
37 * @param string $variableName
41 public function __construct($variableName, Type $type = null, Description $description = null) argument
43 Assert::string($variableName);
45 $this->variableName = $variableName;
64 $variableName = '';
74 $variableName = array_shift($parts);
77 if (substr($variableName, 0, 1) === '$') {
78 $variableName = substr($variableName, 1);
84 return new static($variableName, $type, $description);
[all …]
DPropertyWrite.php34 protected $variableName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite
37 * @param string $variableName
41 public function __construct($variableName, Type $type = null, Description $description = null) argument
43 Assert::string($variableName);
45 $this->variableName = $variableName;
64 $variableName = '';
74 $variableName = array_shift($parts);
77 if (substr($variableName, 0, 1) === '$') {
78 $variableName = substr($variableName, 1);
84 return new static($variableName, $type, $description);
[all …]
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Visitor/
DArithmetic.php109 $variableName = 'unknown_variable'
112 ->object($compiler->parse($variableName . ' * 2'))
114 ->exception(function () use ($variableName, $compiler, $visitor) {
115 $visitor->visit($compiler->parse($variableName . ' * 2'));
126 $variableName = 'a_variable',
129 ->when($visitor->addVariable($variableName, function () use ($variableValue) {
133 ->float($visitor->visit($compiler->parse($variableName . ' * 2')))
210 $variableName = 'a_variable',
213 …->when($context->addVariable($variableName, function () use ($variableValue) { return $variableVal…
219 ->float($visitor->visit($compiler->parse('abs(' . $variableName . ' - PI)')))
[all …]
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
DBlacklist.php51 * @param string $variableName
53 public function addGlobalVariable($variableName) argument
55 $this->globalVariables[$variableName] = true;
104 * @param string $variableName
107 public function isGlobalVariableBlacklisted($variableName) argument
109 return isset($this->globalVariables[$variableName]);
/plugin/combo/ComboStrap/
H A DPageSqlTreeListener.php145 $variableName = strtolower($text);
146 switch ($variableName) {
152 $variableName = DatabasePageRow::IS_INDEX_COLUMN;
162 $variableName = "date({$variableName})";
166 $this->actualPredicateColumn = $variableName;
168 $variableName = "p." . $variableName;
170 if ($variableName === self::DEPTH) {
171 $variableName = "level";
173 $this->physicalSql .= "{$variableName} ";
176 $variableName = strtolower($text);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
DListPopulationTerm.php53 public $variableName; variable in Google\\Service\\Dfareporting\\ListPopulationTerm
156 public function setVariableName($variableName) argument
158 $this->variableName = $variableName;
165 return $this->variableName;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
DFileloader.php60 foreach ($newVariableNames as $variableName) {
61 if ($variableName != 'oldVariableNames') {
62 $GLOBALS[$variableName] = $newVariables[$variableName];
/plugin/combo/action/
H A Dqualitymutation.php107 $variableName = $data["name"];
108 if (!(in_array($variableName, self::getQualityMetas()))) {
119 … self::DESC => "The variable ($variableName) has the new value ($newValue) overriding ($oldValue)"
/plugin/codemirror/dist/modes/
Dstylus.min.js.map1variableName","startState","base","token","eatSpace","textAfter","cx","lineFirstWord","lineIndent"…
Dstylus.min.js1 …urn U(c);if(a=="word"){N=_(b.current());return"extend"}return U(c)};J.variableName=function(a,b,c)…
/plugin/bpmnio/vendor/dmn-js/dist/
Ddmn-viewer.production.min.js16variableName:dg(fg),typeName:gg,tagName:dg(gg),propertyName:mg,attributeName:dg(mg),className:dg(f… property
Ddmn-navigated-viewer.production.min.js16variableName:jg(Vg),typeName:$g,tagName:jg($g),propertyName:zg,attributeName:jg(zg),className:jg(V… property
/plugin/mizarveifiabledocs/dist/
Dscript.js1variableName:rS(rP),typeName:rA,tagName:rS(rA),propertyName:rM,attributeName:rS(rM),className:rS(r… property
Dscript.js.map1variableName: $f0075d67137b7b29$var$t($f0075d67137b7b29$var$name),\n /**\n A type [name](#hi…
/plugin/mizarproofchecker/dist/
Dscript.js1variableName:rS(rP),typeName:rA,tagName:rS(rA),propertyName:rM,attributeName:rS(rM),className:rS(r… property
Dscript.js.map1variableName: $f0075d67137b7b29$var$t($f0075d67137b7b29$var$name),\n /**\n A type [name](#hi…
/plugin/mizarverifiabledocs/dist/
H A Dscript.js1variableName:rC(rP),typeName:rO,tagName:rC(rO),propertyName:rM,attributeName:rC(rM),className:rC(r… property
H A Dscript.js.map1variableName: $f0075d67137b7b29$var$t($f0075d67137b7b29$var$name),\n /**\n A type [name](#hi…
/plugin/diagramsnet/lib/WEB-INF/lib/
Dcommons-lang3-3.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/jcapture/lib/
Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jmol2/jmol/
DCHANGES.txt5893 # adds @variableName in any command

12