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

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEnumBiMap.java43 private transient Class<V> valueType; field in class:EnumBiMap
50 * @param valueType the value type
53 create(Class<K> keyType, Class<V> valueType) { argument
54 return new EnumBiMap<K, V>(keyType, valueType);
74 private EnumBiMap(Class<K> keyType, Class<V> valueType) { argument
76 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
78 this.valueType = valueType;
94 return ((EnumBiMap<?, V>) map).valueType;
106 public Class<V> valueType() { method in class:EnumBiMap
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DEnumBiMap.java47 private transient Class<V> valueType; field in class:EnumBiMap
54 * @param valueType the value type
57 create(Class<K> keyType, Class<V> valueType) { argument
58 return new EnumBiMap<K, V>(keyType, valueType);
78 private EnumBiMap(Class<K> keyType, Class<V> valueType) { argument
80 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
82 this.valueType = valueType;
98 return ((EnumBiMap<?, V>) map).valueType;
110 public Class<V> valueType() { method in class:EnumBiMap
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DEncodedValue.java45 int valueType = valueArgType & 0x1f;
47 switch (valueType) {
49 out.annotate(1, "valueArg = %d, valueType = 0x%x: byte", valueArg, valueType);
54 out.annotate(1, "valueArg = %d, valueType = 0x%x: short", valueArg, valueType);
59 out.annotate(1, "valueArg = %d, valueType = 0x%x: char", valueArg, valueType);
64 out.annotate(1, "valueArg = %d, valueType = 0x%x: int", valueArg, valueType);
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexDataWriter.java161 public void writeEncodedValueHeader(int valueType, int valueArg) throws IOException { argument
162 write(valueType | (valueArg << 5));
165 public void writeEncodedInt(int valueType, int value) throws IOException { argument
179 writeEncodedValueHeader(valueType, index-1);
183 public void writeEncodedLong(int valueType, long value) throws IOException { argument
197 writeEncodedValueHeader(valueType, index-1);
201 public void writeEncodedUint(int valueType, int value) throws IOException { argument
207 writeEncodedValueHeader(valueType, index-1);
211 public void writeEncodedFloat(int valueType, float value) throws IOException { argument
212 writeRightZeroExtendedInt(valueType, Floa
215 writeRightZeroExtendedInt(int valueType, int value) argument
228 writeEncodedDouble(int valueType, double value) argument
232 writeRightZeroExtendedLong(int valueType, long value) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
H A DDexBackedEncodedValue.java50 int valueType = b & 0x1f;
53 switch (valueType) {
105 throw new ExceptionWithContext("Invalid encoded_value type: 0x%x", valueType);
117 int valueType = b & 0x1f;
119 switch (valueType) {
147 throw new ExceptionWithContext("Invalid encoded_value type: 0x%x", valueType);
/external/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp114 ValueObjectSynthetic::GetDynamicValue (lldb::DynamicValueType valueType) argument
118 if (IsDynamic() && GetDynamicValueType() == valueType)
120 return m_parent->GetDynamicValue(valueType);
/external/lldb/include/lldb/Core/
H A DValueObjectSyntheticFilter.h64 GetDynamicValue (lldb::DynamicValueType valueType);
H A DValueObjectConstResult.h125 GetDynamicValue (lldb::DynamicValueType valueType);
H A DValueObject.h869 GetDynamicValue (lldb::DynamicValueType 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/guava/guava-tests/test/com/google/common/reflect/
H A DTypeTokenResolutionTest.java261 Type valueType = Map.class.getTypeParameters()[1];
266 TypeToken.of(context).resolveType(valueType).getType());
270 assertEquals(valueType, TypeToken.of(valueType).resolveType(valueType).getType());
H A DTypeTokenTest.java1534 TypeToken<V> valueType() { method in class:TypeTokenTest.Entry
1546 new Entry<Integer, String>() {}.valueType(),
1553 new Entry<String, Integer>() {}.valueType())
1579 private static <K, V> TypeToken<Map<K, V>> mapOf(Class<K> keyType, Class<V> valueType) { argument
1582 .where(new TypeParameter<V>() {}, valueType);
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java692 TypeId<T> valueType = TypeId.get(source);
693 MethodId<?, T> methodId = GENERATED.getMethod(valueType, "call", valueType);
695 Local<T> localSource = code.getParameter(0, valueType);
733 TypeId<T> valueType = TypeId.get(source);
734 MethodId<?, T> methodId = GENERATED.getMethod(valueType, "call", valueType);
736 Local<T> localSource = code.getParameter(0, valueType);
971 TypeId<V> valueType = TypeId.get(valueClass);
973 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldNam
1493 floatingPointCompareMethod( TypeId<T> valueType, int nanValue) argument
1562 arrayLengthMethod(TypeId<T> valueType) argument
1604 newArrayMethod(TypeId<T> valueType) argument
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DInstructionSequenceReplacer.java377 int valueType,
380 switch (valueType)
376 argumentAsString(ProgramClass programClass, int valueType, int argument) argument
/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.cpp599 QualType valueType = cast<AtomicType>(Ty)->getValueType(); local
600 ResultType = ConvertTypeForMem(valueType);
603 uint64_t valueSize = Context.getTypeSize(valueType);
H A DCGExprAgg.cpp612 QualType valueType = E->getType(); local
613 if (isToAtomic) std::swap(atomicType, valueType);
616 assert(CGF.getContext().hasSameUnqualifiedType(valueType,
671 return EmitFinalDestCopy(valueType, rvalue);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DEnumBiMapTest.java162 assertEquals(Country.class, bimap.valueType());
/external/guava/guava-tests/test/com/google/common/collect/
H A DEnumBiMapTest.java186 assertEquals(Country.class, bimap.valueType());
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp237 : valueType (valueType_)
243 ValueType valueType; member in struct:deqp::gles2::Functional::Value
1239 bool isIntCase = (funcInfo.input0.valueType & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0;
1286 bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE);
1317 if (v.valueType == VALUE_NONE)
1320 int curInScalarSize = isScalarType(v.valueType) ? 1 : inScalarSize;
1333 if (inputNdx == 0 || isScalarType(prevV.valueType) != isScalarType(v.valueType)) // \note Only write input type to case name if different from previous input type (avoid overly long names).
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp418 : valueType (valueType_)
424 ValueType valueType; member in struct:deqp::gles3::Functional::Value
1924 bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE);
1957 if (v.valueType == VALUE_NONE)
1960 int prevInScalarSize = isScalarType(prevV.valueType) ? 1 : inScalarSize;
1961 DataType prevInDataType = isFloatType(prevV.valueType) ? s_floatTypes[prevInScalarSize - 1]
1962 : isIntType(prevV.valueType) ? s_intTypes[prevInScalarSize - 1]
1963 : isUintType(prevV.valueType) ? s_uintTypes[prevInScalarSize - 1]
1964 : isBoolType(prevV.valueType) ? s_boolTypes[prevInScalarSize - 1]
1967 int curInScalarSize = isScalarType(v.valueType)
[all...]
/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/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h532 ValueType VT = E->valueType();
H A DThreadSafetyTIL.h529 ValueType valueType() const { return ValType; } function in class:clang::threadSafety::Literal

Completed in 585 milliseconds

12