Home
last modified time | relevance | path

Searched refs:elementType (Results 1 – 25 of 30) sorted by relevance

12

/aosp12/frameworks/base/core/java/android/os/
H A DHidlSupport.java124 Class<?> elementType = clazz.getComponentType(); in deepHashCode() local
125 if (elementType.isPrimitive()) { in deepHashCode()
160 Class<?> elementType = o.getClass().getComponentType(); in primitiveArrayHashCode() local
161 if (elementType == boolean.class) { in primitiveArrayHashCode()
164 if (elementType == byte.class) { in primitiveArrayHashCode()
167 if (elementType == char.class) { in primitiveArrayHashCode()
170 if (elementType == double.class) { in primitiveArrayHashCode()
173 if (elementType == float.class) { in primitiveArrayHashCode()
176 if (elementType == int.class) { in primitiveArrayHashCode()
179 if (elementType == long.class) { in primitiveArrayHashCode()
[all …]
/aosp12/system/tools/hidl/
H A DVectorType.cpp35 if (elementType->isScalar()) { in isCompatibleElementType()
38 if (elementType->isString()) { in isCompatibleElementType()
41 if (elementType->isEnum()) { in isCompatibleElementType()
44 if (elementType->isBitField()) { in isCompatibleElementType()
47 if (elementType->isCompoundType()) { in isCompatibleElementType()
53 if (elementType->isInterface()) { in isCompatibleElementType()
56 if (elementType->isHandle()) { in isCompatibleElementType()
59 if (elementType->isMemory()) { in isCompatibleElementType()
62 if (elementType->isTemplatedType()) { in isCompatibleElementType()
66 if (elementType->isArray()) { in isCompatibleElementType()
[all …]
H A DFmqType.cpp168 bool FmqType::isCompatibleElementType(const Type* elementType) const { in isCompatibleElementType()
169 return (!elementType->isInterface() && !elementType->needsEmbeddedReadWrite()); in isCompatibleElementType()
H A DArrayType.cpp27 ArrayType::ArrayType(const Reference<Type>& elementType, ConstantExpression* size, Scope* parent) in ArrayType() argument
28 : Type(parent, elementType.localName()), mElementType(elementType) { in ArrayType()
29 CHECK(!elementType.isEmptyReference()); in ArrayType()
H A DVectorType.h35 bool isCompatibleElementType(const Type* elementType) const override;
96 const Type *elementType,
H A DFmqType.h67 bool isCompatibleElementType(const Type* elementType) const override;
H A DType.h362 void setElementType(const Reference<Type>& elementType);
370 virtual bool isCompatibleElementType(const Type* elementType) const = 0;
H A DType.cpp743 void TemplatedType::setElementType(const Reference<Type>& elementType) { in setElementType() argument
746 CHECK(!elementType.isEmptyReference()); in setElementType()
748 mElementType = elementType; in setElementType()
H A DArrayType.h31 ArrayType(const Reference<Type>& elementType, ConstantExpression* size, Scope* parent);
H A DEnumType.h184 bool isCompatibleElementType(const Type* elementType) const override;
H A DEnumType.cpp866 bool BitFieldType::isCompatibleElementType(const Type* elementType) const { in isCompatibleElementType()
867 return elementType->isEnum(); in isCompatibleElementType()
/aosp12/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameType.java163 public static FrameType buffer1D(int elementType) { in buffer1D() argument
164 return FrameType.fetchType(elementType, 1, ACCESS_UNKNOWN); in buffer1D()
172 public static FrameType buffer2D(int elementType) { in buffer2D() argument
173 return FrameType.fetchType(elementType, 2, ACCESS_UNKNOWN); in buffer2D()
182 public static FrameType image2D(int elementType, int accessHint) { in image2D() argument
183 return FrameType.fetchType(elementType, 2, accessHint); in image2D()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DConstants.java113 public static Integer getANQPElementID(ANQPElementType elementType) { in getANQPElementID() argument
114 return sRevAnqpmap.get(elementType); in getANQPElementID()
117 public static Integer getHS20ElementID(ANQPElementType elementType) { in getHS20ElementID() argument
118 return sRevHs20map.get(elementType); in getHS20ElementID()
/aosp12/system/tools/hidl/hidl2aidl/
H A DAidlTranslate.cpp241 const Type* elementType; in containerTranslation() local
246 elementType = static_cast<const ArrayType*>(field.field->get())->getElementType(); in containerTranslation()
251 elementType = static_cast<const VectorType*>(field.field->get())->getElementType(); in containerTranslation()
259 if (elementType->isArray() || elementType->isVector()) { in containerTranslation()
265 if (elementType->isNamedType() && !elementType->isEnum()) { in containerTranslation()
275 out << "out." << field.field->name() << " = new " << elementType->getJavaType(true) in containerTranslation()
279 h2aScalarChecks(out, *elementType, inputAccess + javaElementAccess, backend); in containerTranslation()
293 h2aScalarChecks(out, *elementType, inputAccessElement, backend); in containerTranslation()
295 << wrapCppSource(inputAccessElement, *elementType, parent->fqName(), backend) in containerTranslation()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointEventHandler.java158 for (Constants.ANQPElementType elementType : querySet) { in buildAnqpIdSet()
159 Integer id = Constants.getANQPElementID(elementType); in buildAnqpIdSet()
163 id = Constants.getHS20ElementID(elementType); in buildAnqpIdSet()
/aosp12/frameworks/base/tools/xmlpersistence/src/main/kotlin/
H A DParser.kt163 val elementType = type.typeParametersValues().single() regex
164 require(elementType is ResolvedReferenceType)
166 ClassName.get(List::class.java), elementType.typeName
169 "(element)", xmlName, true, elementType.classDeclaration
/aosp12/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DParser.java809 public DenseMap(String elementType) { in DenseMap() argument
810 mElementType = elementType; in DenseMap()
880 public UnDenseMap(String elementType) { in UnDenseMap() argument
881 mElementType = elementType; in UnDenseMap()
/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/
H A DFieldInfo.kt102 is ArrayType -> listOf(fieldAst.elementType.asString())
/aosp12/packages/apps/TV/libs/m2/
H A Ddagger-compiler-2.23.jarjava/dagger/internal/codegen/META-INF/gradle/incremental.annotation.processors ...
H A Dauto-value-1.5.3.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp12/packages/apps/TV/libs/
H A Dtruth-0.45.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ ...
/aosp12/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com ...
/aosp12/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp12/packages/apps/RemoteProvisioner/tests/unittests/
H A Dtink-android-1.5.0.jarcom/google/crypto/tink/subtle/prf/StreamingPrf.class StreamingPrf.java package ...

12