| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 9988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9999 | 9999 |
| 10000 template MaybeObject* Dictionary<StringDictionaryShape, String*>::Allocate( | 10000 template MaybeObject* Dictionary<StringDictionaryShape, String*>::Allocate( |
| 10001 int); | 10001 int); |
| 10002 | 10002 |
| 10003 template MaybeObject* Dictionary<SeededNumberDictionaryShape, uint32_t>::AtPut( | 10003 template MaybeObject* Dictionary<SeededNumberDictionaryShape, uint32_t>::AtPut( |
| 10004 uint32_t, Object*); | 10004 uint32_t, Object*); |
| 10005 | 10005 |
| 10006 template MaybeObject* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: | 10006 template MaybeObject* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: |
| 10007 AtPut(uint32_t, Object*); | 10007 AtPut(uint32_t, Object*); |
| 10008 | 10008 |
| 10009 template Object* Dictionary<SeededNumberDictionaryShape, uint32_t>:: |
| 10010 SlowReverseLookup(Object* value); |
| 10011 |
| 10009 template Object* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: | 10012 template Object* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: |
| 10010 SlowReverseLookup(Object* value); | 10013 SlowReverseLookup(Object* value); |
| 10011 | 10014 |
| 10012 template Object* Dictionary<StringDictionaryShape, String*>::SlowReverseLookup( | 10015 template Object* Dictionary<StringDictionaryShape, String*>::SlowReverseLookup( |
| 10013 Object*); | 10016 Object*); |
| 10014 | 10017 |
| 10015 template void Dictionary<SeededNumberDictionaryShape, uint32_t>::CopyKeysTo( | 10018 template void Dictionary<SeededNumberDictionaryShape, uint32_t>::CopyKeysTo( |
| 10016 FixedArray*, | 10019 FixedArray*, |
| 10017 PropertyAttributes, | 10020 PropertyAttributes, |
| 10018 Dictionary<SeededNumberDictionaryShape, uint32_t>::SortMode); | 10021 Dictionary<SeededNumberDictionaryShape, uint32_t>::SortMode); |
| (...skipping 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11679 if (break_point_objects()->IsUndefined()) return 0; | 11682 if (break_point_objects()->IsUndefined()) return 0; |
| 11680 // Single break point. | 11683 // Single break point. |
| 11681 if (!break_point_objects()->IsFixedArray()) return 1; | 11684 if (!break_point_objects()->IsFixedArray()) return 1; |
| 11682 // Multiple break points. | 11685 // Multiple break points. |
| 11683 return FixedArray::cast(break_point_objects())->length(); | 11686 return FixedArray::cast(break_point_objects())->length(); |
| 11684 } | 11687 } |
| 11685 #endif | 11688 #endif |
| 11686 | 11689 |
| 11687 | 11690 |
| 11688 } } // namespace v8::internal | 11691 } } // namespace v8::internal |
| OLD | NEW |