Home
last modified time | relevance | path

Searched refs:objectType (Results 1 – 25 of 162) sorted by relevance

1234567

/external/apache-xml/src/main/java/org/apache/xml/utils/
DObjectPool.java39 private final Class objectType; field in ObjectPool
52 objectType = type; in ObjectPool()
65 objectType = ObjectFactory.findProviderClass( in ObjectPool()
85 objectType = type; in ObjectPool()
95 objectType = null; in ObjectPool()
136 return objectType.newInstance(); in getInstance()
/external/deqp/external/vulkancts/framework/vulkan/
DvkDebugReportUtil.cpp50 const char* getShortObjectTypeName (VkDebugReportObjectTypeEXT objectType) in getShortObjectTypeName() argument
52 switch (objectType) in getShortObjectTypeName()
90 …Format::Enum<VkDebugReportObjectTypeEXT> shortObjectTypeStr (VkDebugReportObjectTypeEXT objectType) in shortObjectTypeStr() argument
92 return tcu::Format::Enum<VkDebugReportObjectTypeEXT>(getShortObjectTypeName, objectType); in shortObjectTypeStr()
106 str << " at " << shortObjectTypeStr(message.objectType) << ":" << message.location << ")"; in operator <<()
115 VkDebugReportObjectTypeEXT objectType, in debugReportCallback() argument
125 …const DebugReportMessage message (flags, objectType, object, location, messageCode, pLayerPrefix,… in debugReportCallback()
DvkDebugReportUtil.hpp38 VkDebugReportObjectTypeEXT objectType; member
47 , objectType ((VkDebugReportObjectTypeEXT)0) in DebugReportMessage()
61 , objectType (objectType_) in DebugReportMessage()
/external/auto/common/src/test/java/com/google/auto/common/
DSimpleTypeAnnotationValueTest.java43 private TypeMirror objectType; field in SimpleTypeAnnotationValueTest
50 objectType = elements.getTypeElement(Object.class.getCanonicalName()).asType(); in setUp()
62 SimpleTypeAnnotationValue.of(types.getArrayType(objectType)); in arrays()
68 SimpleTypeAnnotationValue.of(objectType); in declaredType()
73 SimpleTypeAnnotationValue.of(objectType).accept(new SimpleAnnotationValueVisitor8<Void, Void>(){ in visitorMethod()
92 elements.getTypeElement(List.class.getCanonicalName()), objectType)); in parameterizedType() local
DMoreTypesTest.java66 TypeMirror objectType = elements.getTypeElement(Object.class.getCanonicalName()).asType(); in equivalence() local
80 types.getDeclaredType(mapElement, objectType, objectType); in equivalence()
83 types.getDeclaredType(setElement, types.getDeclaredType(setElement, objectType)); in equivalence()
89 DeclaredType containerOfObject = types.getDeclaredType(container, objectType); in equivalence()
97 .addEquivalenceGroup(objectType) in equivalence()
115 .addEquivalenceGroup(types.getDeclaredType(mapElement, objectType, stringType)) in equivalence()
116 .addEquivalenceGroup(types.getDeclaredType(mapElement, stringType, objectType)) in equivalence()
124 .addEquivalenceGroup(types.getWildcardType(objectType, null)) in equivalence()
132 types.getDeclaredType(setElement, objectType)))) in equivalence()
323 TypeMirror objectType = in testNonObjectSuperclass() local
[all …]
/external/mesa3d/src/mesa/main/
Dobjectpurge.c132 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option) in _mesa_ObjectPurgeableAPPLE() argument
157 switch (objectType) { in _mesa_ObjectPurgeableAPPLE()
170 name, objectType); in _mesa_ObjectPurgeableAPPLE()
274 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option) in _mesa_ObjectUnpurgeableAPPLE() argument
297 switch (objectType) { in _mesa_ObjectUnpurgeableAPPLE()
307 name, objectType); in _mesa_ObjectUnpurgeableAPPLE()
386 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname, in _mesa_GetObjectParameterivAPPLE() argument
397 switch (objectType) { in _mesa_GetObjectParameterivAPPLE()
410 name, objectType); in _mesa_GetObjectParameterivAPPLE()
Dobjectpurge.h32 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
35 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
38 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name,
/external/mesa3d/src/vulkan/util/
Dvk_object.c196 VkObjectType objectType, in vk_object_base_private_data() argument
212 if (objectType == VK_OBJECT_TYPE_SWAPCHAIN_KHR) { in vk_object_base_private_data()
222 vk_object_base_from_u64_handle(objectHandle, objectType); in vk_object_base_private_data()
230 VkObjectType objectType, in vk_object_base_set_private_data() argument
237 objectType, objectHandle, in vk_object_base_set_private_data()
249 VkObjectType objectType, in vk_object_base_get_private_data() argument
256 objectType, objectHandle, in vk_object_base_get_private_data()
Dvk_object.h165 VkObjectType objectType,
171 VkObjectType objectType,
/external/javassist/src/main/javassist/
DCtField.java589 public static Initializer byNew(CtClass objectType) { in byNew() argument
591 i.objectType = objectType; in byNew()
615 public static Initializer byNew(CtClass objectType, in byNew() argument
618 i.objectType = objectType; in byNew()
644 public static Initializer byNewWithParams(CtClass objectType) { in byNewWithParams() argument
646 i.objectType = objectType; in byNewWithParams()
673 public static Initializer byNewWithParams(CtClass objectType, in byNewWithParams() argument
676 i.objectType = objectType; in byNewWithParams()
704 i.objectType = methodClass; in byCall()
738 i.objectType = methodClass; in byCall()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
DSubtypeOfBoundTest.java28 …private ResolvedType objectType = new ReferenceTypeImpl(new ReflectionTypeSolver().solveType(Objec… field in SubtypeOfBoundTest
61 Bound bound = new SubtypeOfBound(inferenceVariable, objectType); in recognizeProperUpperBound1()
63 …assertEquals(Optional.of(new ProperUpperBound(inferenceVariable, objectType)), bound.isProperUpper… in recognizeProperUpperBound1()
78 Bound bound2 = new SubtypeOfBound(beta, objectType); in recognizeProperUpperBound2()
83 … assertEquals(Optional.of(new ProperUpperBound(beta, objectType)), bound2.isProperUpperBound()); in recognizeProperUpperBound2()
/external/flatbuffers/tests/MyGame/Example/
DAnyAmbiguousAliases.cs42 public override bool CanConvert(System.Type objectType) { in CanConvert() argument
43 …return objectType == typeof(AnyAmbiguousAliasesUnion) || objectType == typeof(System.Collections.G… in CanConvert()
59 …public override object ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object … in ReadJson() argument
DAny.cs42 public override bool CanConvert(System.Type objectType) { in CanConvert() argument
43 …return objectType == typeof(AnyUnion) || objectType == typeof(System.Collections.Generic.List<AnyU… in CanConvert()
59 …public override object ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object … in ReadJson() argument
DAnyUniqueAliases.cs42 public override bool CanConvert(System.Type objectType) { in CanConvert() argument
43 …return objectType == typeof(AnyUniqueAliasesUnion) || objectType == typeof(System.Collections.Gene… in CanConvert()
59 …public override object ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object … in ReadJson() argument
/external/flatbuffers/tests/union_vector/
DCharacter.cs48 public override bool CanConvert(System.Type objectType) { in CanConvert() argument
49 …return objectType == typeof(CharacterUnion) || objectType == typeof(System.Collections.Generic.Lis… in CanConvert()
65 …public override object ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object … in ReadJson() argument
/external/pdfium/xfa/fxfa/parser/
Dcxfa_list.cpp24 XFA_ObjectType objectType, in CXFA_List() argument
27 : CXFA_Object(pDocument, objectType, eType, std::move(obj)) { in CXFA_List()
Dcxfa_object.cpp23 XFA_ObjectType objectType, in CXFA_Object() argument
27 m_objectType(objectType), in CXFA_Object()
/external/dagger2/java/dagger/internal/codegen/binding/
DConfigurationAnnotations.java99 TypeMirror objectType = elements.getTypeElement(Object.class).asType(); in getTransitiveModules() local
114 types, moduleElement, moduleDependenciesBuilder, objectType); in getTransitiveModules()
144 TypeMirror objectType) { in addIncludesFromSuperclasses() argument
147 while (!types.isSameType(objectType, superclass) in addIncludesFromSuperclasses()
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DBundlerGenerator.java208 TypeMirror objectType = type.getTypeMirror(); in addReadFromParcelType() local
209 if (objectType.getKind().isPrimitive()) { in addReadFromParcelType()
210 PrimitiveType primitiveType = (PrimitiveType) objectType; in addReadFromParcelType()
211 objectType = generatorContext.types().boxedClass(primitiveType).asType(); in addReadFromParcelType()
216 TypeUtils.getRawTypeQualifiedName(objectType), in addReadFromParcelType()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
DReferenceTypeImpl.java202 …ResolvedReferenceTypeDeclaration objectType = typeSolver.solveType(Object.class.getCanonicalName()… in getAllAncestors() local
203 ResolvedReferenceType objectRef = create(objectType); in getAllAncestors()
224 …ResolvedReferenceTypeDeclaration objectType = typeSolver.solveType(Object.class.getCanonicalName()… in getDirectAncestors() local
225 ResolvedReferenceType objectRef = create(objectType); in getDirectAncestors()
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java41 …z clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType); in visitObjectType() argument
51 …thod method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); in visitStackObjectType() argument
61 …thod method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); in visitVariablesObjectType() argument
/external/tpm2-tss/src/tss2-fapi/api/
DFapi_GetCertificate.c192 if (keyObject->objectType == IFAPI_EXT_PUB_KEY_OBJ) { in Fapi_GetCertificate_Finish()
209 if (keyObject->objectType) { in Fapi_GetCertificate_Finish()
DFapi_ExportKey.c292 if (commandObject.objectType != IFAPI_KEY_OBJ) { in Fapi_ExportKey_Finish()
299 pubKey->objectType = IFAPI_EXT_PUB_KEY_OBJ; in Fapi_ExportKey_Finish()
329 if (parentKeyObject.objectType != IFAPI_EXT_PUB_KEY_OBJ) { in Fapi_ExportKey_Finish()
397 exportTree->objectType = IFAPI_DUPLICATE_OBJ; in Fapi_ExportKey_Finish()
DFapi_Delete.c157 object->objectType = IFAPI_OBJ_NONE; in Fapi_Delete_Async()
158 authObject->objectType = IFAPI_OBJ_NONE; in Fapi_Delete_Async()
304 if (object->objectType == IFAPI_KEY_OBJ) { in Fapi_Delete_Finish()
310 } else if (object->objectType == IFAPI_NV_OBJ) { in Fapi_Delete_Finish()
/external/tpm2-tss/src/tss2-fapi/
Difapi_keystore.c1402 if (src->objectType != IFAPI_KEY_OBJ) { in ifapi_copy_ifapi_key_object()
1415 dest->objectType = src->objectType; in ifapi_copy_ifapi_key_object()
1439 if (object->objectType != IFAPI_OBJ_NONE) { in ifapi_cleanup_ifapi_object()
1440 if (object->objectType == IFAPI_KEY_OBJ) { in ifapi_cleanup_ifapi_object()
1442 } else if (object->objectType == IFAPI_NV_OBJ) { in ifapi_cleanup_ifapi_object()
1444 } else if (object->objectType == IFAPI_DUPLICATE_OBJ) { in ifapi_cleanup_ifapi_object()
1446 } else if (object->objectType == IFAPI_EXT_PUB_KEY_OBJ) { in ifapi_cleanup_ifapi_object()
1448 } else if (object->objectType == IFAPI_HIERARCHY_OBJ) { in ifapi_cleanup_ifapi_object()
1454 object->objectType = IFAPI_OBJ_NONE; in ifapi_cleanup_ifapi_object()

1234567