Searched refs:side_effect (Results 1 - 6 of 6) sorted by relevance

/external/v8/test/mjsunit/regress/
H A Dregress-1711.js31 var side_effect = false; variable
34 side_effect = true;
38 assertTrue(side_effect);
H A Dregress-1210.js37 function side_effect(x) { a = x; } function
41 // immediately after the call to 'side_effect' (i.e., still in the key
43 return observe(a, arguments[side_effect(a), a + 0]);
H A Dregress-1167.js65 function side_effect() { } function
69 (((side_effect.observe <= side_effect.side_effect) !== false),
/external/v8/test/mjsunit/compiler/
H A Dregress-3218915.js34 function side_effect() { try {} finally {} return "wrong"; } function
42 function test(x) { return observe(this, ((0, side_effect()), x + 1)); }
50 // object. If the value of the call to side_effect() is lingering after the
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A Dmock.py99 def __init__(self, spec=None, side_effect=None, return_value=DEFAULT,
109 self.side_effect = side_effect
154 if self.side_effect is not None:
155 if (isinstance(self.side_effect, Exception) or
156 isinstance(self.side_effect, (type, ClassType)) and
157 issubclass(self.side_effect, Exception)):
158 raise self.side_effect
160 ret_val = self.side_effect(*args, **kwargs)
/external/clang/test/SemaCXX/
H A Dwarn-unused-private-field.cpp86 int side_effect() { function
94 initialized_with_side_effect_(side_effect()) {
109 int in_class_initializer_with_side_effect_ = side_effect();

Completed in 103 milliseconds