Home
last modified time | relevance | path

Searched refs:result (Results 176 – 200 of 1997) sorted by last modified time

12345678910>>...80

/plugin/combo/ComboStrap/
H A DPipelineUtility.php251 $result = "";
254 if (!empty($result)) {
255 $result .= $pattern;
257 $result .= $words[$i];
260 return $result;
H A DPluginUtility.php211 $result = preg_match_all('/' . $attributePattern . '/i', $string, $matches);
212 if ($result != 0) {
H A DHttp.php26 $result = self::getHeadersForName($name, $headers);
28 if (count($result) == 0) {
32 return $result[0];
86 $result = array();
96 $result[] = $header;
99 return $result;
H A DSqliteRequest.php32 private $result;
118 $this->result = new SqliteResult($this, $res);
119 return $this->result;
158 if ($this->result !== null) {
159 $this->result->close();
160 $this->result = null;
24 private $result; global() variable in ComboStrap\\SqliteRequest
H A DFetcherMarkup.php135 * The result
370 * result}
745 * @return LocalPath - the cache path is where the result is stored if the cache is on
1280 $evt->result = array('current' => &$renderer->meta, 'persistent' => &$renderer->persistent);
1285 $this->meta = $evt->result;
H A DTemplate.php118 $result = preg_match_all($pattern, $this->_string, $matches);
119 if ($result >= 1) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DDiagnosticErrorListener.php155 $result = new BitSet();
157 $result->add($config->alt);
160 return $result;
/plugin/combo/vendor/symfony/yaml/
H A DInline.php81 $result = self::parseSequence($value, $flags, $i, $references);
85 $result = self::parseMapping($value, $flags, $i, $references);
89 $result = self::parseScalar($value, $flags, null, $i, true, $references);
98 return new TaggedValue($tag, $result);
101 return $result;
174 // Preserve float data type since storing a whole number will result in integer value.
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntervalSet.php74 $result = new self();
76 $result->addSet($this);
77 $result->addSet($other);
79 return $result;
98 $result = $left;
101 while ($resultI < \count($result->intervals) && $rightI < \count($right->intervals)) {
102 $resultInterval = $result->intervals[$resultI];
132 $result->intervals[$resultI] = $beforeCurrent;
133 $result->intervals[$resultI + 1] = $afterCurrent;
141 $result
[all...]
H A DParser.php398 $result = self::$bypassAltsAtnCache[$serializedAtn] ?? null;
400 if ($result === null) {
403 $result = (new ATNDeserializer($deserializationOptions))->deserialize($serializedAtn);
404 self::$bypassAltsAtnCache[$serializedAtn] = $result;
407 return $result;
H A DRecognizer.php60 $result = self::$tokenTypeMapCache[$key] ?? null;
62 if ($result === null) {
63 $result = [];
69 $result[$literalName] = $i;
75 $result[$symbolicName] = $i;
79 $result['EOF'] = Token::EOF;
81 self::$tokenTypeMapCache[$key] = $result;
84 return $result;
96 $result = self::$ruleIndexMapCache[static::class] ?? null;
98 if ($result
[all...]
/plugin/combo/ComboStrap/Web/
H A DSanitizer.php20 $result = preg_match_all("/$pattern/im", $content, $matches);
21 if ($result) {
30 $result = preg_match_all("/$pattern/im", $content, $matches);
31 if ($result) {
36 $result = preg_match_all("/$pattern/im", $content, $matches);
37 if ($result) {
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js40 d.console.addLine().attribute.addClass("Error").update("<strong>Error: </strong>"+message,true);}},eval:function(_cmd){var result;with(firebug){if(_cmd.length==0) variable
41 return;el.left.console.input.environment.getElement().value="";d.console.historyIndex=d.console.history.push(_cmd);try{if(_cmd==='console.firebug'){d.console.addLine().attribute.addClass("Arrow").update(firebug.version);}else{result=eval.call(window,_cmd);d.console.print(_cmd,result);}}catch(e){d.console.addLine().attribute.addClass("Arrow").update(">>> "+_cmd);d.console.printException(e);}
49 parentElement.environment.addStyle({"display":"block"});}}},highlight:function(_value,_inObject,_inArray,_link){with(firebug){var isArray=false,isHash,isElement=false,vtype=typeof _value,result=[];if(vtype=="object"){if(Object.prototype.toString.call(_value)==="[object Date]"){vtype="date";}else if(Object.prototype.toString.call(_value)==="[object String]"){vtype="string";}else if(Object.prototype.toString.call(_value)==="[object Boolean]"){vtype="boolean";}else if(Object.prototype.toString.call(_value)==="[object RegExp]"){vtype="regexp";}} variable
50 try{isArray=lib.util.IsArray(_value);isHash=lib.util.IsHash(_value);isElement=_value!=undefined&&Boolean(_value.nodeName)&&Boolean(_value.nodeType);if(_value==null||vtype=="number"||vtype=="string"||vtype=="boolean"||(vtype=="function"&&_value.nodeName!="OBJECT")||vtype=="regexp"||vtype=="date"){if(_value==null){if(_value===undefined){result.push("<span class='Null'>undefined</span>");}else{result.push("<span class='Null'>null</span>");}}else if(vtype=="regexp"){result.push("<span class='Maroon'>"+_value+"</span>");}else if(vtype=="date"){result.push("<span class='DarkBlue'>'"+_value+"'</span>");}else if(vtype=="boolean"||vtype=="number"){result.push("<span class='DarkBlue'>"+_value+"</span>");}else if(vtype=="function"){result
[all...]
H A Dfirebug-lite-1.2.js936 var result; variable
948 result = eval.call(window,_cmd);
949 d.console.print(_cmd,result);
1189 var isArray = false, isHash, isElement = false, vtype=typeof _value, result=[]; variable
1212 result.push("<span class='Null'>undefined</span>");
1214 result.push("<span class='Null'>null</span>");
1217 result.push("<span class='Maroon'>" + _value + "</span>");
1219 result.push("<span class='DarkBlue'>'" + _value + "'</span>");
1221 result.push("<span class='DarkBlue'>" + _value + "</span>");
1223 result
[all...]
/plugin/combo/action/
H A Dwebcode.php42 $result = preg_match("/" . $pattern . "/ms", $text);
43 if ($result === 0) {
/plugin/combo/vendor/salesforce/handlebars-php/
H A DCODE_OF_CONDUCT.md82 and will result in a response that is deemed necessary and appropriate to the
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/
H A DHasher.php23 $result = 1;
26 $result = (31 * $result + $elementHash) & 0xffffffff;
29 return $result;
/plugin/combo/vendor/symfony/process/
H A DProcess.php1273 static $result;
1275 if (null !== $result) {
1276 return $result;
1280 return $result = false;
1283 return $result = (bool) @proc_open('echo 1 >/dev/null', [['pty'], ['pty'], ['pty']], $pipes);
1425 $result = $this->processPipes->readAndWrite($blocking, $close);
1428 foreach ($result as $type => $data) {
/plugin/oauthgeneric/
H A Daction.php29 $result = json_decode($raw, true);
30 if (!$result) throw new OAuthException('Failed to parse data from userurl');
33 $user = DotAccess::get($result, $this->getConf('json-user'), '');
34 $name = DotAccess::get($result, $this->getConf('json-name'), '');
35 $mail = DotAccess::get($result, $this->getConf('json-mail'), '');
36 $grps = DotAccess::get($result, $grpdots[0], []);
/plugin/structodt/
H A Dhelper.php240 $result = $search->execute();
241 return $result;
263 $result = $search->execute();
264 return $result[0];
/plugin/data/
H A Daction.php179 $result = [];
201 $result[hsc($id)] = hsc($title);
205 echo json_encode($result);
/plugin/data/_test/
H A Ddb.test.php
H A Dsyntax_plugin_data_table.test.php
H A Dsyntax_plugin_data_entry.test.php
/plugin/adhoctags/
H A Dhelper.php21 $result = array();
22 $result[] = array(
33 return $result;
203 $result = array();
218 if (trim($token)!==''){array_push($result, $token);}
231 if (trim($token)!==''){array_push($result, $token);}
238 array_push($result, $token);
260 if (trim($token)!==''){array_push($result, $token);}
274 array_push($result, $token);
301 if (trim($token)!=='') {array_push($result,
[all...]

12345678910>>...80