Searched defs:parent_ids (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/renderer/pepper/
H A Dv8_var_converter.cc90 ParentVarSet* parent_ids,
96 if (parent_ids->count(var.value.as_id) != 0)
332 ParentVarSet parent_ids; local
346 parent_ids.erase(current_var.value.as_id);
359 &parent_ids,
371 parent_ids.insert(current_var.value.as_id);
389 &parent_ids,
403 parent_ids.insert(current_var.value.as_id);
425 &parent_ids,
84 GetOrCreateV8Value(v8::Handle<v8::Context> context, const PP_Var& var, V8VarConverter::AllowObjectVars object_vars_allowed, v8::Handle<v8::Value>* result, bool* did_create, VarHandleMap* visited_ids, ParentVarSet* parent_ids, ResourceConverter* resource_converter) argument
/external/chromium_org/ppapi/proxy/
H A Draw_var_data.cc79 // |parent_ids| which contains all of the nodes on the path from the start node
81 // in the list of |parent_ids| it means we have a cycle and we return NULL.
84 // stack and erase it from |parent_ids|.
91 base::hash_set<int64_t> parent_ids; local
104 parent_ids.erase(current_var.value.as_id);
109 parent_ids.insert(current_var.value.as_id);
127 // If a child of this node is already in parent_ids, we have a cycle so
129 if (CanHaveChildren(child) && parent_ids.count(child.value.as_id) != 0)
148 if (CanHaveChildren(child) && parent_ids.count(child.value.as_id) != 0)

Completed in 97 milliseconds