HomeSort by relevance Sort by last modified time
    Searched refs:set_b (Results 1 - 9 of 9) sorted by null

  /external/lldb/include/lldb/Interpreter/
Options.h 330 IsASubset (const OptionSet& set_a, const OptionSet& set_b);
333 OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs);
336 OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
reflection_ops_unittest.cc 295 message.set_b(2);
314 message.mutable_optional_message()->set_b(2);
324 sub_message->set_b(2);
342 message.MutableExtension(unittest::TestRequired::single)->set_b(2);
352 message.MutableExtension(unittest::TestRequired::multi, 0)->set_b(2);
extension_set_unittest.cc 383 message.MutableExtension(unittest::TestRequired::single)->set_b(2);
393 message.MutableExtension(unittest::TestRequired::multi, 0)->set_b(2);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.h 151 const RowSpanSet& set_b,
desktop_region.cc 470 const RowSpanSet& set_b,
472 assert(!set_a.empty() && !set_b.empty());
474 RowSpanSet::const_iterator it_b = set_b.begin();
477 // with |set_b| to the |output|.
481 if (it_b == set_b.end() || it_a->right < it_b->left) {
486 // Iterate over |set_b| spans that may intersect with |it_a|.
488 while (it_b != set_b.end() && it_b->left < it_a->right) {
  /external/lldb/source/Interpreter/
Options.cpp 66 // Returns true is set_a is a subset of set_b; Otherwise returns false.
69 Options::IsASubset (const OptionSet& set_a, const OptionSet& set_b)
75 // set_a is a subset of set_b if every member of set_a is also a member of set_b
79 pos_b = set_b.find(*pos_a);
80 if (pos_b == set_b.end())
87 // Returns the set difference set_a - set_b, i.e. { x | ElementOf (x, set_a) && !ElementOf (x, set_b) }
90 Options::OptionsSetDiff (const OptionSet& set_a, const OptionSet& set_b, OptionSet& diffs)
98 pos_b = set_b.find(*pos_a)
    [all...]
  /external/lldb/test/functionalities/breakpoint/inlined_breakpoints/
basic_type.cpp 55 set_b (const T& b) function in class:a_class