/aosp12/frameworks/base/core/java/android/os/ |
H A D | HidlSupport.java | 124 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 D | VectorType.cpp | 35 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 D | FmqType.cpp | 168 bool FmqType::isCompatibleElementType(const Type* elementType) const { in isCompatibleElementType() 169 return (!elementType->isInterface() && !elementType->needsEmbeddedReadWrite()); in isCompatibleElementType()
|
H A D | ArrayType.cpp | 27 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 D | VectorType.h | 35 bool isCompatibleElementType(const Type* elementType) const override; 96 const Type *elementType,
|
H A D | FmqType.h | 67 bool isCompatibleElementType(const Type* elementType) const override;
|
H A D | Type.h | 362 void setElementType(const Reference<Type>& elementType); 370 virtual bool isCompatibleElementType(const Type* elementType) const = 0;
|
H A D | Type.cpp | 743 void TemplatedType::setElementType(const Reference<Type>& elementType) { in setElementType() argument 746 CHECK(!elementType.isEmptyReference()); in setElementType() 748 mElementType = elementType; in setElementType()
|
H A D | ArrayType.h | 31 ArrayType(const Reference<Type>& elementType, ConstantExpression* size, Scope* parent);
|
H A D | EnumType.h | 184 bool isCompatibleElementType(const Type* elementType) const override;
|
H A D | EnumType.cpp | 866 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 D | FrameType.java | 163 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 D | Constants.java | 113 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 D | AidlTranslate.cpp | 241 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 D | PasspointEventHandler.java | 158 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 D | Parser.kt | 163 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 D | Parser.java | 809 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 D | FieldInfo.kt | 102 is ArrayType -> listOf(fieldAst.elementType.asString())
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | dagger-compiler-2.23.jar | java/dagger/internal/codegen/META-INF/gradle/incremental.annotation.processors
... |
H A D | auto-value-1.5.3.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp12/packages/apps/TV/libs/ |
H A D | truth-0.45.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | doclava.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/ccil/
org/ ... |
/aosp12/packages/apps/Messaging/build/gcheckstyle/ |
H A D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |
/aosp12/packages/services/Telecomm/libs/ |
H A D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp12/packages/apps/RemoteProvisioner/tests/unittests/ |
H A D | tink-android-1.5.0.jar | com/google/crypto/tink/subtle/prf/StreamingPrf.class
StreamingPrf.java
package ... |