HomeSort by relevance Sort by last modified time
    Searched refs:valueType (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/core/java/android/util/
ReflectiveProperty.java 45 public ReflectiveProperty(Class<T> propertyHolder, Class<V> valueType, String name) {
47 super(valueType, name);
64 if (!typesMatch(valueType, fieldType)) {
66 "does not match Property type (" + valueType + ")");
77 // Check to make sure our getter type matches our valueType
78 if (!typesMatch(valueType, getterType)) {
80 "does not match Property type (" + valueType + ")");
97 private boolean typesMatch(Class<V> valueType, Class getterType) {
98 if (getterType != valueType) {
100 return (getterType == float.class && valueType == Float.class) |
    [all...]
Property.java 54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
55 return new ReflectiveProperty<T, V>(hostType, valueType, name);
  /external/guava/src/com/google/common/collect/
EnumBiMap.java 38 private transient Class<V> valueType;
45 * @param valueType the value type
48 create(Class<K> keyType, Class<V> valueType) {
49 return new EnumBiMap<K, V>(keyType, valueType);
69 private EnumBiMap(Class<K> keyType, Class<V> valueType) {
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() {
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLParamElement.idl 26 attribute [Reflect] DOMString valueType;
  /external/webkit/Source/WebCore/platform/wince/
MIMETypeRegistryWinCE.cpp 43 DWORD valueType;
50 if (ERROR_SUCCESS == RegQueryValueEx(key, L"Content Type", 0, &valueType, (LPBYTE)contentTypeStr, &contentTypeStrLen) && valueType == REG_SZ)
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventValueDescription.java 26 * name, type ({@link EventValueType}), and (if needed) value unit ({@link ValueType}).
39 public static enum ValueType {
51 * Checks that the {@link EventValueType} is compatible with the {@link ValueType}.
64 * Returns a {@link ValueType} from an integer value, or <code>null</code> if no match
68 public static ValueType getValueType(int value) {
69 for (ValueType type : values()) {
89 private ValueType(int value) {
96 private ValueType mValueType;
102 * {@link #mValueType} is set to {@link ValueType#BYTES} by default. It set to
103 * {@link ValueType#NOT_APPLICABLE} for all other {@link EventValueType} values
    [all...]
EventLogParser.java 23 import com.android.ddmlib.log.EventValueDescription.ValueType;
219 ValueType valueType = ValueType.getValueType(typeValue);
221 list.add(new EventValueDescription(name, eventValueType, valueType));
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLParamElement03.js 78 The valueType attribute specifies information about the meaning of the
81 Retrieve the valueType attribute and examine its value.
103 vvaluetype = testNode.valueType;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLParamElement03.js 78 The valueType attribute specifies information about the meaning of the
81 Retrieve the valueType attribute and examine its value.
103 vvaluetype = testNode.valueType;
  /dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java 622 Type<T> valueType = Type.get(source);
623 MethodId<?, T> methodId = GENERATED.getMethod(valueType, "call", valueType);
625 Local<T> localSource = code.getParameter(0, valueType);
663 Type<T> valueType = Type.get(source);
664 MethodId<?, T> methodId = GENERATED.getMethod(valueType, "call", valueType);
666 Local<T> localSource = code.getParameter(0, valueType);
    [all...]
  /libcore/luni/src/main/java/java/util/
Collections.java     [all...]
  /external/webkit/Source/WebCore/css/
SVGCSSStyleSelector.cpp 113 unsigned short valueType = value->cssValueType();
115 bool isInherit = m_parentNode && valueType == CSSPrimitiveValue::CSS_INHERIT;
116 bool isInitial = valueType == CSSPrimitiveValue::CSS_INITIAL || (!m_parentNode && valueType == CSSPrimitiveValue::CSS_INHERIT);
  /dalvik/vm/reflect/
Annotation.cpp 325 u1 valueType, valueArg;
329 valueType = *ptr++;
330 valueArg = valueType >> kDexAnnotationValueArgShift;
334 valueType & kDexAnnotationValueTypeMask, valueArg, ptr-1,
337 pValue->type = valueType & kDexAnnotationValueTypeMask;
339 switch (valueType & kDexAnnotationValueTypeMask) {
535 valueType, valueType & kDexAnnotationValueTypeMask);
956 u1 valueType, valueArg;
959 valueType = *ptr++
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayLog.java 187 * @param valueType
190 String value, EventContainer.EventValueType eventValueType, EventValueDescription.ValueType valueType) {
200 if (valueType != EventValueDescription.ValueType.NOT_APPLICABLE) {
201 type = String.format("%1$s, %2$s", eventValueType.toString(), valueType.toString());
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 371 * @param valueType The type of the parameter (in the case of a setter). This type
378 private Method getPropertyFunction(Class targetClass, String prefix, Class valueType) {
383 if (valueType == null) {
431 * @param valueType The type of parameter passed into the method (null for getter).
436 String prefix, Class valueType) {
448 setterOrGetter = getPropertyFunction(targetClass, prefix, valueType);
    [all...]
AnimatorInflater.java 192 int valueType = a.getInt(com.android.internal.R.styleable.Animator_valueType,
203 boolean getFloats = (valueType == VALUE_TYPE_FLOAT);
216 // special case for colors: ignore valueType and get ints
  /external/webkit/Source/WebKit/win/Interfaces/
DOMCSS.idl 202 HRESULT cssValueType([out, retval] unsigned short *valueType);
  /frameworks/base/core/java/android/widget/
GridLayout.java     [all...]
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm 218 unsigned short valueType = [computedValue cssValueType];
219 if (valueType == DOM_CSS_PRIMITIVE_VALUE) {
225 } else if (valueType == DOM_CSS_VALUE_LIST) {
233 unsigned short valueType = [specifiedValue cssValueType];
234 if (valueType == DOM_CSS_PRIMITIVE_VALUE) {
244 } else if (valueType == DOM_CSS_INHERIT) {
246 } else if (valueType == DOM_CSS_VALUE_LIST) {
399 unsigned short valueType = [specifiedValue cssValueType];
400 if (valueType == DOM_CSS_PRIMITIVE_VALUE) {
402 } else if (valueType == DOM_CSS_INHERIT)
    [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 226 DWORD valueType;
302 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
315 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
    [all...]
  /dalvik/vm/analysis/
CodeVerify.cpp     [all...]
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 317 typedef bool (*WKPageSessionStateFilterCallback)(WKPageRef page, WKStringRef valueType, WKTypeRef value, void* context);
  /external/svox/pico/lib/
picotok.c 642 static void tok_checkLimits (picodata_ProcessingUnit this, picoos_uint32 * value, picoos_uint32 min, picoos_uint32 max, picoos_uchar valueType[])
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);
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp     [all...]

Completed in 2301 milliseconds

1 2