OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1334 MUST_USE_RESULT MaybeObject* SetProperty(String* key, | 1334 MUST_USE_RESULT MaybeObject* SetProperty(String* key, |
1335 Object* value, | 1335 Object* value, |
1336 PropertyAttributes attributes); | 1336 PropertyAttributes attributes); |
1337 MUST_USE_RESULT MaybeObject* SetProperty(LookupResult* result, | 1337 MUST_USE_RESULT MaybeObject* SetProperty(LookupResult* result, |
1338 String* key, | 1338 String* key, |
1339 Object* value, | 1339 Object* value, |
1340 PropertyAttributes attributes); | 1340 PropertyAttributes attributes); |
1341 MUST_USE_RESULT MaybeObject* SetPropertyWithFailedAccessCheck( | 1341 MUST_USE_RESULT MaybeObject* SetPropertyWithFailedAccessCheck( |
1342 LookupResult* result, | 1342 LookupResult* result, |
1343 String* name, | 1343 String* name, |
1344 Object* value); | 1344 Object* value, |
| 1345 bool check_prototype); |
1345 MUST_USE_RESULT MaybeObject* SetPropertyWithCallback(Object* structure, | 1346 MUST_USE_RESULT MaybeObject* SetPropertyWithCallback(Object* structure, |
1346 String* name, | 1347 String* name, |
1347 Object* value, | 1348 Object* value, |
1348 JSObject* holder); | 1349 JSObject* holder); |
1349 MUST_USE_RESULT MaybeObject* SetPropertyWithDefinedSetter(JSFunction* setter, | 1350 MUST_USE_RESULT MaybeObject* SetPropertyWithDefinedSetter(JSFunction* setter, |
1350 Object* value); | 1351 Object* value); |
1351 MUST_USE_RESULT MaybeObject* SetPropertyWithInterceptor( | 1352 MUST_USE_RESULT MaybeObject* SetPropertyWithInterceptor( |
1352 String* name, | 1353 String* name, |
1353 Object* value, | 1354 Object* value, |
1354 PropertyAttributes attributes); | 1355 PropertyAttributes attributes); |
(...skipping 5034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6389 } else { | 6390 } else { |
6390 value &= ~(1 << bit_position); | 6391 value &= ~(1 << bit_position); |
6391 } | 6392 } |
6392 return value; | 6393 return value; |
6393 } | 6394 } |
6394 }; | 6395 }; |
6395 | 6396 |
6396 } } // namespace v8::internal | 6397 } } // namespace v8::internal |
6397 | 6398 |
6398 #endif // V8_OBJECTS_H_ | 6399 #endif // V8_OBJECTS_H_ |
OLD | NEW |