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

Side by Side Diff: src/objects.h

Issue 7830: Fix style issues. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 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 | « src/macro-assembler-ia32.cc ('k') | src/objects.cc » ('j') | 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-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 30 matching lines...) Expand all
41 // - Smi (immediate small integer) 41 // - Smi (immediate small integer)
42 // - Failure (immediate for marking failed operation) 42 // - Failure (immediate for marking failed operation)
43 // - HeapObject (superclass for everything allocated in the heap) 43 // - HeapObject (superclass for everything allocated in the heap)
44 // - JSObject 44 // - JSObject
45 // - JSArray 45 // - JSArray
46 // - JSRegExp 46 // - JSRegExp
47 // - JSFunction 47 // - JSFunction
48 // - GlobalObject 48 // - GlobalObject
49 // - JSGlobalObject 49 // - JSGlobalObject
50 // - JSBuiltinsObject 50 // - JSBuiltinsObject
51 // _ JSGlobalProxy 51 // _ JSGlobalProxy
52 // - JSValue 52 // - JSValue
53 // - Script 53 // - Script
54 // - Array 54 // - Array
55 // - ByteArray 55 // - ByteArray
56 // - FixedArray 56 // - FixedArray
57 // - DescriptorArray 57 // - DescriptorArray
58 // - HashTable 58 // - HashTable
59 // - Dictionary 59 // - Dictionary
60 // - SymbolTable 60 // - SymbolTable
61 // - Context 61 // - Context
(...skipping 3994 matching lines...) Expand 10 before | Expand all | Expand 10 after
4056 } else { 4056 } else {
4057 value &= ~(1 << bit_position); 4057 value &= ~(1 << bit_position);
4058 } 4058 }
4059 return value; 4059 return value;
4060 } 4060 }
4061 }; 4061 };
4062 4062
4063 } } // namespace v8::internal 4063 } } // namespace v8::internal
4064 4064
4065 #endif // V8_OBJECTS_H_ 4065 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/macro-assembler-ia32.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698