Lines Matching refs:x
8 $x = new stdClass;
9 $x->x = $x;
11 $x += 5;
12 } catch (TypeError $e) { unset($x); }
19 $x = new stdClass;
20 $x->x = $x;
22 $x -= 5;
23 } catch (TypeError $e) { unset($x); }
30 $x = new stdClass;
31 $x->x = $x;
33 $x *= 5;
34 } catch (TypeError $e) { unset($x); }
41 $x = new stdClass;
42 $x->x = $x;
44 $x /= 5;
45 } catch (TypeError $e) { unset($x); }
52 $x = new stdClass;
53 $x->x = $x;
55 $x %= 5;
56 } catch (TypeError $e) { unset($x); }
63 $x = new stdClass;
64 $x->x = $x;
66 $x <<= 5;
67 } catch (TypeError $e) { unset($x); }
74 $x = new stdClass;
75 $x->x = $x;
77 $x >>= 5;
78 } catch (TypeError $e) { unset($x); }
85 $x = new stdClass;
86 $x->x = $x;
88 $x |= 5;
89 } catch (TypeError $e) { unset($x); }
96 $x = new stdClass;
97 $x->x = $x;
99 $x &= 5;
100 } catch (TypeError $e) { unset($x); }
107 $x = new stdClass;
108 $x->x = $x;
110 $x ^= 5;
111 } catch (TypeError $e) { unset($x); }
118 $x = new stdClass;
119 $x->x = $x;
121 $x **= 5;
122 } catch (TypeError $e) { unset($x); }
129 public $x;
135 $x = new Y;
136 $x->x = $x;
137 @$x .= "x";