HomeSort by relevance Sort by last modified time
    Searched defs:side_effect (Results 1 - 12 of 12) sorted by null

  /external/v8/test/mjsunit/compiler/
regress-3218915.js 34 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/v8/test/mjsunit/regress/
regress-1210.js 37 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]);
regress-1711.js 31 var side_effect = false; variable
34 side_effect = true;
38 assertTrue(side_effect);
regress-1167.js 65 function side_effect() { } function
69 (((side_effect.observe <= side_effect.side_effect) !== false),
  /external/compiler-rt/test/asan/TestCases/
speculative_load.cc 40 inline void side_effect(const void *arg) { function
46 side_effect(&s); // optimizer is too smart otherwise
48 side_effect(ptr); // force use ptr
  /external/chromium-trace/catapult/devil/devil/utils/
mock_calls.py 29 def side_effect(*args, **kwargs): function in function:TestCase._AssertCalls.__init__.do_check
45 return side_effect
52 self._patched = [test_case.patch_call(call, side_effect=do_check(call))
  /external/autotest/site_utils/
run_suite_unittest.py 82 def side_effect(*args, **kwargs): function in function:ResultCollectorUnittest._mock_tko_get_detailed_test_views
87 self.tko.run = mock.MagicMock(side_effect=side_effect)
110 def side_effect(*args, **kwargs): function in function:ResultCollectorUnittest._mock_afe_get_jobs
116 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/s3/
test_key.py 232 side_effect=CustomException('File blew up!')) variable in class:TestFileError.test_file_error.CustomException
  /external/clang/test/SemaCXX/
warn-unused-private-field.cpp 86 int side_effect() { function
94 initialized_with_side_effect_(side_effect()) {
109 int in_class_initializer_with_side_effect_ = side_effect();
  /external/chromium-trace/catapult/telemetry/third_party/mock/
mock.py 324 funcopy.side_effect = mock.side_effect
385 'return_value', '_mock_return_value', 'side_effect',
599 return sig.side_effect
607 sig.side_effect = value
609 side_effect = property(__get_side_effect, __set_side_effect) variable in class:NonCallableMock
638 >>> attrs = {'method.return_value': 3, 'other.side_effect': KeyError}
933 def __init__(self, spec=None, side_effect=None, return_value=DEFAULT,
943 self.side_effect = side_effect
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb2/
test_table.py 865 self.result_function = mock.MagicMock(side_effect=fake_results)
1954 def side_effect(*args, **kwargs): function in function:TableTestCase.test_delete_item_conditionally
    [all...]
  /external/chromium-trace/catapult/third_party/mock/
mock.py 324 funcopy.side_effect = mock.side_effect
385 'return_value', '_mock_return_value', 'side_effect',
599 return sig.side_effect
607 sig.side_effect = value
609 side_effect = property(__get_side_effect, __set_side_effect) variable in class:NonCallableMock
638 >>> attrs = {'method.return_value': 3, 'other.side_effect': KeyError}
933 def __init__(self, spec=None, side_effect=None, return_value=DEFAULT,
943 self.side_effect = side_effect
    [all...]

Completed in 521 milliseconds