| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 inline bool IsByteArray(); | 609 inline bool IsByteArray(); |
| 610 inline bool IsFailure(); | 610 inline bool IsFailure(); |
| 611 inline bool IsRetryAfterGC(); | 611 inline bool IsRetryAfterGC(); |
| 612 inline bool IsOutOfMemoryFailure(); | 612 inline bool IsOutOfMemoryFailure(); |
| 613 inline bool IsException(); | 613 inline bool IsException(); |
| 614 inline bool IsJSObject(); | 614 inline bool IsJSObject(); |
| 615 inline bool IsMap(); | 615 inline bool IsMap(); |
| 616 inline bool IsFixedArray(); | 616 inline bool IsFixedArray(); |
| 617 inline bool IsDescriptorArray(); | 617 inline bool IsDescriptorArray(); |
| 618 inline bool IsContext(); | 618 inline bool IsContext(); |
| 619 inline bool IsCatchContext(); |
| 619 inline bool IsGlobalContext(); | 620 inline bool IsGlobalContext(); |
| 620 inline bool IsJSFunction(); | 621 inline bool IsJSFunction(); |
| 621 inline bool IsCode(); | 622 inline bool IsCode(); |
| 622 inline bool IsOddball(); | 623 inline bool IsOddball(); |
| 623 inline bool IsSharedFunctionInfo(); | 624 inline bool IsSharedFunctionInfo(); |
| 624 inline bool IsJSValue(); | 625 inline bool IsJSValue(); |
| 625 inline bool IsStringWrapper(); | 626 inline bool IsStringWrapper(); |
| 626 inline bool IsProxy(); | 627 inline bool IsProxy(); |
| 627 inline bool IsBoolean(); | 628 inline bool IsBoolean(); |
| 628 inline bool IsJSArray(); | 629 inline bool IsJSArray(); |
| (...skipping 3576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4205 } else { | 4206 } else { |
| 4206 value &= ~(1 << bit_position); | 4207 value &= ~(1 << bit_position); |
| 4207 } | 4208 } |
| 4208 return value; | 4209 return value; |
| 4209 } | 4210 } |
| 4210 }; | 4211 }; |
| 4211 | 4212 |
| 4212 } } // namespace v8::internal | 4213 } } // namespace v8::internal |
| 4213 | 4214 |
| 4214 #endif // V8_OBJECTS_H_ | 4215 #endif // V8_OBJECTS_H_ |
| OLD | NEW |