OLD | NEW |
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 inline bool IsSymbol(); | 753 inline bool IsSymbol(); |
754 #ifdef DEBUG | 754 #ifdef DEBUG |
755 // See objects-inl.h for more details | 755 // See objects-inl.h for more details |
756 inline bool IsSeqString(); | 756 inline bool IsSeqString(); |
757 inline bool IsSlicedString(); | 757 inline bool IsSlicedString(); |
758 inline bool IsExternalString(); | 758 inline bool IsExternalString(); |
759 inline bool IsExternalTwoByteString(); | 759 inline bool IsExternalTwoByteString(); |
760 inline bool IsExternalAsciiString(); | 760 inline bool IsExternalAsciiString(); |
761 inline bool IsSeqTwoByteString(); | 761 inline bool IsSeqTwoByteString(); |
762 inline bool IsSeqAsciiString(); | 762 inline bool IsSeqAsciiString(); |
763 #endif // DEBUG | 763 #endif // DEBUG |
764 inline bool IsConsString(); | 764 inline bool IsConsString(); |
765 | 765 |
766 inline bool IsNumber(); | 766 inline bool IsNumber(); |
767 inline bool IsByteArray(); | 767 inline bool IsByteArray(); |
768 inline bool IsPixelArray(); | 768 inline bool IsPixelArray(); |
769 inline bool IsFailure(); | 769 inline bool IsFailure(); |
770 inline bool IsRetryAfterGC(); | 770 inline bool IsRetryAfterGC(); |
771 inline bool IsOutOfMemoryFailure(); | 771 inline bool IsOutOfMemoryFailure(); |
772 inline bool IsException(); | 772 inline bool IsException(); |
773 inline bool IsJSObject(); | 773 inline bool IsJSObject(); |
(...skipping 4073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4847 } else { | 4847 } else { |
4848 value &= ~(1 << bit_position); | 4848 value &= ~(1 << bit_position); |
4849 } | 4849 } |
4850 return value; | 4850 return value; |
4851 } | 4851 } |
4852 }; | 4852 }; |
4853 | 4853 |
4854 } } // namespace v8::internal | 4854 } } // namespace v8::internal |
4855 | 4855 |
4856 #endif // V8_OBJECTS_H_ | 4856 #endif // V8_OBJECTS_H_ |
OLD | NEW |