/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | PropertiesAffixPatternProvider.java | 121 return AffixUtils.containsType(posPrefix, AffixUtils.TYPE_PLUS_SIGN) in positiveHasPlusSign() 122 || AffixUtils.containsType(posSuffix, AffixUtils.TYPE_PLUS_SIGN); in positiveHasPlusSign() 137 return AffixUtils.containsType(negPrefix, AffixUtils.TYPE_MINUS_SIGN) in negativeHasMinusSign() 138 || AffixUtils.containsType(negSuffix, AffixUtils.TYPE_MINUS_SIGN); in negativeHasMinusSign() 148 return AffixUtils.containsType(posPrefix, type) || AffixUtils.containsType(posSuffix, type) in containsSymbolType() 149 … || AffixUtils.containsType(negPrefix, type) || AffixUtils.containsType(negSuffix, type); in containsSymbolType()
|
D | AffixUtils.java | 388 public static boolean containsType(CharSequence affixPattern, int type) { in containsType() method in AffixUtils
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | PropertiesAffixPatternProvider.java | 117 return AffixUtils.containsType(posPrefix, AffixUtils.TYPE_PLUS_SIGN) in positiveHasPlusSign() 118 || AffixUtils.containsType(posSuffix, AffixUtils.TYPE_PLUS_SIGN); in positiveHasPlusSign() 133 return AffixUtils.containsType(negPrefix, AffixUtils.TYPE_MINUS_SIGN) in negativeHasMinusSign() 134 || AffixUtils.containsType(negSuffix, AffixUtils.TYPE_MINUS_SIGN); in negativeHasMinusSign() 144 return AffixUtils.containsType(posPrefix, type) || AffixUtils.containsType(posSuffix, type) in containsSymbolType() 145 … || AffixUtils.containsType(negPrefix, type) || AffixUtils.containsType(negSuffix, type); in containsSymbolType()
|
D | AffixUtils.java | 380 public static boolean containsType(CharSequence affixPattern, int type) { in containsType() method in AffixUtils
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | SpvPostProcess.cpp | 78 if (containsType(typeId, OpTypeInt, 8)) in postProcessType() 80 if (containsType(typeId, OpTypeInt, 16)) in postProcessType() 82 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType() 125 if (containsType(typeId, OpTypeFloat, 16) || containsType(typeId, OpTypeInt, 16)) { in postProcessType() 138 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType() 140 if (containsType(typeId, OpTypeInt, 16)) in postProcessType() 144 if (containsType(typeId, OpTypeInt, 8)) { in postProcessType() 164 if (getSpvVersion() < glslang::EShTargetSpv_1_3 && containsType(typeId, OpTypeInt, 16)) in postProcessType() 170 … if (getSpvVersion() < glslang::EShTargetSpv_1_3 && containsType(typeId, OpTypeFloat, 16)) in postProcessType() 395 if (containsType(type->getIdOperand(1), OpTypeInt, 8)) { in postProcessFeatures() [all …]
|
/external/deqp-deps/glslang/SPIRV/ |
D | SpvPostProcess.cpp | 78 if (containsType(typeId, OpTypeInt, 8)) in postProcessType() 80 if (containsType(typeId, OpTypeInt, 16)) in postProcessType() 82 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType() 125 if (containsType(typeId, OpTypeFloat, 16) || containsType(typeId, OpTypeInt, 16)) { in postProcessType() 138 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType() 140 if (containsType(typeId, OpTypeInt, 16)) in postProcessType() 144 if (containsType(typeId, OpTypeInt, 8)) { in postProcessType() 164 if (getSpvVersion() < glslang::EShTargetSpv_1_3 && containsType(typeId, OpTypeInt, 16)) in postProcessType() 170 … if (getSpvVersion() < glslang::EShTargetSpv_1_3 && containsType(typeId, OpTypeFloat, 16)) in postProcessType() 395 if (containsType(type->getIdOperand(1), OpTypeInt, 8)) { in postProcessFeatures() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | number_mapper.cpp | 416 return AffixUtils::containsType(posPrefix, TYPE_PLUS_SIGN, localStatus) || in positiveHasPlusSign() 417 AffixUtils::containsType(posSuffix, TYPE_PLUS_SIGN, localStatus); in positiveHasPlusSign() 430 return AffixUtils::containsType(negPrefix, TYPE_MINUS_SIGN, localStatus) || in negativeHasMinusSign() 431 AffixUtils::containsType(negSuffix, TYPE_MINUS_SIGN, localStatus); in negativeHasMinusSign() 439 return AffixUtils::containsType(posPrefix, type, status) || in containsSymbolType() 440 AffixUtils::containsType(posSuffix, type, status) || in containsSymbolType() 441 AffixUtils::containsType(negPrefix, type, status) || in containsSymbolType() 442 AffixUtils::containsType(negSuffix, type, status); in containsSymbolType()
|
D | numparse_affixes.cpp | 252 && !AffixUtils::containsType(posSuffixString, TYPE_PLUS_SIGN, status) && in isInteresting() 253 !AffixUtils::containsType(posSuffixString, TYPE_MINUS_SIGN, status) && in isInteresting() 254 !AffixUtils::containsType(negSuffixString, TYPE_PLUS_SIGN, status) && in isInteresting() 255 !AffixUtils::containsType(negSuffixString, TYPE_MINUS_SIGN, status)) { in isInteresting()
|
D | number_affixutils.h | 169 …static bool containsType(const UnicodeString& affixPattern, AffixPatternType type, UErrorCode& sta…
|
D | number_affixutils.cpp | 202 AffixUtils::containsType(const UnicodeString &affixPattern, AffixPatternType type, UErrorCode &stat… in containsType() function in AffixUtils
|
/external/libcxx/test/support/ |
D | any_helpers.h | 38 bool containsType(std::any const& a) { in containsType() function 74 assert(containsType<Type>(a)); in assertContains() 83 assert(containsType<Type>(a)); in assertContains() 96 assert(containsType<Type>(a)); in modifyValue() 429 assert(containsType<Type>(a)); in assertArgsMatch()
|
/external/llvm-project/libcxx/test/support/ |
D | any_helpers.h | 37 bool containsType(std::any const& a) { in containsType() function 73 assert(containsType<Type>(a)); in assertContains() 82 assert(containsType<Type>(a)); in assertContains() 95 assert(containsType<Type>(a)); in modifyValue() 428 assert(containsType<Type>(a)); in assertArgsMatch()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/ |
D | AffixMatcher.java | 69 && !AffixUtils.containsType(posSuffixString, AffixUtils.TYPE_PLUS_SIGN) in isInteresting() 70 && !AffixUtils.containsType(posSuffixString, AffixUtils.TYPE_MINUS_SIGN) in isInteresting() 71 && !AffixUtils.containsType(negSuffixString, AffixUtils.TYPE_PLUS_SIGN) in isInteresting() 72 && !AffixUtils.containsType(negSuffixString, AffixUtils.TYPE_MINUS_SIGN)) { in isInteresting()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
D | AffixMatcher.java | 67 && !AffixUtils.containsType(posSuffixString, AffixUtils.TYPE_PLUS_SIGN) in isInteresting() 68 && !AffixUtils.containsType(posSuffixString, AffixUtils.TYPE_MINUS_SIGN) in isInteresting() 69 && !AffixUtils.containsType(negSuffixString, AffixUtils.TYPE_PLUS_SIGN) in isInteresting() 70 && !AffixUtils.containsType(negSuffixString, AffixUtils.TYPE_MINUS_SIGN)) { in isInteresting()
|
/external/libcxx/test/std/utilities/any/any.class/any.cons/ |
D | in_place_type.pass.cpp | 123 assert(containsType<DecayT>(a)); in test_in_place_type_decayed() 131 assert(containsType<DecayT>(a)); in test_in_place_type_decayed() 138 assert(containsType<DecayT>(a)); in test_in_place_type_decayed()
|
D | value.pass.cpp | 134 assert(containsType<OKTag>(a)); in test_sfinae_constraints()
|
/external/llvm-project/libcxx/test/std/utilities/any/any.class/any.cons/ |
D | in_place_type.pass.cpp | 120 assert(containsType<DecayT>(a)); in test_in_place_type_decayed() 128 assert(containsType<DecayT>(a)); in test_in_place_type_decayed() 135 assert(containsType<DecayT>(a)); in test_in_place_type_decayed()
|
D | value.pass.cpp | 131 assert(containsType<OKTag>(a)); in test_sfinae_constraints()
|
/external/angle/src/compiler/translator/ |
D | Types.cpp | 411 return mStructure ? mStructure->containsType(t) : false; in isStructureContainingType() 421 return isInterfaceBlock() ? mInterfaceBlock->containsType(t) : false; in isInterfaceBlockContainingType() 813 bool TFieldListCollection::containsType(TBasicType type) const in containsType() function in sh::TFieldListCollection 950 return typeSpecifierNonArray.userDef->containsType(t); in isStructureContainingType()
|
/external/icu/libicu/cts_headers/ |
D | number_affixutils.h | 169 …static bool containsType(const UnicodeString& affixPattern, AffixPatternType type, UErrorCode& sta…
|
/external/swiftshader/src/OpenGL/compiler/ |
D | Types.h | 135 bool containsType(TBasicType type) const; 522 return structure ? structure->containsType(t) : false; in isStructureContainingType()
|
D | SymbolTable.cpp | 119 bool TStructure::containsType(TBasicType type) const in containsType() function in TStructure
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
D | AffixUtilsTest.java | 152 AffixUtils.containsType(input, AffixUtils.TYPE_MINUS_SIGN)); in testContainsReplaceType()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/ |
D | AffixUtilsTest.java | 155 AffixUtils.containsType(input, AffixUtils.TYPE_MINUS_SIGN)); in testContainsReplaceType()
|
/external/icu/icu4c/source/test/intltest/ |
D | numbertest_affixutils.cpp | 167 input, hasMinusSign, AffixUtils::containsType(input, TYPE_MINUS_SIGN, status)); in testContainsReplaceType()
|