| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1869 inline Object* GetInternalField(int index); | 1869 inline Object* GetInternalField(int index); |
| 1870 inline void SetInternalField(int index, Object* value); | 1870 inline void SetInternalField(int index, Object* value); |
| 1871 inline void SetInternalField(int index, Smi* value); | 1871 inline void SetInternalField(int index, Smi* value); |
| 1872 | 1872 |
| 1873 // The following lookup functions skip interceptors. | 1873 // The following lookup functions skip interceptors. |
| 1874 void LocalLookupRealNamedProperty(String* name, LookupResult* result); | 1874 void LocalLookupRealNamedProperty(String* name, LookupResult* result); |
| 1875 void LookupRealNamedProperty(String* name, LookupResult* result); | 1875 void LookupRealNamedProperty(String* name, LookupResult* result); |
| 1876 void LookupRealNamedPropertyInPrototypes(String* name, LookupResult* result); | 1876 void LookupRealNamedPropertyInPrototypes(String* name, LookupResult* result); |
| 1877 MUST_USE_RESULT MaybeObject* SetElementWithCallbackSetterInPrototypes( | 1877 MUST_USE_RESULT MaybeObject* SetElementWithCallbackSetterInPrototypes( |
| 1878 uint32_t index, Object* value, bool* found, StrictModeFlag strict_mode); | 1878 uint32_t index, Object* value, bool* found, StrictModeFlag strict_mode); |
| 1879 void LookupCallback(String* name, LookupResult* result); | 1879 void LookupCallbackProperty(String* name, LookupResult* result); |
| 1880 | 1880 |
| 1881 // Returns the number of properties on this object filtering out properties | 1881 // Returns the number of properties on this object filtering out properties |
| 1882 // with the specified attributes (ignoring interceptors). | 1882 // with the specified attributes (ignoring interceptors). |
| 1883 int NumberOfLocalProperties(PropertyAttributes filter = NONE); | 1883 int NumberOfLocalProperties(PropertyAttributes filter = NONE); |
| 1884 // Fill in details for properties into storage starting at the specified | 1884 // Fill in details for properties into storage starting at the specified |
| 1885 // index. | 1885 // index. |
| 1886 void GetLocalPropertyNames(FixedArray* storage, int index); | 1886 void GetLocalPropertyNames(FixedArray* storage, int index); |
| 1887 | 1887 |
| 1888 // Returns the number of properties on this object filtering out properties | 1888 // Returns the number of properties on this object filtering out properties |
| 1889 // with the specified attributes (ignoring interceptors). | 1889 // with the specified attributes (ignoring interceptors). |
| (...skipping 6991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8881 } else { | 8881 } else { |
| 8882 value &= ~(1 << bit_position); | 8882 value &= ~(1 << bit_position); |
| 8883 } | 8883 } |
| 8884 return value; | 8884 return value; |
| 8885 } | 8885 } |
| 8886 }; | 8886 }; |
| 8887 | 8887 |
| 8888 } } // namespace v8::internal | 8888 } } // namespace v8::internal |
| 8889 | 8889 |
| 8890 #endif // V8_OBJECTS_H_ | 8890 #endif // V8_OBJECTS_H_ |
| OLD | NEW |