OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 /* Note: the order of these external array */ \ | 359 /* Note: the order of these external array */ \ |
360 /* types is relied upon in */ \ | 360 /* types is relied upon in */ \ |
361 /* Object::IsExternalArray(). */ \ | 361 /* Object::IsExternalArray(). */ \ |
362 V(EXTERNAL_BYTE_ARRAY_TYPE) \ | 362 V(EXTERNAL_BYTE_ARRAY_TYPE) \ |
363 V(EXTERNAL_UNSIGNED_BYTE_ARRAY_TYPE) \ | 363 V(EXTERNAL_UNSIGNED_BYTE_ARRAY_TYPE) \ |
364 V(EXTERNAL_SHORT_ARRAY_TYPE) \ | 364 V(EXTERNAL_SHORT_ARRAY_TYPE) \ |
365 V(EXTERNAL_UNSIGNED_SHORT_ARRAY_TYPE) \ | 365 V(EXTERNAL_UNSIGNED_SHORT_ARRAY_TYPE) \ |
366 V(EXTERNAL_INT_ARRAY_TYPE) \ | 366 V(EXTERNAL_INT_ARRAY_TYPE) \ |
367 V(EXTERNAL_UNSIGNED_INT_ARRAY_TYPE) \ | 367 V(EXTERNAL_UNSIGNED_INT_ARRAY_TYPE) \ |
368 V(EXTERNAL_FLOAT_ARRAY_TYPE) \ | 368 V(EXTERNAL_FLOAT_ARRAY_TYPE) \ |
| 369 V(EXTERNAL_DOUBLE_ARRAY_TYPE) \ |
369 V(EXTERNAL_PIXEL_ARRAY_TYPE) \ | 370 V(EXTERNAL_PIXEL_ARRAY_TYPE) \ |
370 V(FILLER_TYPE) \ | 371 V(FILLER_TYPE) \ |
371 \ | 372 \ |
372 V(DECLARED_ACCESSOR_DESCRIPTOR_TYPE) \ | 373 V(DECLARED_ACCESSOR_DESCRIPTOR_TYPE) \ |
373 V(DECLARED_ACCESSOR_INFO_TYPE) \ | 374 V(DECLARED_ACCESSOR_INFO_TYPE) \ |
374 V(EXECUTABLE_ACCESSOR_INFO_TYPE) \ | 375 V(EXECUTABLE_ACCESSOR_INFO_TYPE) \ |
375 V(ACCESSOR_PAIR_TYPE) \ | 376 V(ACCESSOR_PAIR_TYPE) \ |
376 V(ACCESS_CHECK_INFO_TYPE) \ | 377 V(ACCESS_CHECK_INFO_TYPE) \ |
377 V(INTERCEPTOR_INFO_TYPE) \ | 378 V(INTERCEPTOR_INFO_TYPE) \ |
378 V(CALL_HANDLER_INFO_TYPE) \ | 379 V(CALL_HANDLER_INFO_TYPE) \ |
(...skipping 9050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9429 } else { | 9430 } else { |
9430 value &= ~(1 << bit_position); | 9431 value &= ~(1 << bit_position); |
9431 } | 9432 } |
9432 return value; | 9433 return value; |
9433 } | 9434 } |
9434 }; | 9435 }; |
9435 | 9436 |
9436 } } // namespace v8::internal | 9437 } } // namespace v8::internal |
9437 | 9438 |
9438 #endif // V8_OBJECTS_H_ | 9439 #endif // V8_OBJECTS_H_ |
OLD | NEW |