Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/objects.h

Issue 235052: Fix a lint error. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698