Home
last modified time | relevance | path

Searched refs:current_pair (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/objects/
Dliteral-objects.cc217 AccessorPair* current_pair = AccessorPair::cast(existing_value); in AddToDictionaryTemplate() local
220 GetExistingValueIndex(current_pair->getter()); in AddToDictionaryTemplate()
222 GetExistingValueIndex(current_pair->setter()); in AddToDictionaryTemplate()
238 current_pair->set_getter(*isolate->factory()->null_value()); in AddToDictionaryTemplate()
245 current_pair->set_setter(*isolate->factory()->null_value()); in AddToDictionaryTemplate()
263 AccessorPair* current_pair = AccessorPair::cast(existing_value); in AddToDictionaryTemplate() local
266 GetExistingValueIndex(current_pair->get(component)); in AddToDictionaryTemplate()
268 current_pair->set(component, value); in AddToDictionaryTemplate()
/external/deqp/external/openglcts/modules/gl/
Dgl3cCullDistanceTests.cpp894 const _token_value_pair& current_pair = token_value_pairs[n_pair]; in iterate() local
896 if (current_pair.token == NULL || current_pair.value == NULL) in iterate()
901 while ((token_position = current_body.body_ptr->find(current_pair.token)) != std::string::npos) in iterate()
903 … current_body.body_ptr->replace(token_position, strlen(current_pair.token), current_pair.value); in iterate()
/external/v8/src/
Dobjects.cc10124 Handle<AccessorPair> current_pair = Handle<AccessorPair>::cast(maybe_pair); in TransitionToAccessorProperty() local
10125 if (current_pair->Equals(*getter, *setter)) return map; in TransitionToAccessorProperty()
10129 !current_pair->get(ACCESSOR_GETTER)->IsNull(isolate) && in TransitionToAccessorProperty()
10130 current_pair->get(ACCESSOR_GETTER) != *getter) { in TransitionToAccessorProperty()
10134 !current_pair->get(ACCESSOR_SETTER)->IsNull(isolate) && in TransitionToAccessorProperty()
10135 current_pair->get(ACCESSOR_SETTER) != *setter) { in TransitionToAccessorProperty()