Home
last modified time | relevance | path

Searched refs:variable (Results 1 – 25 of 542) sorted by relevance

12345678910>>...22

/plugin/findologicxmlexport/vendor/sebastian/object-enumerator/src/
DEnumerator.php25 * @param array|object $variable
29 public function enumerate($variable) argument
31 if (!is_array($variable) && !is_object($variable)) {
47 if ($processed->contains($variable)) {
51 $array = $variable;
52 $processed->add($variable);
54 if (is_array($variable)) {
66 $objects[] = $variable;
67 $reflector = new \ReflectionObject($variable);
73 $value = $attribute->getValue($variable);
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
DCodeExporter.php58 * @param mixed $variable
61 private function exportVariable($variable) argument
63 if (is_scalar($variable) || is_null($variable) ||
64 (is_array($variable) && $this->arrayOnlyContainsScalars($variable))) {
65 return var_export($variable, true);
68 return 'unserialize(' . var_export(serialize($variable), true) . ')';
DSnapshot.php399 * @param mixed $variable
403 private function canBeSerialized($variable) argument
405 if (!is_object($variable)) {
406 return !is_resource($variable);
409 if ($variable instanceof \stdClass) {
413 $class = new ReflectionClass($variable);
417 return $variable instanceof Serializable;
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
DBuffer.php183 ->variable($result->rewind())
191 ->variable($result->next())
200 ->variable($result->next())
209 ->variable($result->next())
214 ->variable($result->key())
216 ->variable($result->current())
225 ->variable($result->rewind())
241 ->variable($result->next())
261 ->variable($result->next())
285 ->variable($result->previous())
[all …]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
DContext.php353 * @param mixed $variable variable to check
360 private function findVariableInContext($variable, $inside, $strict = false) argument
364 return $variable;
365 } elseif (is_array($variable)) {
366 if (isset($variable[$inside])) {
367 $value = $variable[$inside];
369 } elseif (is_object($variable)) {
370 if (isset($variable->$inside)) {
371 $value = $variable->$inside;
372 } elseif (is_callable(array($variable, $inside))) {
[all …]
/plugin/strata/helper/
Dsyntax.php195 function variable($var) { function in helper_plugin_strata_syntax
271 …if(preg_match("/^({$p->variable})\s*(?:\((asc|desc)(?:ending)?\))?$/S",utf8_trim($line['text']),$m…
272 $var = $p->variable($match[1]);
298 if(preg_match("/({$p->variable})$/",utf8_trim($line['text']),$match)) {
299 $var = $p->variable($match[1]);
322 if(preg_match("/^({$p->variable})$/",utf8_trim($line['text']),$match)) {
323 $var = $p->variable($match[1]);
507 …if(preg_match("/^({$p->variable}|{$p->reflit})\s+({$p->variable}|{$p->predicate})\s*({$p->type})?\…
512 $subject = $this->variable($subject);
524 $predicate = $this->variable($predicate);
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
DXML.php185 $variable = null;
189 $variable = [];
204 $variable[(string) $entry->getAttribute('key')] = $value;
206 $variable[] = $value;
225 $variable = $class->newInstanceArgs($constructorArgs);
227 $variable = new $className;
232 $variable = $element->textContent == 'true' ? true : false;
238 $variable = $element->textContent;
240 settype($variable, $element->tagName);
244 return $variable;
DGlobalState.php179 protected static function exportVariable($variable) argument
181 if (is_scalar($variable) || is_null($variable) ||
182 (is_array($variable) && self::arrayOnlyContainsScalars($variable))) {
183 return var_export($variable, true);
187 var_export(serialize($variable), true) .
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
DChildLink.php33 public $variable; variable in Google\\Service\\Spanner\\ChildLink
66 public function setVariable($variable) argument
68 $this->variable = $variable;
75 return $this->variable;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
Dliteral.test12 3. Conditional expression with a variable
18 5. Nested conditionals with a variable
21 6. Nested conditionals with a variable marked safe
35 3. Conditional expression with a variable
41 5. Nested conditionals with a variable
44 6. Nested conditionals with a variable marked safe
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
DUriTemplate.php114 $variable = $this->variables[$value['value']];
118 if (is_array($variable)) {
119 $isAssoc = $this->isAssoc($variable);
121 foreach ($variable as $key => $var) {
158 if (empty($variable)) {
181 $variable = substr($variable, 0, $value['position']);
183 $expanded = rawurlencode($variable);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
DRevertVariableResponse.php28 public function setVariable(Variable $variable) argument
30 $this->variable = $variable;
37 return $this->variable;
DListVariablesResponse.php47 public function setVariable($variable) argument
49 $this->variable = $variable;
56 return $this->variable;
DFolderEntities.php79 public function setVariable($variable) argument
81 $this->variable = $variable;
88 return $this->variable;
DEntity.php110 public function setVariable(Variable $variable) argument
112 $this->variable = $variable;
119 return $this->variable;
/plugin/codemirror/dist/modes/
Dgas.min.js.map1variable\";\n registers.eax = \"variable-2\";\n registers.rax = \"variable-3\";\n\n regis…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
DFunctionDuplicateArgumentSniff.php65 $variable = $tokens[$i]['content'];
66 if (in_array($variable, $foundVariables) === true) {
68 $data = array($variable);
71 $foundVariables[] = $variable;
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/
Dsharedapi.php247 $variable = '';
253 if (empty($variable) && isset($_SERVER['HTTP_REFERER'])) {
254 $variable = $_SERVER['HTTP_REFERER'];
258 if (empty($variable) && isset($_SESSION[$name])) {
259 $variable = $_SESSION[$name];
263 if (empty($variable) && isset($_COOKIE[$name])) {
264 $variable = sharedapi_gpc_variable($name, '', 'c');
268 if (empty($variable) && isset($_GET[$gname])) {
269 $variable = sharedapi_gpc_variable($gname, '', 'g');
273 if (empty($variable) && isset($_GET[$gname])) {
[all …]
/plugin/combo/ComboStrap/
DTemplate.php74 $variable = $matches[1];
76 $variable = trim(substr($part, 1));
78 if (array_key_exists($variable, $this->_data)) {
79 $value = $this->_data[$variable];
81 …LogUtility::warning("The variable ($variable) was not found in the data and has not been replaced"…
82 $value = $variable;
/plugin/asciidocjs/node_modules/lodash/
Dtemplate.js224 var variable = hasOwnProperty.call(options, 'variable') && options.variable;
225 if (!variable) {
230 else if (reForbiddenIdentifierChars.test(variable)) {
240 source = 'function(' + (variable || 'obj') + ') {\n' +
241 (variable
/plugin/dirtylittlehelper/mermaid/editor/docs/
D58.58.js.map1variable.predefined'],\n [/\\$\\w+/, 'variable'],\n [/\\$[*@#?\\-$!0_]/, 'va…
D18.18.js.map1variable: /\\${?[\\w]+}?/,\n tokenizer: {\n root: [\n { include: '@whitespace…
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
Ddemo.browse.php453 function string_var_dump($variable) { argument
455 return print_r($variable, true);
458 var_dump($variable);
464 function table_var_dump($variable, $wrap_in_td=false, $encoding='') { argument
468 switch (gettype($variable)) {
472 foreach ($variable as $key => $value) {
481 if (($key == 'data') && isset($variable['image_mime'])) {
484 …$returnstring .= '</td>'."\n".'<td><img src="data:'.$variable['image_mime'].';base64,'.base64_enco…
497 …$returnstring .= ($wrap_in_td ? '<td class="dump_boolean">' : '').($variable ? 'TRUE' : 'FALSE').(…
501 …$returnstring .= ($wrap_in_td ? '<td class="dump_integer">' : '').$variable.($wrap_in_td ? '</td>'…
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
Dslice.rst47 variable. If start is negative, the sequence will start that far from the end
48 of the variable.
51 many elements in it. If the variable is shorter than the length, then only the
52 available variable elements will be present. If length is given and is
54 variable. If it is omitted, then the sequence will have everything from offset
55 up until the end of the variable.
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/
DLlk.php221 ->variable($result)
256 ->variable($result)
289 ->variable($result)
340 ->variable($result)
364 ->variable($result)

12345678910>>...22