Searched defs:OrderedSet (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/skia/platform_tools/android/tests/
H A Dordered_set_tests.py9 Test OrderedSet.
18 from vars_dict_lib import OrderedSet namespace
28 self.__set = OrderedSet()
31 """Test methods on OrderedSet.
70 """Test OrderedSet.set().
73 my_set = OrderedSet()
81 other_set = OrderedSet()
H A Dvar_dict_tests.py19 from vars_dict_lib import OrderedSet namespace
51 # Each entry is an empty OrderedSet
53 self.assertIsInstance(v_dict[key], OrderedSet)
/external/skia/platform_tools/android/tests/
H A Dordered_set_tests.py9 Test OrderedSet.
18 from vars_dict_lib import OrderedSet namespace
28 self.__set = OrderedSet()
31 """Test methods on OrderedSet.
70 """Test OrderedSet.set().
73 my_set = OrderedSet()
81 other_set = OrderedSet()
H A Dvar_dict_tests.py19 from vars_dict_lib import OrderedSet namespace
51 # Each entry is an empty OrderedSet
53 self.assertIsInstance(v_dict[key], OrderedSet)
/external/chromium_org/tools/gn/
H A Dordered_set.h13 class OrderedSet { class
22 OrderedSet() {} function in class:OrderedSet
23 ~OrderedSet() {}
59 void append(const OrderedSet<T>& other) {
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py15 class OrderedSet(object): class in inherits:object
82 other: OrderedSet to replace this one. After this call, this OrderedSet
112 lists.append(OrderedSet())
/external/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py15 class OrderedSet(object): class in inherits:object
82 other: OrderedSet to replace this one. After this call, this OrderedSet
112 lists.append(OrderedSet())
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dcommon.py477 class OrderedSet(collections.MutableSet): class in inherits:collections.MutableSet
531 if isinstance(other, OrderedSet):
H A Dmsvs_emulation.py15 from gyp.common import OrderedSet namespace
157 them from all targets, and returns an OrderedSet containing them."""
158 all_system_includes = OrderedSet(
162 all_system_includes = all_system_includes & OrderedSet(system_includes)
167 expanded_system_includes = OrderedSet([ExpandMacros(include, env)
974 system_includes = system_includes | OrderedSet(
H A Dinput.py27 from gyp.common import OrderedSet namespace
1519 flat_list = OrderedSet()
1643 """Returns an OrderedSet of all of a target's dependencies, recursively."""
1647 dependencies = OrderedSet()
1661 """Returns an OrderedSet of dependency targets that are linked
1678 dependencies = OrderedSet()
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dninja.py17 from gyp.common import OrderedSet namespace
H A Dmsvs.py24 from gyp.common import OrderedSet namespace
445 inputs = OrderedSet()
446 outputs = OrderedSet()
450 inputs.update(OrderedSet(action['inputs']))
451 outputs.update(OrderedSet(action['outputs']))
507 inputs = OrderedSet()
508 outputs = OrderedSet()
579 all_inputs = OrderedSet()
580 all_outputs = OrderedSet()
581 all_output_dirs = OrderedSet()
[all...]

Completed in 1706 milliseconds