Home
last modified time | relevance | path

Searched refs:numberType (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableLength.cpp173 …imatableLength::primitiveUnitToNumberType(unsigned short primitiveUnit, NumberUnitType& numberType) in primitiveUnitToNumberType() argument
182 numberType = UnitTypePixels; in primitiveUnitToNumberType()
185 numberType = UnitTypeFontSize; in primitiveUnitToNumberType()
188 numberType = UnitTypeFontXSize; in primitiveUnitToNumberType()
191 numberType = UnitTypeRootFontSize; in primitiveUnitToNumberType()
194 numberType = UnitTypePercentage; in primitiveUnitToNumberType()
197 numberType = UnitTypeViewportWidth; in primitiveUnitToNumberType()
200 numberType = UnitTypeViewportHeight; in primitiveUnitToNumberType()
203 numberType = UnitTypeViewportMin; in primitiveUnitToNumberType()
206 numberType = UnitTypeViewportMax; in primitiveUnitToNumberType()
[all …]
DAnimatableLength.h127 static bool primitiveUnitToNumberType(unsigned short primitiveUnit, NumberUnitType& numberType);
129 static unsigned short numberTypeToPrimitiveUnit(NumberUnitType numberType);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DPhoneNumberOfflineGeocoder.java217 PhoneNumberType numberType = phoneUtil.getNumberType(number); in getDescriptionForNumber() local
218 if (numberType == PhoneNumberType.UNKNOWN) { in getDescriptionForNumber()
220 } else if (!canBeGeocoded(numberType)) { in getDescriptionForNumber()
240 PhoneNumberType numberType = phoneUtil.getNumberType(number); in getDescriptionForNumber() local
241 if (numberType == PhoneNumberType.UNKNOWN) { in getDescriptionForNumber()
243 } else if (!canBeGeocoded(numberType)) { in getDescriptionForNumber()
254 private boolean canBeGeocoded(PhoneNumberType numberType) { in canBeGeocoded() argument
255 return (numberType == PhoneNumberType.FIXED_LINE || in canBeGeocoded()
256 numberType == PhoneNumberType.MOBILE || in canBeGeocoded()
257 numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE); in canBeGeocoded()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemNumber.java1168 char numberType = '1'; in formatNumberList() local
1207 numberType = formatToken.charAt(numberWidth - 1); in formatNumberList()
1235 numberType = formatToken.charAt(numberWidth - 1); in formatNumberList()
1264 getFormattedNumber(transformer, contextNode, numberType, numberWidth, in formatNumberList()
1316 char numberType, int numberWidth, long listElement, in getFormattedNumber() argument
1334 switch (numberType) in getFormattedNumber()
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
DPhoneNumberUtil.java972 PhoneNumberType numberType = getNumberType(phoneNumber);
975 return numberType == PhoneNumberType.FIXED_LINE ||
976 numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE;
1211 PhoneNumberType numberType = getNumberType(numberNoExt);
1213 (numberType == PhoneNumberType.FIXED_LINE) || (numberType == PhoneNumberType.MOBILE) ||
1214 (numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE);
1216 if (regionCode.equals("CO") && numberType == PhoneNumberType.FIXED_LINE) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListMarker.cpp88 typedef int numberType; typedef
91 static inline String toAlphabeticOrNumeric(numberType number, const CharacterType* sequence, unsign… in toAlphabeticOrNumeric()
95 …const int lettersSize = sizeof(numberType) * 8 + 1; // Binary is the worst case; requires one char… in toAlphabeticOrNumeric()