| /template/bootstrap3/tpl/ |
| D | functions.php | 10 function get_property_reflection($object, $property) argument 12 $reflection = new \ReflectionProperty(get_class($object), $property); 14 return $reflection->getValue($object); 17 function set_property_reflection($object, $property, $new_value) argument 19 $reflection = new \ReflectionProperty(get_class($object), $property); 21 return $reflection->setValue($object, $new_value); 24 function get_property($object, $property) argument 26 $array = (array) $object; 36 function set_property($object, $property, $new_value) argument 38 array_walk($object, function (&$value, $key) use ($new_value, $property) {
|
| /template/strap/vendor/salesforce/handlebars-php/tests/Handlebars/ |
| H A D | HandlebarsTest.php | 239 $object = new stdClass; 240 $object->{'@first'} = 'apple'; 241 $object->{'@last'} = 'banana'; 242 $object->{'@index'} = 'carrot'; 243 $object->{'@unknown'} = 'zucchini'; 244 $data = ['data' => [$object]]; 268 $object = new stdClass(); 269 $object->$keyPropertyName = $itemValue; 270 $object->$firstPropertyName = $itemValue; 271 $object->$lastPropertyName = $itemValue; [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | CoreExtension.php | 1322 * @param object|null $object The object to get the constant from 1326 function twig_constant($constant, $object = null) argument 1328 if (null !== $object) { 1329 $constant = \get_class($object).'::'.$constant; 1339 * @param object|null $object The object to get the constant from 1343 function twig_constant_is_defined($constant, $object = null) argument 1345 if (null !== $object) { 1346 $constant = \get_class($object).'::'.$constant; 1386 * @param mixed $object The object or array from where to get the item 1400 function twig_get_attribute(Environment $env, Source $source, $object, $item, array $arguments = []… argument [all …]
|
| /template/starterbootstrap/js/ |
| D | sorttable.js | 459 Function.prototype.forEach = function(object, block, context) { argument 460 for (var key in object) { 462 block.call(context, object[key], key, object); 475 var forEach = function(object, block, context) { 476 if (object) { 478 if (object instanceof Function) { 481 } else if (object.forEach instanceof Function) { 483 object.forEach(block, context); 485 } else if (typeof object == "string") { 488 } else if (typeof object.length == "number") { [all …]
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/ |
| H A D | Pair.php | 19 public function __construct(?object $a, ?object $b) 25 public function equals(object $other) : bool
|
| /template/strap/resources/firebug/ |
| H A D | firebug-lite-1.4.js | 198 this.bind=function(){var args=cloneArray(arguments),fn=args.shift(),object=args.shift(); 199 return function(){return fn.apply(object,arrayInsert(cloneArray(args),0,arguments)) 202 this.bindFixed=function(){var args=cloneArray(arguments),fn=args.shift(),object=args.shift(); 203 return function(){return fn.apply(object,args) 962 this.addEvent=function(object,name,handler,useCapture){if(object.addEventListener){object.addEventL… argument 963 }else{object.attachEvent("on"+name,handler) 965 this.removeEvent=function(object,name,handler,useCapture){try{if(object.removeEventListener){object… argument 966 }else{object.detachEvent("on"+name,handler) 967 }}catch(e){if(FBTrace.DBG_ERRORS){FBTrace.sysout("FBL.removeEvent error: ",object,name) 1218 this.objectToString=function(object){try{return object+"" argument [all …]
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | RemoteStatus.php | 37 $object = new static($responseBody['ready'], $responseBody['message'], $responseBody); 39 return $object;
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/ |
| H A D | Overload.php | 28 protected function getMethodByClass(Ast\Node $object, string $prefix = 'visit'): ?callable { argument 29 $method = $prefix.substr(str_replace('\\', '', get_class($object)), 9);
|
| /template/twigstarter/vendor/symfony/polyfill-php72/ |
| D | bootstrap.php | 47 function spl_object_id($object) { return p\Php72::spl_object_id($object); } argument
|
| D | Php72.php | 89 public static function spl_object_id($object) argument 94 if (null === $hash = spl_object_hash($object)) {
|
| /template/strap/ComboStrap/ |
| H A D | ExecutionContext.php | 515 public function setRuntimeObject($objectIdentifier, &$object): ExecutionContext argument 517 $this->executionScopedVariables[$objectIdentifier] = &$object; 1102 $object = &$this->executionScopedVariables[$globalObjectIdentifier]; 1108 if (is_object($object)) { 1109 if (method_exists($object, 'close')) { 1110 $object->close(); 1120 $object = null;
|
| /template/a_new_day/js/ |
| D | prototype.js | 38 inspect: function(object) { argument 40 if (object === undefined) return 'undefined'; 41 if (object === null) return 'null'; 42 return object.inspect ? object.inspect() : object.toString(); 49 keys: function(object) { argument 51 for (var property in object) 56 values: function(object) { argument 58 for (var property in object) 59 values.push(object[property]); 63 clone: function(object) { argument [all …]
|
| /template/battlehorse/js/ |
| D | prototype.js | 38 inspect: function(object) { argument 40 if (object === undefined) return 'undefined'; 41 if (object === null) return 'null'; 42 return object.inspect ? object.inspect() : object.toString(); 49 keys: function(object) { argument 51 for (var property in object) 56 values: function(object) { argument 58 for (var property in object) 59 values.push(object[property]); 63 clone: function(object) { argument [all …]
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Comparison/ |
| H A D | Equatable.php | 9 public function equals(object $other) : bool;
|
| H A D | DefaultEquivalence.php | 19 public function equals(object $other) : bool
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/ |
| H A D | AndOperator.php | 116 public function equals(object $other) : bool 147 private static function minPredicate(array $predicates) : object
|
| /template/breeze/bower_components/gumby/sass/functions/ |
| D | _height-calc.scss | 2 // Calculate the height of an object based on its scale
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/ |
| H A D | ATNConfigSet.php | 119 public function equals(object $other) : bool 282 public function equals(object $other) : bool 323 public function contains(object $item) : bool
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/ |
| H A D | EmptyPredictionContext.php | 29 public function equals(object $other) : bool
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/ |
| H A D | ConsoleErrorListener.php | 14 ?object $offendingSymbol,
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/ |
| H A D | WildcardTransition.php | 19 public function equals(object $other) : bool
|
| H A D | NotSetTransition.php | 20 public function equals(object $other) : bool
|
| /template/strap/vendor/symfony/yaml/ |
| H A D | CHANGELOG.md | 37 * Deprecated using the `!php/object` and `!php/const` tags without a value. 70 * support for the `!!php/object` tag has been dropped, use the `!php/object` 99 * Deprecated the `!php/object:` tag which will be replaced by the 100 `!php/object` tag (without the colon) in 4.0.
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/ |
| H A D | LexerPopModeAction.php | 65 public function equals(object $other) : bool
|
| H A D | LexerMoreAction.php | 65 public function equals(object $other) : bool
|