Searched defs:valueType (Results 1 - 7 of 7) sorted by relevance

/external/guava/src/com/google/common/collect/
H A DEnumBiMap.java38 private transient Class<V> valueType; field in class:EnumBiMap
45 * @param valueType the value type
48 create(Class<K> keyType, Class<V> valueType) { argument
49 return new EnumBiMap<K, V>(keyType, valueType);
69 private EnumBiMap(Class<K> keyType, Class<V> valueType) { argument
70 super(new EnumMap<K, V>(keyType), new EnumMap<V, K>(valueType));
72 this.valueType = valueType;
88 return ((EnumBiMap<?, V>) map).valueType;
100 public Class<V> valueType() { method in class:EnumBiMap
[all...]
/external/webkit/WebCore/platform/wince/
H A DMIMETypeRegistryWince.cpp41 DWORD valueType; local
48 if (ERROR_SUCCESS == RegQueryValueEx(key, L"Content Type", 0, &valueType, (LPBYTE)contentTypeStr, &contentTypeStrLen) && valueType == REG_SZ)
/external/webkit/WebCore/html/
H A DHTMLParamElement.cpp93 String HTMLParamElement::valueType() const function in class:WebCore::HTMLParamElement
/external/webkit/WebCore/css/
H A DSVGCSSStyleSelector.cpp114 unsigned short valueType = value->cssValueType(); local
116 bool isInherit = m_parentNode && valueType == CSSPrimitiveValue::CSS_INHERIT;
117 bool isInitial = valueType == CSSPrimitiveValue::CSS_INITIAL || (!m_parentNode && valueType == CSSPrimitiveValue::CSS_INHERIT);
H A DCSSStyleSelector.cpp2989 unsigned short valueType = value->cssValueType(); local
2991 bool isInherit = m_parentNode && valueType == CSSValue::CSS_INHERIT;
2992 bool isInitial = valueType == CSSValue::CSS_INITIAL || (!m_parentNode && valueType == CSSValue::CSS_INHERIT);
4922 if (valueType != CSSValue::CSS_INHERIT || !m_parentNode) return;
/external/webkit/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h752 @property(copy) NSString *valueType; variable
/external/svox/pico/lib/
H A Dpicotok.c642 static void tok_checkLimits (picodata_ProcessingUnit this, picoos_uint32 * value, picoos_uint32 min, picoos_uint32 max, picoos_uchar valueType[]) argument
645 picoos_emRaiseWarning(this->common->em, PICO_ERR_MARKUP_VALUE_OUT_OF_RANGE, (picoos_char*)"", (picoos_char*)"attempt to set illegal value %i for %s", *value, valueType);
658 static void tok_checkRealLimits (picodata_ProcessingUnit this, picoos_single * value, picoos_single min, picoos_single max, picoos_uchar valueType[])
661 picoos_emRaiseWarning(this->common->em, PICO_ERR_MARKUP_VALUE_OUT_OF_RANGE, (picoos_char*)"", (picoos_char*)"attempt to set illegal value %f for %s", *value, valueType);

Completed in 965 milliseconds