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

/external/guava/guava/src/com/google/common/collect/
H A DEnumBiMap.java42 private transient Class<V> valueType; field in class:EnumBiMap
49 * @param valueType the value type
52 create(Class<K> keyType, Class<V> valueType) { argument
53 return new EnumBiMap<K, V>(keyType, valueType);
73 private EnumBiMap(Class<K> keyType, Class<V> valueType) { argument
75 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
77 this.valueType = valueType;
93 return ((EnumBiMap<?, V>) map).valueType;
105 public Class<V> valueType() { method in class:EnumBiMap
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/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
71 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
73 this.valueType = valueType;
89 return ((EnumBiMap<?, V>) map).valueType;
101 public Class<V> valueType() { method in class:EnumBiMap
[all...]
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DReferenceMap.java88 * @param valueType the type of reference to use for values;
91 public ReferenceMap(int keyType, int valueType) { argument
92 super(keyType, valueType, DEFAULT_CAPACITY, DEFAULT_LOAD_FACTOR, false);
101 * @param valueType the type of reference to use for values;
106 public ReferenceMap(int keyType, int valueType, boolean purgeValues) { argument
107 super(keyType, valueType, DEFAULT_CAPACITY, DEFAULT_LOAD_FACTOR, purgeValues);
117 * @param valueType the type of reference to use for values;
122 public ReferenceMap(int keyType, int valueType, int capacity, float loadFactor) { argument
123 super(keyType, valueType, capacity, loadFactor, false);
133 * @param valueType th
140 ReferenceMap(int keyType, int valueType, int capacity, float loadFactor, boolean purgeValues) argument
[all...]
H A DAbstractReferenceMap.java108 protected int valueType; field in class:AbstractReferenceMap
135 * @param valueType the type of reference to use for values;
142 protected AbstractReferenceMap(int keyType, int valueType, int capacity, float loadFactor, boolean purgeValues) { argument
145 verify("valueType", valueType);
147 this.valueType = valueType;
590 if (parent.valueType != HARD) {
591 refValue = toReference(parent.valueType, value, hashCode); // the key hashCode is passed in deliberately
614 return (parent.valueType > HAR
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DValueType.java61 for (ValueType valueType : ValueType.values()) {
62 valueTypeIntegerMap.put(valueType.value, valueType);
79 * @param valueType the byte value to convert to a ValueType
80 * @return the ValueType enum value corresponding to valueType, or null
83 public static ValueType fromByte(byte valueType) { argument
84 return valueTypeIntegerMap.get(valueType);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimationElement.h99 AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement)
101 if (valueType != InheritValue)
98 adjustForInheritance(AnimatedType (parseTypeFromString)SVGAnimationElement*, const String&), AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement) argument
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp592 QualType valueType = cast<AtomicType>(Ty)->getValueType(); local
593 ResultType = ConvertTypeForMem(valueType);
596 uint64_t valueSize = Context.getTypeSize(valueType);
H A DCGAtomic.cpp776 QualType valueType = atomics.getValueType(); local
786 llvm::Type *resultTy = CGM.getTypes().ConvertTypeForMem(valueType);
789 result = EmitFromMemory(result, valueType);
H A DCGExprAgg.cpp590 QualType valueType = E->getType(); local
591 if (isToAtomic) std::swap(atomicType, valueType);
594 assert(CGF.getContext().hasSameUnqualifiedType(valueType,
649 return EmitFinalDestCopy(valueType, rvalue);
/external/clang/lib/Driver/
H A DWindowsToolChain.cpp88 DWORD valueType; local
164 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
176 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaImpl.java656 * @param valueType
662 protected XMPProperty getProperty(String schemaNS, String propName, int valueType) argument
673 if (valueType != VALUE_STRING && propNode.getOptions().isCompositeProperty())
679 final Object value = evaluateNodeValue(valueType, propNode);
722 * @param valueType
725 * <code>valueType</code>.
729 protected Object getPropertyObject(String schemaNS, String propName, int valueType) argument
740 if (valueType != VALUE_STRING && propNode.getOptions().isCompositeProperty())
746 return evaluateNodeValue(valueType, propNode);
1378 * @param valueType
1385 evaluateNodeValue(int valueType, final XMPNode propNode) argument
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java682 TypeId<T> valueType = TypeId.get(source);
683 MethodId<?, T> methodId = GENERATED.getMethod(valueType, "call", valueType);
685 Local<T> localSource = code.getParameter(0, valueType);
723 TypeId<T> valueType = TypeId.get(source);
724 MethodId<?, T> methodId = GENERATED.getMethod(valueType, "call", valueType);
726 Local<T> localSource = code.getParameter(0, valueType);
961 TypeId<V> valueType = TypeId.get(valueClass);
963 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldNam
1483 floatingPointCompareMethod( TypeId<T> valueType, int nanValue) argument
1552 arrayLengthMethod(TypeId<T> valueType) argument
1594 newArrayMethod(TypeId<T> valueType) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.databinding_1.4.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...

Completed in 488 milliseconds