/third_party/icu/tools/unicode/c/genprops/ |
H A D | genprops.cpp | 150 UnicodeSet newValues; in main() local 153 const UniProps *props=ppucd.getProps(newValues, errorCode); in main() 154 corePropsBuilder->setProps(*props, newValues, errorCode); in main() 155 bidiPropsBuilder->setProps(*props, newValues, errorCode); in main() 156 casePropsBuilder->setProps(*props, newValues, errorCode); in main() 157 layoutPropsBuilder->setProps(*props, newValues, errorCode); in main() 158 emojiPropsBuilder->setProps(*props, newValues, errorCode); in main() 159 namesPropsBuilder->setProps(*props, newValues, errorCode); in main()
|
H A D | corepropsbuilder.cpp | 325 virtual void setProps(const UniProps &, const UnicodeSet &newValues, UErrorCode &errorCode); 331 void setGcAndNumeric(const UniProps &, const UnicodeSet &newValues, UErrorCode &errorCode); 516 CorePropsBuilder::setGcAndNumeric(const UniProps &props, const UnicodeSet &newValues, in setGcAndNumeric() argument 530 if(!newValues.contains(UCHAR_GENERAL_CATEGORY) && !newValues.contains(UCHAR_NUMERIC_VALUE)) { in setGcAndNumeric() 654 CorePropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument 656 setGcAndNumeric(props, newValues, errorCode); in setProps() 666 if(newValues.containsSome(0, UCHAR_BINARY_LIMIT-1)) { in setProps() 670 if(newValues.contains(p2b.prop)) { in setProps() 679 if(newValues in setProps() [all...] |
H A D | layoutpropsbuilder.cpp | 84 virtual void setProps(const UniProps &props, const UnicodeSet &newValues, UErrorCode &errorCode) U_OVERRIDE; 89 void setIntProp(const UniProps &, const UnicodeSet &newValues, 134 LayoutPropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument 136 setIntProp(props, newValues, UCHAR_INDIC_POSITIONAL_CATEGORY, inpcMutableTrie, errorCode); in setProps() 137 setIntProp(props, newValues, UCHAR_INDIC_SYLLABIC_CATEGORY, inscMutableTrie, errorCode); in setProps() 138 setIntProp(props, newValues, UCHAR_VERTICAL_ORIENTATION, voMutableTrie, errorCode); in setProps() 141 void LayoutPropsBuilder::setIntProp(const UniProps &props, const UnicodeSet &newValues, in setIntProp() argument 144 if (U_SUCCESS(errorCode) && newValues.contains(prop)) { in setIntProp()
|
H A D | casepropsbuilder.cpp | 275 virtual void setProps(const UniProps &, const UnicodeSet &newValues, UErrorCode &errorCode); 393 CasePropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument 395 if(U_FAILURE(errorCode) || newValues.containsNone(relevantProps)) { return; } in setProps() 476 newValues.contains(PPUCD_CONDITIONAL_CASE_MAPPINGS) in setProps() 482 newValues.contains(PPUCD_TURKIC_CASE_FOLDING) in setProps() 537 newValues.contains(PPUCD_CONDITIONAL_CASE_MAPPINGS) || in setProps() 541 newExcProps->hasTurkicCaseFolding=newValues.contains(PPUCD_TURKIC_CASE_FOLDING); in setProps()
|
H A D | emojipropsbuilder.cpp | 102 void setProps(const UniProps &, const UnicodeSet &newValues, UErrorCode &errorCode) override; 226 EmojiPropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, 230 if (newValues.containsSome(0, UCHAR_BINARY_LIMIT-1)) { 233 if (newValues.contains(p2b.prop)) {
|
H A D | genprops.h | 37 virtual void setProps(const icu::UniProps &props, const icu::UnicodeSet &newValues, UErrorCode &errorCode);
|
H A D | bidipropsbuilder.cpp | 174 virtual void setProps(const UniProps &, const UnicodeSet &newValues, UErrorCode &errorCode); 271 BiDiPropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument 273 if(U_FAILURE(errorCode) || newValues.containsNone(relevantProps)) { return; } in setProps()
|
H A D | namespropsbuilder.cpp | 210 virtual void setProps(const UniProps &, const UnicodeSet &newValues, UErrorCode &errorCode); 296 NamesPropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument 299 if(!newValues.contains(UCHAR_NAME) && !newValues.contains(PPUCD_NAME_ALIAS)) { in setProps()
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | ppucd.cpp | 193 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument 195 newValues.clear(); in getProps() 258 newValues=blockValues; in getProps() 262 newValues.remove((UChar32)UCHAR_BLOCK); in getProps() 286 if(!parseProperty(*props, field, newValues, errorCode)) { return nullptr; } in getProps() 289 blockValues=newValues; in getProps() 291 // Unset newValues for values that are the same as the block values. in getProps() 293 if(newValues.contains(prop) && cpProps.binProps[prop]==blockProps.binProps[prop]) { in getProps() 294 newValues.remove(prop); in getProps() 299 if(newValues in getProps() 318 parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, UErrorCode &errorCode) parseProperty() argument [all...] |
H A D | ppucd.h | 130 * Clears newValues and sets UProperty codes for property values mentioned 135 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode); 153 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
|
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | ppucd.cpp | 193 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument 195 newValues.clear(); in getProps() 258 newValues=blockValues; in getProps() 262 newValues.remove((UChar32)UCHAR_BLOCK); in getProps() 286 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps() 289 blockValues=newValues; in getProps() 291 // Unset newValues for values that are the same as the block values. in getProps() 293 if(newValues.contains(prop) && cpProps.binProps[prop]==blockProps.binProps[prop]) { in getProps() 294 newValues.remove(prop); in getProps() 299 if(newValues in getProps() 318 parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, UErrorCode &errorCode) parseProperty() argument [all...] |
H A D | ppucd.h | 130 * Clears newValues and sets UProperty codes for property values mentioned 135 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode); 153 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | ppucd.cpp | 186 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument 188 newValues.clear(); in getProps() 251 newValues=blockValues; in getProps() 255 newValues.remove((UChar32)UCHAR_BLOCK); in getProps() 279 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps() 282 blockValues=newValues; in getProps() 284 // Unset newValues for values that are the same as the block values. in getProps() 286 if(newValues.contains(prop) && cpProps.binProps[prop]==blockProps.binProps[prop]) { in getProps() 287 newValues.remove(prop); in getProps() 292 if(newValues in getProps() 311 parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, UErrorCode &errorCode) parseProperty() argument [all...] |
H A D | ppucd.h | 130 * Clears newValues and sets UProperty codes for property values mentioned 135 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode); 153 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
|
/third_party/icu/icu4c/source/i18n/ |
H A D | sortkey.cpp | 60 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) in CollationKey() argument 64 if (count < 0 || (newValues == NULL && count != 0) || in CollationKey() 71 uprv_memcpy(getBytes(), newValues, count); in CollationKey() local
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | sortkey.cpp | 60 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) in CollationKey() argument 64 if (count < 0 || (newValues == nullptr && count != 0) || in CollationKey() 71 uprv_memcpy(getBytes(), newValues, count); in CollationKey() local
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | sortkey.cpp | 60 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) in CollationKey() argument 64 if (count < 0 || (newValues == NULL && count != 0) || in CollationKey() 71 uprv_memcpy(getBytes(), newValues, count); in CollationKey() local
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | CompactCharArray.java | 86 * @param newValues the values of the compact array. 93 char newValues[]) in CompactCharArray() 100 if (index >= newValues.length+BLOCKCOUNT) in CompactCharArray() 104 values = newValues; in CompactCharArray() 92 CompactCharArray(char indexArray[], char newValues[]) CompactCharArray() argument
|
H A D | CompactByteArray.java | 85 * @param newValues the values of the compact array. 92 byte newValues[]) in CompactByteArray() 99 if (index >= newValues.length+BLOCKCOUNT) in CompactByteArray() 103 values = newValues; in CompactByteArray() 91 CompactByteArray(char indexArray[], byte newValues[]) CompactByteArray() argument
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | CompactCharArray.java | 88 * @param newValues the values of the compact array. 95 char newValues[]) in CompactCharArray() 102 if (index >= newValues.length+BLOCKCOUNT) in CompactCharArray() 106 values = newValues; in CompactCharArray() 94 CompactCharArray(char indexArray[], char newValues[]) CompactCharArray() argument
|
H A D | CompactByteArray.java | 87 * @param newValues the values of the compact array. 94 byte newValues[]) in CompactByteArray() 101 if (index >= newValues.length+BLOCKCOUNT) in CompactByteArray() 105 values = newValues; in CompactByteArray() 93 CompactByteArray(char indexArray[], byte newValues[]) CompactByteArray() argument
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework_sc.py | 630 newValues = [] 635 newValues.append((name, value)) 636 enum.values = newValues
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |