HomeSort by relevance Sort by last modified time
    Searched defs:elementType (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /libcore/luni/src/main/java/java/util/
UnsafeArrayList.java 27 private final Class<T> elementType;
31 public UnsafeArrayList(Class<T> elementType, int initialCapacity) {
32 this.array = (T[]) Array.newInstance(elementType, initialCapacity);
33 this.elementType = elementType;
38 T[] newArray = (T[]) Array.newInstance(elementType, size * 2);
EnumSet.java 37 * @param elementType
40 * elementType}.
44 public static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType) {
45 if (!elementType.isEnum()) {
46 throw new ClassCastException(elementType.getClass().getName() + " is not an Enum");
48 E[] enums = Enum.getSharedConstants(elementType);
50 return new MiniEnumSet<E>(elementType, enums);
52 return new HugeEnumSet<E>(elementType, enums);
57 * {@code elementType}.
59 * @param elementType
    [all...]
  /external/javassist/sample/vector/
VectorAssistant.java 61 CtClass elementType = pool.get(args[0]);
62 if (elementType.isPrimitive())
63 subclass = makeSubclass2(pool, elementType);
65 subclass = makeSubclass(pool, elementType);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ArrayProto.java 47 protected final String elementType;
64 elementType = type.substring(i);
69 @Nonnull @Override public String getType() { return makeArrayType(elementType, dimensions); }
76 @Nonnull public String getElementType() { return elementType; }
84 return makeArrayType(elementType, dimensions-1);
86 return elementType;
111 TypeProto thisClass = classPath.getClass(elementType);
112 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType);
147 private static String makeArrayType(@Nonnull String elementType, int dimensions) {
148 return BRACKETS.substring(0, dimensions) + elementType;
    [all...]
  /external/deqp/modules/glshared/
glsRandomUniformBlockCase.cpp 193 VarType elementType = generateType(rnd, typeDepth, arraysOfArraysOk);
194 return VarType(elementType, arrayLength);
glsUniformBlockCase.hpp 77 VarType (const VarType& elementType, int arraySize);
88 const VarType& getElementType (void) const { return *m_data.array.elementType; }
112 VarType* elementType;
119 array.elementType = DE_NULL;
glsLifetimeTests.cpp 986 Type& elementType = attacher.getElementType();
1004 const Name element (elementType);
1016 const GLuint newId = replaceName(elementType, elementId, log());
1017 const Name newElement (elementType, newId);
1067 Type& elementType = attacher.getElementType();
1085 const Name element (elementType);
1098 const GLuint newId = replaceName(elementType, elementId, log());
1099 const Name newElement (elementType, newId);
    [all...]
glsUniformBlockCase.cpp 135 VarType::VarType (const VarType& elementType, int arraySize)
140 m_data.array.elementType = new VarType(elementType);
153 delete m_data.array.elementType;
162 delete m_data.array.elementType;
170 m_data.array.elementType = new VarType(*other.m_data.array.elementType);
1006 glu::DataType elementType = isArray ? type.getElementType().getBasicType() : type.getBasicType();
1007 const char* typeName = glu::getDataTypeName(elementType);
1030 const VarType& elementType = type.getElementType()
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 40 new HashMap(); // String -> ElementType
44 private ElementType theRoot = null;
54 public void elementType(String name, int model, int memberOf, int flags) {
55 ElementType e = new ElementType(name, model, memberOf, flags, this);
64 public ElementType rootElementType() {
78 ElementType e = getElementType(elemName);
94 ElementType child = getElementType(name);
95 ElementType parent = getElementType(parentName);
116 Get an ElementType by name
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
PropertyInfo.java 82 public PropertyInfo elementType;
97 * @return Returns the elementType.
101 return elementType;
105 * @param elementType
106 * The elementType to set.
108 public void setElementType(PropertyInfo elementType)
110 this.elementType = elementType;
SppPropertyInfo.java 82 public PropertyInfo elementType;
97 * @return Returns the elementType.
101 return elementType;
105 * @param elementType
106 * The elementType to set.
108 public void setElementType(PropertyInfo elementType)
110 this.elementType = elementType;
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationMember.java 94 protected transient Class<?> elementType;
135 elementType = Integer.class;
137 elementType = Boolean.class;
139 elementType = Character.class;
141 elementType = Float.class;
143 elementType = Double.class;
145 elementType = Long.class;
147 elementType = Short.class;
149 elementType = Byte.class;
151 elementType = type
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayable.cpp 100 SkDisplayTypes elementType;
103 elementType = dispArray->values.getType();
105 elementType = info->arrayType();
106 size_t elementSize = SkMemberInfo::GetSize(elementType);
190 SkDisplayTypes elementType;
193 elementType = dispArray->values.getType();
195 elementType = info->arrayType();
200 switch (elementType) {
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp     [all...]
  /external/skia/src/animator/
SkDisplayable.cpp 100 SkDisplayTypes elementType;
103 elementType = dispArray->values.getType();
105 elementType = info->arrayType();
106 size_t elementSize = SkMemberInfo::GetSize(elementType);
190 SkDisplayTypes elementType;
193 elementType = dispArray->values.getType();
195 elementType = info->arrayType();
200 switch (elementType) {
  /external/chromium_org/third_party/icu/source/test/intltest/
restsnew.cpp 965 UResType elementType=tagelement.getType();
966 CONFIRM_EQ(elementType, (int32_t)URES_STRING);
    [all...]
  /external/deqp/framework/opengl/
gluVarType.hpp 54 VarType (const VarType& elementType, int arraySize); //!< Array type constructor.
65 const VarType& getElementType (void) const { DE_ASSERT(isArrayType()); return *m_data.array.elementType; }
105 VarType* elementType;
114 array.elementType = DE_NULL;
  /external/icu/icu4c/source/test/intltest/
restsnew.cpp 965 UResType elementType=tagelement.getType();
966 CONFIRM_EQ(elementType, (int32_t)URES_STRING);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
SDL_sysjoystick.c 287 long elementType, usagePage, usage;
293 if ((refElementType) && (CFNumberGetValue (refElementType, kCFNumberLongType, &elementType)))
296 if ((elementType == kIOHIDElementTypeInput_Misc) || (elementType == kIOHIDElementTypeInput_Button) ||
297 (elementType == kIOHIDElementTypeInput_Axis))
348 else if (kIOHIDElementTypeCollection == elementType)
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutTests.cpp 222 const glu::VarType elementType = generateType(rnd, typeDepth, childArrayOk, false);
223 return glu::VarType(elementType, glu::VarType::UNSIZED_ARRAY);
251 const glu::VarType elementType = generateType(rnd, typeDepth, childArrayOk, false);
253 return glu::VarType(elementType, arrayLength);
329 BlockBasicUnsizedArrayCase (Context& context, const char* name, const char* description, const VarType& elementType, int arraySize, deUint32 layoutFlags)
333 block.addMember(BufferVar("var", VarType(elementType, VarType::UNSIZED_ARRAY), ACCESS_READ|ACCESS_WRITE));
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
  /external/chromium_org/third_party/angle/src/compiler/translator/
ParseContext.cpp     [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
creststn.c     [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
CodeGenFunction.cpp     [all...]

Completed in 1163 milliseconds

1 2 3 4 5