Home
last modified time | relevance | path

Searched refs:typeRef (Results 1 – 13 of 13) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DPolymorphicList1451SerTest.java37 final TypeReference<?> typeRef = in testCollectionWithTypeInfo() local
39 ObjectWriter writer = mapper.writerFor(typeRef); in testCollectionWithTypeInfo()
47 List<A> output = mapper.readerFor(typeRef) in testCollectionWithTypeInfo()
DTestTypedContainerSerialization.java142 … TypeReference<List<List<Issue508A>>> typeRef = new TypeReference<List<List<Issue508A>>>() {}; in testIssue508() local
143 String json = mapper.writerFor(typeRef).writeValueAsString(l); in testIssue508()
145 List<?> output = mapper.readValue(json, typeRef); in testIssue508()
/external/desugar/java/com/google/devtools/build/android/desugar/scan/
DPrefixReferenceScanner.java91 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
247 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
317 int typeRef, TypePath typePath, String desc, boolean visible) { in visitInsnAnnotation() argument
331 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTryCatchAnnotation() argument
344 int typeRef, in visitLocalVariableAnnotation() argument
370 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DMethodUtil.java113 for (CharSequence typeRef: params) { in getShorty()
114 sb.append(getShortyType(typeRef)); in getShorty()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestGenericsBounded.java147 final TypeReference<?> typeRef = new TypeReference<ResultSetWithDoc<MyDoc>>() {}; in testIssue778() local
151 JavaType type = MAPPER.getTypeFactory().constructType(typeRef); in testIssue778()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DTestGenericTypes.java178 TypeReference<?> typeRef = new TypeReference<List<Base727>>() { }; in testRootTypeForCollections727() local
179 assertEquals(EXP, MAPPER.writer().forType(typeRef).writeValueAsString(input)); in testRootTypeForCollections727()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DNullConversionsForContentTest.java83 …TypeReference<NullContentFail<List<Integer>>> typeRef = new TypeReference<NullContentFail<List<Int… in testFailOnNullWithCollections() local
87 typeRef); in testFailOnNullWithCollections()
97 MAPPER.readValue(JSON, typeRef); in testFailOnNullWithCollections()
/external/desugar/java/com/google/devtools/build/android/desugar/
DInterfaceDesugaring.java523 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
524 AnnotationVisitor dest = super.visitTypeAnnotation(typeRef, typePath, desc, visible); in visitTypeAnnotation()
526 annotationOnlyDest.visitTypeAnnotation(typeRef, typePath, desc, visible); in visitTypeAnnotation()
DJava7Compatibility.java235 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
/external/llvm-project/mlir/lib/CAPI/IR/
DBuiltinTypes.cpp292 ArrayRef<Type> typeRef = unwrapList(numElements, elements, types); in mlirTupleTypeGet() local
293 return wrap(TupleType::get(typeRef, unwrap(ctx))); in mlirTupleTypeGet()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java719 public JavaType constructType(TypeReference<?> typeRef) in constructType() argument
722 return _fromAny(null, typeRef.getType(), EMPTY_BINDINGS); in constructType()
/external/turbine/javatests/com/google/turbine/lower/
DLowerTest.java356 int typeRef, TypePath typePath, String desc, boolean visible) { in typePath()
DIntegrationTestSupport.java266 .thenComparing(a -> String.valueOf(a.typeRef)) in sortTypeAnnotations()