Home
last modified time | relevance | path

Searched refs:elemT (Results 1 – 3 of 3) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DCollectionType.java22 JavaType superClass, JavaType[] superInts, JavaType elemT, in CollectionType() argument
25 super(collT, bindings, superClass, superInts, elemT, valueHandler, typeHandler, asStatic); in CollectionType()
31 protected CollectionType(TypeBase base, JavaType elemT) { in CollectionType() argument
32 super(base, elemT); in CollectionType()
39 JavaType superClass, JavaType[] superInts, JavaType elemT) { in construct() argument
40 return new CollectionType(rawType, bindings, superClass, superInts, elemT, in construct()
48 public static CollectionType construct(Class<?> rawType, JavaType elemT) { in construct() argument
56 bindings = TypeBindings.create(rawType, elemT); in construct()
60 _bogusSuperClass(rawType), null, elemT, in construct()
DCollectionLikeType.java31 JavaType superClass, JavaType[] superInts, JavaType elemT, in CollectionLikeType() argument
35 elemT.hashCode(), valueHandler, typeHandler, asStatic); in CollectionLikeType()
36 _elementType = elemT; in CollectionLikeType()
42 protected CollectionLikeType(TypeBase base, JavaType elemT) in CollectionLikeType() argument
45 _elementType = elemT; in CollectionLikeType()
52 JavaType superClass, JavaType[] superInts, JavaType elemT) { in construct() argument
53 return new CollectionLikeType(rawType, bindings, superClass, superInts, elemT, in construct()
62 public static CollectionLikeType construct(Class<?> rawType, JavaType elemT) { in construct() argument
70 bindings = TypeBindings.create(rawType, elemT); in construct()
74 elemT, null, null, false); in construct()
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp1628 QualType elemT = R->getElementType(); in getBindingForElement() local
1629 if (elemT->isScalarType()) { in getBindingForElement()
1630 if (Ctx.getTypeSizeInChars(baseT) >= Ctx.getTypeSizeInChars(elemT)) { in getBindingForElement()