HomeSort by relevance Sort by last modified time
    Searched full:issubset (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularImmutableSortedSet.java 29 final boolean isSubset;
31 RegularImmutableSortedSet(SortedSet<E> delegate, boolean isSubset) {
33 this.isSubset = isSubset;
ImmutableSortedSet.java 189 boolean isSubset = (result instanceof RegularImmutableSortedSet)
190 && ((RegularImmutableSortedSet) result).isSubset;
191 if (!isSubset) {
229 SortedSet<E> delegate, boolean isSubset) {
232 : new RegularImmutableSortedSet<E>(delegate, isSubset);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
USBAudioPeripheralAttributesActivity.java 68 } else if (!ListsHelper.isSubset(deviceInfo.getChannelCounts(), attribs.mChannelCounts)) {
75 } else if (!ListsHelper.isSubset(deviceInfo.getEncodings(), attribs.mEncodings)) {
82 } else if (!ListsHelper.isSubset(deviceInfo.getSampleRates(), attribs.mSampleRates)) {
92 if (!ListsHelper.isSubset(deviceInfo.getChannelIndexMasks(),
98 if (!ListsHelper.isSubset(deviceInfo.getChannelMasks(),
126 } else if (!ListsHelper.isSubset(deviceInfo.getChannelCounts(), attribs.mChannelCounts)) {
133 } else if (!ListsHelper.isSubset(deviceInfo.getEncodings(), attribs.mEncodings)) {
140 } else if (!ListsHelper.isSubset(deviceInfo.getSampleRates(), attribs.mSampleRates)) {
149 if (!ListsHelper.isSubset(deviceInfo.getChannelIndexMasks(),
153 if (!ListsHelper.isSubset(deviceInfo.getChannelMasks()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
ListsHelper.java 50 static public boolean isSubset(int[] a, int[] b) {
  /external/selinux/python/sepolicy/sepolicy/
booleans.py 39 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
communicate.py 48 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
network.py 30 for i in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]) and (not check_bools or x["enabled"]), allows)):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_weakrefset.py 157 def issubset(self, other): member in class:WeakSet
158 return self.data.issubset(ref(item) for item in other)
159 __le__ = issubset
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_weakrefset.py 172 def issubset(self, other): member in class:WeakSet
173 return self.data.issubset(ref(item) for item in other)
174 __lt__ = issubset
  /external/python/cpython2/Lib/
_weakrefset.py 157 def issubset(self, other): member in class:WeakSet
158 return self.data.issubset(ref(item) for item in other)
159 __le__ = issubset
  /external/python/cpython3/Lib/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
  /prebuilts/gdb/linux-x86/lib/python2.7/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
  /external/lisa/libs/utils/analysis/
functions_analysis.py 61 if not set(metrics).issubset(set(available_metrics)):
  /kernel/tests/devicetree/early_mount/
dt_early_mount_test.py 69 set(REQUIRED_FSTAB_PROPERTIES).issubset(properties),
  /frameworks/native/libs/vr/libpdx/
variant_tests.cpp 1125 EXPECT_TRUE((detail::Set<int, bool, float>::template IsSubset<int, bool,
1128 (detail::Set<int, bool, float>::template IsSubset<bool, float>::value));
1129 EXPECT_TRUE((detail::Set<int, bool, float>::template IsSubset<float>::value));
1130 EXPECT_TRUE((detail::Set<int, bool, float>::template IsSubset<>::value));
1133 (detail::Set<int, bool, float>::template IsSubset<int, bool, float,
1135 EXPECT_FALSE((detail::Set<int, bool, float>::template IsSubset<bool, float,
1138 (detail::Set<int, bool, float>::template IsSubset<float, char>::value));
1139 EXPECT_FALSE((detail::Set<int, bool, float>::template IsSubset<char>::value));
1141 EXPECT_TRUE(detail::Set<>::template IsSubset<>::value);
1142 EXPECT_FALSE(detail::Set<>::template IsSubset<int>::value)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredAidCache.java 171 boolean isSubset = isSubset(entry.getKey());
172 String entryAid = (isPrefix || isSubset) ? entry.getKey().substring(0,
175 || (isSubset && entryAid.startsWith(aid))) {
344 if (isSubset(aidServices.get(0).aid)) {
363 if (isSubset(aidServices.get(0).aid)) {
382 if (isSubset(aidServices.get(0).aid)) {
474 static boolean isSubset(String aid) {
560 if (isSubset(aid) || isPrefix(aid))
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
sms.py 70 if not keyset.issubset(cls._settable_props):
  /external/autotest/client/site_tests/platform_CryptohomeFio/
platform_CryptohomeFio.py 44 if not set(disk_configs).issubset(set(self.DISK_CONFIG_KEYS)):
  /test/vts-testcase/kernel/api/proc/
ProcFsFileTests.py 108 return self.REQUIRED_COLUMNS.issubset(result[0])
  /external/protobuf/python/google/protobuf/internal/
message_factory_test.py 114 ).issubset(set(messages.keys())))
120 ).issubset(
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
variant.h 74 struct IsSubset : std::true_type {};
76 struct IsSubset<T> : HasType<T, Types...> {};
78 struct IsSubset<First, Rest...>
79 : std::integral_constant<bool, IsSubset<First>::value &&
80 IsSubset<Rest...>::value> {};
664 detail::Set<Types...>::template IsSubset<ValidTypes...>::value,
671 detail::Set<Types...>::template IsSubset<ValidTypes...>::value,
  /external/autotest/server/site_tests/platform_ExternalUSBStress/
platform_ExternalUSBStress.py 87 if diff_list.issubset(connected):

Completed in 1431 milliseconds

1 2 3 4