/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
D | test_run_results.py | 287 current_map = tests 290 current_map[part] = test_dict 292 if part not in current_map: 293 current_map[part] = {} 294 current_map = current_map[part]
|
/external/chromium_org/v8/src/x64/ |
D | stub-cache-x64.cc | 746 Handle<Map> current_map = receiver_map; in CheckPrototypes() local 750 while (!current_map.is_identical_to(holder_map)) { in CheckPrototypes() 755 ASSERT(current_map->IsJSGlobalProxyMap() || in CheckPrototypes() 756 !current_map->is_access_check_needed()); in CheckPrototypes() 758 prototype = handle(JSObject::cast(current_map->prototype())); in CheckPrototypes() 759 if (current_map->is_dictionary_map() && in CheckPrototypes() 760 !current_map->IsJSGlobalObjectMap() && in CheckPrototypes() 761 !current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() 783 __ CheckMap(reg, current_map, miss, DONT_DO_SMI_CHECK); in CheckPrototypes() 789 if (current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() [all …]
|
/external/chromium_org/v8/src/arm64/ |
D | stub-cache-arm64.cc | 794 Handle<Map> current_map = receiver_map; in CheckPrototypes() local 798 while (!current_map.is_identical_to(holder_map)) { in CheckPrototypes() 803 ASSERT(current_map->IsJSGlobalProxyMap() || in CheckPrototypes() 804 !current_map->is_access_check_needed()); in CheckPrototypes() 806 prototype = handle(JSObject::cast(current_map->prototype())); in CheckPrototypes() 807 if (current_map->is_dictionary_map() && in CheckPrototypes() 808 !current_map->IsJSGlobalObjectMap() && in CheckPrototypes() 809 !current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() 834 __ CheckMap(map_reg, current_map, miss, DONT_DO_SMI_CHECK); in CheckPrototypes() 840 if (current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() [all …]
|
/external/chromium_org/v8/src/x87/ |
D | stub-cache-x87.cc | 793 Handle<Map> current_map = receiver_map; in CheckPrototypes() local 797 while (!current_map.is_identical_to(holder_map)) { in CheckPrototypes() 802 ASSERT(current_map->IsJSGlobalProxyMap() || in CheckPrototypes() 803 !current_map->is_access_check_needed()); in CheckPrototypes() 805 prototype = handle(JSObject::cast(current_map->prototype())); in CheckPrototypes() 806 if (current_map->is_dictionary_map() && in CheckPrototypes() 807 !current_map->IsJSGlobalObjectMap() && in CheckPrototypes() 808 !current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() 826 __ CheckMap(reg, current_map, miss, DONT_DO_SMI_CHECK); in CheckPrototypes() 832 if (current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() [all …]
|
/external/chromium_org/v8/src/ia32/ |
D | stub-cache-ia32.cc | 794 Handle<Map> current_map = receiver_map; in CheckPrototypes() local 798 while (!current_map.is_identical_to(holder_map)) { in CheckPrototypes() 803 ASSERT(current_map->IsJSGlobalProxyMap() || in CheckPrototypes() 804 !current_map->is_access_check_needed()); in CheckPrototypes() 806 prototype = handle(JSObject::cast(current_map->prototype())); in CheckPrototypes() 807 if (current_map->is_dictionary_map() && in CheckPrototypes() 808 !current_map->IsJSGlobalObjectMap() && in CheckPrototypes() 809 !current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() 827 __ CheckMap(reg, current_map, miss, DONT_DO_SMI_CHECK); in CheckPrototypes() 833 if (current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() [all …]
|
/external/chromium_org/v8/src/arm/ |
D | stub-cache-arm.cc | 843 Handle<Map> current_map = receiver_map; in CheckPrototypes() local 847 while (!current_map.is_identical_to(holder_map)) { in CheckPrototypes() 852 ASSERT(current_map->IsJSGlobalProxyMap() || in CheckPrototypes() 853 !current_map->is_access_check_needed()); in CheckPrototypes() 855 prototype = handle(JSObject::cast(current_map->prototype())); in CheckPrototypes() 856 if (current_map->is_dictionary_map() && in CheckPrototypes() 857 !current_map->IsJSGlobalObjectMap() && in CheckPrototypes() 858 !current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() 877 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK); in CheckPrototypes() 885 if (current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() [all …]
|
/external/chromium_org/v8/src/mips/ |
D | stub-cache-mips.cc | 835 Handle<Map> current_map = receiver_map; in CheckPrototypes() local 839 while (!current_map.is_identical_to(holder_map)) { in CheckPrototypes() 844 ASSERT(current_map->IsJSGlobalProxyMap() || in CheckPrototypes() 845 !current_map->is_access_check_needed()); in CheckPrototypes() 847 prototype = handle(JSObject::cast(current_map->prototype())); in CheckPrototypes() 848 if (current_map->is_dictionary_map() && in CheckPrototypes() 849 !current_map->IsJSGlobalObjectMap() && in CheckPrototypes() 850 !current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() 869 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK); in CheckPrototypes() 877 if (current_map->IsJSGlobalProxyMap()) { in CheckPrototypes() [all …]
|
/external/chromium_org/v8/src/ |
D | transitions.h | 151 bool IsConsistentWithBackPointers(Map* current_map);
|
D | objects-debug.cc | 1180 static bool CheckOneBackPointer(Map* current_map, Object* target) { in CheckOneBackPointer() argument 1181 return !target->IsMap() || Map::cast(target)->GetBackPointer() == current_map; in CheckOneBackPointer() 1185 bool TransitionArray::IsConsistentWithBackPointers(Map* current_map) { in IsConsistentWithBackPointers() argument 1187 if (!CheckOneBackPointer(current_map, GetTarget(i))) return false; in IsConsistentWithBackPointers()
|
D | stub-cache.cc | 157 Handle<Map> current_map = stub_holder; in ComputeLoadNonexistent() local 158 Handle<Name> cache_name = current_map->is_dictionary_map() in ComputeLoadNonexistent() 160 Handle<Object> next(current_map->prototype(), isolate()); in ComputeLoadNonexistent() 164 next = handle(current_map->prototype(), isolate()); in ComputeLoadNonexistent() 165 current_map = handle(Handle<HeapObject>::cast(next)->map()); in ComputeLoadNonexistent() 166 if (current_map->is_dictionary_map()) cache_name = name; in ComputeLoadNonexistent()
|
D | objects.cc | 3245 Handle<Map> current_map(this); in FindTransitionedMap() local 3251 MaybeNull(current_map->LookupElementsTransitionMap(kind)); in FindTransitionedMap() 3258 current_map = maybe_transitioned_map; in FindTransitionedMap() 3266 Map* current_map = map; in FindClosestElementsTransition() local 3288 if (!current_map->HasElementsTransition()) return current_map; in FindClosestElementsTransition() 3289 current_map = current_map->elements_transition_map(); in FindClosestElementsTransition() 3292 if (to_kind != kind && current_map->HasElementsTransition()) { in FindClosestElementsTransition() 3294 Map* next_map = current_map->elements_transition_map(); in FindClosestElementsTransition() 3298 ASSERT(current_map->elements_kind() == target_kind); in FindClosestElementsTransition() 3299 return current_map; in FindClosestElementsTransition() [all …]
|
D | hydrogen.cc | 6997 Handle<Map> current_map = types->at(i); in HandleKeyedElementAccess() local 6998 if (current_map->DictionaryElementsInPrototypeChainOnly()) { in HandleKeyedElementAccess()
|
D | objects.h | 3524 bool IsConsistentWithBackPointers(Map* current_map);
|