Home
last modified time | relevance | path

Searched refs:should_throw (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/libcxx/containers/sequences/vector/
Dasan_throw.pass.cpp42 ThrowOnCopy() : should_throw(false) {} in ThrowOnCopy()
43 explicit ThrowOnCopy(bool should_throw) : should_throw(should_throw) {} in ThrowOnCopy() argument
46 : should_throw(other.should_throw) in ThrowOnCopy()
48 if (should_throw) { in ThrowOnCopy()
53 bool should_throw; member in ThrowOnCopy
181 v[6].should_throw = true; in test_insert_n2()
/external/v8/src/js/
Dv8natives.js513 function DefineProxyProperty(obj, p, attributes, should_throw) { argument
520 if (should_throw) {
531 function DefineObjectProperty(obj, p, desc, should_throw) { argument
537 if (should_throw) {
566 if (should_throw) {
576 if (should_throw) {
587 if (should_throw) {
598 if (should_throw) {
609 if (should_throw) {
616 if (should_throw) {
[all …]
/external/v8/src/
Dobjects.cc1198 ShouldThrow should_throw) { in SetPropertyWithAccessor() argument
1239 receiver, Handle<JSReceiver>::cast(setter), value, should_throw); in SetPropertyWithAccessor()
1242 RETURN_FAILURE(isolate, should_throw, in SetPropertyWithAccessor()
1274 ShouldThrow should_throw) { in SetPropertyWithDefinedSetter() argument
1382 LookupIterator* it, Handle<Object> value, ShouldThrow should_throw) { in SetPropertyWithFailedAccessCheck() argument
1385 return SetPropertyWithAccessor(it, value, should_throw); in SetPropertyWithFailedAccessCheck()
4065 ShouldThrow should_throw = in SetPropertyInternal() local
4085 should_throw); in SetPropertyInternal()
4101 return WriteToReadOnlyProperty(it, value, should_throw); in SetPropertyInternal()
4108 return WriteToReadOnlyProperty(it, value, should_throw); in SetPropertyInternal()
[all …]
Dobjects.h1027 #define RETURN_FAILURE(isolate, should_throw, call) \ argument
1029 if ((should_throw) == DONT_THROW) { \
1269 Handle<Object> value, ShouldThrow should_throw);
1271 LookupIterator* it, Handle<Object> value, ShouldThrow should_throw);
1274 Handle<Object> value, ShouldThrow should_throw);
1277 ShouldThrow should_throw);
1282 ShouldThrow should_throw, StoreFromKeyed store_mode);
1299 LookupIterator* it, Handle<Object> value, ShouldThrow should_throw);
1306 ShouldThrow should_throw);
1862 PropertyDescriptor* desc, ShouldThrow should_throw);
[all …]
/external/v8/test/mjsunit/
Dstrict-mode.js374 function testAssignToUndefined(test, should_throw) { argument
378 assertTrue(should_throw, "strict mode");
382 assertFalse(should_throw, "strict mode");