Searched refs:valueType (Results 1 - 25 of 32) sorted by relevance

12

/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);
H A DEncodedValue.java52 ValueType valueType = ValueType.fromByte((byte)(b & 0x1f));
55 switch (valueType) {
/external/webkit/Source/WebCore/html/
H A DHTMLParamElement.idl26 attribute [Reflect] DOMString valueType;
/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/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/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLParamElement03.js78 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/
H A DHTMLParamElement03.js78 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/Source/WebCore/platform/wince/
H A DMIMETypeRegistryWinCE.cpp43 DWORD valueType; local
50 if (ERROR_SUCCESS == RegQueryValueEx(key, L"Content Type", 0, &valueType, (LPBYTE)contentTypeStr, &contentTypeStrLen) && valueType == REG_SZ)
/external/chromium/chrome/browser/resources/options/
H A Dpref_ui.js71 switch(self.valueType) {
86 * @param {String} valueType The preference type for this checkbox.
88 initializeValueType: function(valueType) {
89 this.valueType = valueType || 'boolean';
/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/clang/lib/Driver/
H A DWindowsToolChain.cpp96 DWORD valueType; local
172 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
184 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
/external/webkit/Source/WebCore/css/
H A DSVGCSSStyleSelector.cpp113 unsigned short valueType = value->cssValueType(); local
115 bool isInherit = m_parentNode && valueType == CSSPrimitiveValue::CSS_INHERIT;
116 bool isInitial = valueType == CSSPrimitiveValue::CSS_INITIAL || (!m_parentNode && valueType == CSSPrimitiveValue::CSS_INHERIT);
/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/webkit/Source/WebKit/win/Interfaces/
H A DDOMCSS.idl202 HRESULT cssValueType([out, retval] unsigned short *valueType);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
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.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp585 QualType valueType = cast<AtomicType>(Ty)->getValueType(); local
586 ResultType = ConvertTypeForMem(valueType);
589 uint64_t valueSize = Context.getTypeSize(valueType);
H A DCGAtomic.cpp718 QualType valueType = atomics.getValueType(); local
728 llvm::Type *resultTy = CGM.getTypes().ConvertTypeForMem(valueType);
731 result = EmitFromMemory(result, valueType);
H A DCGExprAgg.cpp653 QualType valueType = E->getType(); local
654 if (isToAtomic) std::swap(atomicType, valueType);
657 assert(CGF.getContext().hasSameUnqualifiedType(valueType,
713 return EmitFinalDestCopy(valueType, rvalue);
/external/guava/guava-tests/test/com/google/common/collect/
H A DEnumBiMapTest.java112 assertEquals(Country.class, bimap.valueType());
/external/webkit/Source/WebCore/platform/mac/
H A DHTMLConverter.mm218 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
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.h317 typedef bool (*WKPageSessionStateFilterCallback)(WKPageRef page, WKStringRef valueType, WKTypeRef value, void* context);
/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 706 milliseconds

12