Lines Matching refs:name

990 	function __get($name) {  argument
991 if (isset($this->attr[$name])) {
992 return $this->convert_text($this->attr[$name]);
994 switch ($name) {
1004 return array_key_exists($name, $this->attr);
1008 function __set($name, $value) { argument
1014 switch ($name) {
1024 if (!isset($this->attr[$name])) {
1029 $this->attr[$name] = $value;
1032 function __isset($name) { argument
1033 switch ($name) {
1042 return (array_key_exists($name, $this->attr)) ? true : isset($this->attr[$name]);
1045 function __unset($name) { argument
1046 if (isset($this->attr[$name])) {
1047 unset($this->attr[$name]);
1301 function getAttribute($name) { argument
1302 return $this->__get($name);
1305 function setAttribute($name, $value) { argument
1306 $this->__set($name, $value);
1309 function hasAttribute($name) { argument
1310 return $this->__isset($name);
1313 function removeAttribute($name) { argument
1314 $this->__set($name, null);
1361 function getElementByTagName($name) { argument
1362 return $this->find($name, 0);
1365 function getElementsByTagName($name, $idx = null) { argument
1366 return $this->find($name, $idx);
1999 $name = $this->copy_until($this->token_equal);
2001 if ($name === '' && $this->char !== null && $space[0] === '') {
2017 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $space[0] . $name;
2041 if ($name !== '/' && $name !== '') { // this is a attribute name
2045 $name = $this->restore_noise($name); // might be a noisy name
2048 $name = strtolower($name);
2053 $this->parse_attr($node, $name, $space); // get attribute value
2057 $node->attr[$name] = true;
2102 protected function parse_attr($node, $name, &$space) { argument
2103 $is_duplicate = isset($node->attr[$name]);
2135 if ($name === 'class') {
2141 $node->attr[$name] = $value;
2305 function __get($name) { argument
2306 switch ($name) {
2332 function createElement($name, $value = null) { argument
2333 return @str_get_html("<$name>$value</$name>")->firstChild();
2348 function getElementByTagName($name) { argument
2349 return $this->find($name, 0);
2352 function getElementsByTagName($name, $idx = -1) { argument
2353 return $this->find($name, $idx);