Lines Matching refs:currentComplexType

1016 	var $currentComplexType = null;  variable in XMLSchema
1209 $this->complexTypes[$this->currentComplexType]['compositor'] = $name;
1250 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1258 $this->complexTypes[$this->currentComplexType]['multidimensional'] = true;
1264 $this->complexTypes[$this->currentComplexType]['arrayType'] = $v;
1270 array_push($this->complexTypeStack, $this->currentComplexType);
1274 $this->currentComplexType = $attrs['name'];
1275 $this->complexTypes[$this->currentComplexType] = $attrs;
1276 $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType';
1286 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1288 $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct';
1292 $this->currentComplexType = $this->currentElement . '_ContainedType';
1294 $this->complexTypes[$this->currentComplexType] = $attrs;
1295 $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType';
1305 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1307 $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct';
1334 …if ($this->currentComplexType && $this->complexTypes[$this->currentComplexType]['phpType'] == 'arr…
1336 $this->complexTypes[$this->currentComplexType]['arrayType'] = $attrs['type'];
1355 if(isset($ename) && $this->currentComplexType){
1356 $this->complexTypes[$this->currentComplexType]['elements'][$ename] = $attrs;
1363 } elseif ($this->currentComplexType) {
1364 $this->complexTypes[$this->currentComplexType]['enumeration'][] = $attrs['value'];
1369 if ($this->currentComplexType) {
1370 $this->complexTypes[$this->currentComplexType]['extensionBase'] = $attrs['base'];
1391 } elseif($this->currentComplexType){
1392 $this->complexTypes[$this->currentComplexType]['restrictionBase'] = $attrs['base'];
1394 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1459 …his->xdebug('done processing complexType ' . ($this->currentComplexType ? $this->currentComplexTyp…
1460 $this->currentComplexType = array_pop($this->complexTypeStack);