Searched refs:union (Results 1 - 25 of 88) sorted by relevance

1234

/external/chromium_org/tools/idl_parser/test_parser/
H A Dstruct_ppapi.idl46 * ExtAttribute(union)
48 [union] struct MyStruct {
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
H A Dmenu-view.js82 var union = null; variable
86 if (!union)
87 union = data;
89 merge(data, union);
93 var data = [union];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java250 Set union = new HashSet();
257 unionEmail(_excluded, email, union);
260 return union;
302 * Returns the union of the excluded IP ranges in <code>excluded</code>
325 Set union = new HashSet();
331 union.addAll(unionIPRange(_excluded, ip));
334 return union;
339 * Calculates the union if two IP ranges.
343 * @return A <code>Set</code> with the union of both addresses.
747 * added to the union <cod
754 unionEmail(String email1, String email2, Set union) argument
892 unionURI(String email1, String email2, Set union) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DSetOperationsTest.java36 * Unit tests for {@link Sets#union}, {@link Sets#intersection} and
48 return Sets.union(
60 return Sets.union(
70 return Sets.union(
81 return Sets.union(
94 return Sets.union(
108 return Sets.union(
113 .named("union of disjoint")
120 return Sets.union(
267 Set<String> all = Sets.union(friend
[all...]
H A DMapMakerTest.java169 assertEquals(expectedKeys, Sets.union(map.keySet(), removalNotifications.keySet()));
/external/chromium_org/ppapi/api/
H A Dpp_var.idl96 * The PP_VarValue union stores the data for any one of the types listed
99 [union] struct PP_VarValue {
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dclean-header-guards30 IgnoreFileNamesPattern = Regexp.union(*IgnoredFilenamePatterns).freeze
/external/bison/etc/
H A Dbench.pl.in44 %union
144 /* Exercise pre-prologue dependency to %union. */
151 /* Exercise %union. */
154 %union
/external/chromium-trace/trace-viewer/build/
H A Dcheck_grit.py35 u = set(grit_files).union(set(known_images))
H A Dcheck_gyp.py30 u = set(gyp_files).union(set(known_files))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Dchecker.py241 # Take the union across all checkers.
242 categories = CommonCategories.union(CppChecker.categories)
243 categories = categories.union(JSONChecker.categories)
244 categories = categories.union(TestExpectationsChecker.categories)
245 categories = categories.union(PNGChecker.categories)
252 categories = categories.union(["pep8/W191", "pep8/W291", "pep8/E501"])
/external/chromium_org/ppapi/generators/test_gen_pnacl/
H A Dtest_interfaces.idl34 [union, passByValue, returnByValue] struct some_union {
54 * Pnacl_M15_PPB_Iface_union_wrap_foo1(int32_t a, union some_union* b) {
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbrowser_credentials.py102 all_keys = set(credentials.keys()).union(
103 homedir_credentials.keys()).union(
/external/grub/docs/
H A Dmultiboot.h.texi89 union
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_configuration.py227 union = set()
230 union = union | item
232 return union - intersection
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DInterval.java110 public Interval union(Interval other) { method in class:Interval
/external/chromium_org/build/android/gyp/
H A Dwrite_ordered_libraries.py75 all_deps = all_deps.union(new_deps)
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfeatures_bundle.py34 platforms = platforms.union(dependency_feature['platforms'])
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DDeviceMotionAndOrientationTest.java85 Set<Integer> union = new HashSet<Integer>(
87 union.addAll(DeviceMotionAndOrientation.DEVICE_MOTION_SENSORS);
89 assertEquals(union.size(), mDeviceMotionAndOrientation.mActiveSensors.size());
92 assertEquals(union.size(), mMockSensorManager.numRegistered);
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_test_results.py20 return self.pages_that_had_errors.union(
/external/valgrind/main/none/tests/amd64/
H A Dgen_insn_test.pl108 typedef union {
113 typedef union {
120 typedef union {
130 typedef union {
143 typedef union {
/external/valgrind/main/none/tests/x86/
H A Dgen_insn_test.pl88 typedef union {
93 typedef union {
100 typedef union {
110 typedef union {
123 typedef union {
/external/chromium_org/third_party/bintrees/bintrees/
H A Dtreemixin.py53 * __or__(other) <==> T | other, union
128 * union(t1, t2, ...) -> Tree with keys from *either* trees
181 return self.union(other)
601 def union(self, *trees): member in class:TreeMixin
602 """ x.union(t1, t2, ...) -> Tree with keys from *either* trees
605 rkeys = thiskeys.union(*_build_sets(trees))
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcompat.py28 def union(self, s): member in class:Set
H A Djython_compat.py121 def union(self, s): member in class:Set

Completed in 1176 milliseconds

1234