| OLD | NEW | 
|---|
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 592   inline bool IsExternalAsciiString(); | 592   inline bool IsExternalAsciiString(); | 
| 593   inline bool IsExternalTwoByteString(); | 593   inline bool IsExternalTwoByteString(); | 
| 594   inline bool IsShortString(); | 594   inline bool IsShortString(); | 
| 595   inline bool IsMediumString(); | 595   inline bool IsMediumString(); | 
| 596   inline bool IsLongString(); | 596   inline bool IsLongString(); | 
| 597   inline bool IsSymbol(); | 597   inline bool IsSymbol(); | 
| 598   inline bool IsNumber(); | 598   inline bool IsNumber(); | 
| 599   inline bool IsByteArray(); | 599   inline bool IsByteArray(); | 
| 600   inline bool IsFailure(); | 600   inline bool IsFailure(); | 
| 601   inline bool IsRetryAfterGC(); | 601   inline bool IsRetryAfterGC(); | 
|  | 602   inline bool IsOutOfMemoryFailure(); | 
| 602   inline bool IsException(); | 603   inline bool IsException(); | 
| 603   inline bool IsJSObject(); | 604   inline bool IsJSObject(); | 
| 604   inline bool IsMap(); | 605   inline bool IsMap(); | 
| 605   inline bool IsFixedArray(); | 606   inline bool IsFixedArray(); | 
| 606   inline bool IsDescriptorArray(); | 607   inline bool IsDescriptorArray(); | 
| 607   inline bool IsContext(); | 608   inline bool IsContext(); | 
| 608   inline bool IsGlobalContext(); | 609   inline bool IsGlobalContext(); | 
| 609   inline bool IsJSFunction(); | 610   inline bool IsJSFunction(); | 
| 610   inline bool IsCode(); | 611   inline bool IsCode(); | 
| 611   inline bool IsOddball(); | 612   inline bool IsOddball(); | 
| (...skipping 3360 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 3972     } else { | 3973     } else { | 
| 3973       value &= ~(1 << bit_position); | 3974       value &= ~(1 << bit_position); | 
| 3974     } | 3975     } | 
| 3975     return value; | 3976     return value; | 
| 3976   } | 3977   } | 
| 3977 }; | 3978 }; | 
| 3978 | 3979 | 
| 3979 } }  // namespace v8::internal | 3980 } }  // namespace v8::internal | 
| 3980 | 3981 | 
| 3981 #endif  // V8_OBJECTS_H_ | 3982 #endif  // V8_OBJECTS_H_ | 
| OLD | NEW | 
|---|