| 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 V(EXTERNAL_STRING_TYPE, \ | 482 V(EXTERNAL_STRING_TYPE, \ |
| 483 ExternalTwoByteString::kSize, \ | 483 ExternalTwoByteString::kSize, \ |
| 484 external_string, \ | 484 external_string, \ |
| 485 ExternalString) \ | 485 ExternalString) \ |
| 486 V(EXTERNAL_ASCII_STRING_TYPE, \ | 486 V(EXTERNAL_ASCII_STRING_TYPE, \ |
| 487 ExternalAsciiString::kSize, \ | 487 ExternalAsciiString::kSize, \ |
| 488 external_ascii_string, \ | 488 external_ascii_string, \ |
| 489 ExternalAsciiString) \ | 489 ExternalAsciiString) \ |
| 490 V(EXTERNAL_STRING_WITH_ONE_BYTE_DATA_TYPE, \ | 490 V(EXTERNAL_STRING_WITH_ONE_BYTE_DATA_TYPE, \ |
| 491 ExternalTwoByteString::kSize, \ | 491 ExternalTwoByteString::kSize, \ |
| 492 external_string_with_one_bytei_data, \ | 492 external_string_with_one_byte_data, \ |
| 493 ExternalStringWithOneByteData) \ | 493 ExternalStringWithOneByteData) \ |
| 494 V(SHORT_EXTERNAL_STRING_TYPE, \ | 494 V(SHORT_EXTERNAL_STRING_TYPE, \ |
| 495 ExternalTwoByteString::kShortSize, \ | 495 ExternalTwoByteString::kShortSize, \ |
| 496 short_external_string, \ | 496 short_external_string, \ |
| 497 ShortExternalString) \ | 497 ShortExternalString) \ |
| 498 V(SHORT_EXTERNAL_ASCII_STRING_TYPE, \ | 498 V(SHORT_EXTERNAL_ASCII_STRING_TYPE, \ |
| 499 ExternalAsciiString::kShortSize, \ | 499 ExternalAsciiString::kShortSize, \ |
| 500 short_external_ascii_string, \ | 500 short_external_ascii_string, \ |
| 501 ShortExternalAsciiString) \ | 501 ShortExternalAsciiString) \ |
| 502 V(SHORT_EXTERNAL_STRING_WITH_ONE_BYTE_DATA_TYPE, \ | 502 V(SHORT_EXTERNAL_STRING_WITH_ONE_BYTE_DATA_TYPE, \ |
| (...skipping 10264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10767 } else { | 10767 } else { |
| 10768 value &= ~(1 << bit_position); | 10768 value &= ~(1 << bit_position); |
| 10769 } | 10769 } |
| 10770 return value; | 10770 return value; |
| 10771 } | 10771 } |
| 10772 }; | 10772 }; |
| 10773 | 10773 |
| 10774 } } // namespace v8::internal | 10774 } } // namespace v8::internal |
| 10775 | 10775 |
| 10776 #endif // V8_OBJECTS_H_ | 10776 #endif // V8_OBJECTS_H_ |
| OLD | NEW |