Searched defs:elementType (Results 1 - 25 of 92) sorted by relevance

1234

/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliCatchStatement.java50 protected SmaliCatchStatement(IElementType elementType) { argument
51 super(elementType);
H A DSmaliCompositeElement.java53 protected List<ASTNode> findChildrenByType(IElementType elementType) { argument
57 if (elementType == child.getElementType()) {
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/
H A DSmaliBaseReferenceListStub.java49 @NotNull StubElement parent, @NotNull IStubElementType elementType, @NotNull String[] smaliTypeNames) {
50 super(parent, elementType);
48 SmaliBaseReferenceListStub( @otNull StubElement parent, @NotNull IStubElementType elementType, @NotNull String[] smaliTypeNames) argument
/external/guice/core/src/com/google/inject/util/
H A DTypes.java95 * {@code elementType}.
99 public static ParameterizedType listOf(Type elementType) { argument
100 return newParameterizedType(List.class, elementType);
105 * {@code elementType}.
109 public static ParameterizedType setOf(Type elementType) { argument
110 return newParameterizedType(Set.class, elementType);
127 * {@code elementType}.
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DCoverageNodeImpl.java23 private final ElementType elementType; field in class:CoverageNodeImpl
48 * @param elementType
53 public CoverageNodeImpl(final ElementType elementType, final String name) { argument
54 this.elementType = elementType;
97 return elementType;
147 final CoverageNodeImpl copy = new CoverageNodeImpl(elementType, name);
160 sb.append(name).append(" [").append(elementType).append("]");
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DSourceNodeImpl.java32 * @param elementType
37 public SourceNodeImpl(final ElementType elementType, final String name) { argument
38 super(elementType, name);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
H A DRule.java52 * @param elementType
55 public void setElement(final ElementType elementType) { argument
56 this.element = elementType;
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
H A DBundleCheckerTest.java121 private Rule addRule(ElementType elementType) { argument
123 rule.setElement(elementType);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DPropertyInfo.java82 public PropertyInfo elementType; field in class:PropertyInfo
97 * @return Returns the elementType.
101 return elementType;
105 * @param elementType
106 * The elementType to set.
108 public void setElementType(PropertyInfo elementType) argument
110 this.elementType = elementType;
H A DSppPropertyInfo.java82 public PropertyInfo elementType; field in class:SppPropertyInfo
97 * @return Returns the elementType.
101 return elementType;
105 * @param elementType
106 * The elementType to set.
108 public void setElementType(PropertyInfo elementType) argument
110 this.elementType = elementType;
H A DSoapSerializationEnvelope.java300 protected void readVector(XmlPullParser parser, Vector v, PropertyInfo elementType) argument
320 if (elementType == null) {
321 elementType = PropertyInfo.OBJECT_TYPE;
333 v.setElementAt(read(parser, v, position, namespace, name, elementType), position);
457 readVector(parser, (Vector) obj, expected.elementType);
705 writeVectorBody(writer, (Vector) element, type.elementType);
711 protected void writeVectorBody(XmlSerializer writer, Vector vector, PropertyInfo elementType) argument
716 if (elementType == null) {
717 elementType = PropertyInfo.OBJECT_TYPE;
718 } else if (elementType instanceo
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DArrayProto.java48 protected final String elementType; field in class:ArrayProto
65 elementType = type.substring(i);
70 @Nonnull @Override public String getType() { return makeArrayType(elementType, dimensions); }
77 @Nonnull public String getElementType() { return elementType; }
85 return makeArrayType(elementType, dimensions-1);
87 return elementType;
112 TypeProto thisClass = classPath.getClass(elementType);
113 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType);
148 private static String makeArrayType(@Nonnull String elementType, int dimensions) { argument
149 return BRACKETS.substring(0, dimensions) + elementType;
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DSchema.java55 public void elementType(String name, int model, int memberOf, int flags) { method in class:Schema
/external/deqp/external/vulkancts/modules/vulkan/ubo/
H A DvktRandomUniformBlockCase.cpp186 VarType elementType = generateType(rnd, typeDepth, arraysOfArraysOk); local
187 return VarType(elementType, arrayLength);
H A DvktUniformBlockCase.hpp72 VarType (const VarType& elementType, int arraySize);
83 const VarType& getElementType (void) const { return *m_data.array.elementType; }
107 VarType* elementType; member in struct:vkt::ubo::VarType::Data::__anon3758
114 array.elementType = DE_NULL;
/external/deqp/framework/opengl/
H A DgluVarType.cpp49 VarType::VarType (const VarType& elementType, int arraySize) argument
54 m_data.array.elementType = new VarType(elementType);
66 delete m_data.array.elementType;
75 delete m_data.array.elementType;
82 m_data.array.elementType = new VarType(*other.m_data.array.elementType);
96 case TYPE_ARRAY: return m_data.array.elementType->getScalarSize()*m_data.array.size;
124 return *m_data.array.elementType == *other.m_data.array.elementType
[all...]
/external/deqp/framework/randomshaders/
H A DrsgVariableType.hpp133 VariableType (Type baseType, const VariableType& elementType, int numElements);
196 inline VariableType::VariableType (Type baseType, const VariableType& elementType, int numElements) argument
201 , m_elementType (new VariableType(elementType))
/external/deqp/modules/glshared/
H A DglsRandomUniformBlockCase.cpp193 VarType elementType = generateType(rnd, typeDepth, arraysOfArraysOk); local
194 return VarType(elementType, arrayLength);
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java421 public static String getArrayType(String elementType) { argument
422 if (elementType.charAt(0) == '[')
423 return "[" + elementType;
425 return "[L" + elementType.replace('.', '/') + ";";
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp199 CharUnits CGCXXABI::getArrayCookieSizeImpl(QualType elementType) { argument
215 QualType elementType) {
221 return elementType.isDestructedType();
214 requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp193 // ElementRegion (with elementType == PointeeTy) directly on top of
427 SVal StoreManager::getLValueElement(QualType elementType, NonLoc Offset, argument
455 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
474 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
488 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR,
H A DSimpleSValBuilder.cpp904 QualType elementType; local
911 elementType = elemReg->getElementType();
918 elementType = resultTy->getPointeeType();
922 return loc::MemRegionVal(MemMgr.getElementRegion(elementType, *indexV,
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSets.java140 Class<E> elementType) {
141 EnumSet<E> set = EnumSet.noneOf(elementType);
139 newEnumSet(Iterable<E> iterable, Class<E> elementType) argument
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
H A DMultibinder.java193 static <T> TypeLiteral<Set<T>> setOf(TypeLiteral<T> elementType) { argument
194 Type type = Types.setOf(elementType.getType());
200 TypeLiteral<T> elementType) {
201 Type providerType = Types.providerOf(elementType.getType());
208 TypeLiteral<T> elementType) {
210 Types.newParameterizedType(javax.inject.Provider.class, elementType.getType());
262 private final TypeLiteral<T> elementType; field in class:Multibinder.RealMultibinder
279 private RealMultibinder(Binder binder, TypeLiteral<T> elementType, Key<Set<T>> setKey) { argument
281 this.elementType = checkNotNull(elementType, "elementTyp
199 collectionOfProvidersOf( TypeLiteral<T> elementType) argument
207 collectionOfJavaxProvidersOf( TypeLiteral<T> elementType) argument
[all...]
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
H A DSpiUtils.java411 * @param elementType the TypeLiteral of the element
418 static <T> void assertSetVisitor(Key<Set<T>> setKey, TypeLiteral<?> elementType, argument
426 setInjectorTest(setKey, elementType, modules, allowDuplicates,
431 setModuleTest(setKey, elementType, modules, allowDuplicates,
437 private static <T> void setInjectorTest(Key<Set<T>> setKey, TypeLiteral<?> elementType, argument
440 Key<?> collectionOfProvidersKey = setKey.ofType(collectionOfProvidersOf(elementType));
442 setKey.ofType(collectionOfJavaxProvidersOf(elementType));
449 assertEquals(elementType, multibinder.getElementTypeLiteral());
526 private static <T> void setModuleTest(Key<Set<T>> setKey, TypeLiteral<?> elementType, argument
529 Key<?> collectionOfProvidersKey = setKey.ofType(collectionOfProvidersOf(elementType));
[all...]

Completed in 4255 milliseconds

1234