HomeSort by relevance Sort by last modified time
    Searched defs:union_set (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/common/extensions/permissions/
permission_set_unittest.cc 254 scoped_refptr<PermissionSet> union_set; local
283 union_set = PermissionSet::CreateUnion(set1.get(), set2.get());
285 EXPECT_TRUE(set1->Contains(*union_set.get()));
287 EXPECT_FALSE(set2->Contains(*union_set.get()));
288 EXPECT_TRUE(union_set->Contains(*set1.get()));
289 EXPECT_TRUE(union_set->Contains(*set2.get()));
291 EXPECT_FALSE(union_set->HasEffectiveFullAccess());
292 EXPECT_EQ(expected_apis, union_set->apis());
293 EXPECT_EQ(expected_explicit_hosts, union_set->explicit_hosts());
294 EXPECT_EQ(expected_scriptable_hosts, union_set->scriptable_hosts())
    [all...]
  /external/lldb/source/Interpreter/
Options.cpp 112 Options::OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set)
120 union_set.insert(*pos);
125 pos_union = union_set.find(*pos);
126 if (pos_union == union_set.end())
127 union_set.insert(*pos);
727 OptionSet union_set; local
728 OptionsSetUnion (GetRequiredOptions()[i], GetOptionalOptions()[i], union_set);
729 if (IsASubset (m_seen_options, union_set))
    [all...]

Completed in 766 milliseconds