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

123

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DArrayProto.java47 protected final String elementType; field in class:ArrayProto
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) { argument
148 return BRACKETS.substring(0, dimensions) + elementType;
[all...]
/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/tagsoup/src/org/ccil/cowan/tagsoup/
H A DSchema.java54 public void elementType(String name, int model, int memberOf, int flags) { method in class:Schema
/external/deqp/framework/opengl/
H A DgluVarType.cpp48 VarType::VarType (const VarType& elementType, int arraySize) argument
53 m_data.array.elementType = new VarType(elementType);
65 delete m_data.array.elementType;
74 delete m_data.array.elementType;
81 m_data.array.elementType = new VarType(*other.m_data.array.elementType);
95 case TYPE_ARRAY: return m_data.array.elementType->getScalarSize()*m_data.array.size;
123 return *m_data.array.elementType == *other.m_data.array.elementType
[all...]
H A DgluVarType.hpp54 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; member in struct:glu::VarType::Data::__anon19759
114 array.elementType = DE_NULL;
/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);
H A DglsUniformBlockCase.hpp77 VarType (const VarType& elementType, int arraySize);
88 const VarType& getElementType (void) const { return *m_data.array.elementType; }
112 VarType* elementType; member in struct:deqp::gls::ub::VarType::Data::__anon20419
119 array.elementType = DE_NULL;
H A DglsLifetimeTests.hpp224 Type& elementType, Type& containerType)
226 , m_elementType (elementType)
285 Type& elementType, Type& containerType)
286 : Attacher (ctx, elementType, containerType) {}
310 TextureFboAttacher (const Context& ctx, Type& elementType, Type& containerType) argument
311 : FboAttacher (ctx, elementType, containerType) {}
322 RboFboAttacher (const Context& ctx, Type& elementType, Type& containerType) argument
323 : FboAttacher (ctx, elementType, containerType) {}
335 Type& elementType, Type& containerType)
336 : Attacher (ctx, elementType, containerTyp
223 Attacher(const Context& ctx, Type& elementType, Type& containerType) argument
284 FboAttacher(const Context& ctx, Type& elementType, Type& containerType) argument
334 ShaderProgramAttacher(const Context& ctx, Type& elementType, Type& containerType) argument
[all...]
/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/StaticAnalyzer/Core/
H A DStore.cpp204 // ElementRegion (with elementType == PointeeTy) directly on top of
438 SVal StoreManager::getLValueElement(QualType elementType, NonLoc Offset, argument
466 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
485 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
499 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR,
H A DSimpleSValBuilder.cpp904 QualType elementType; local
911 elementType = elemReg->getElementType();
917 elementType = resultTy->getPointeeType();
921 return loc::MemRegionVal(MemMgr.getElementRegion(elementType, *indexV,
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayable.cpp100 SkDisplayTypes elementType; local
103 elementType = dispArray->values.getType();
105 elementType = info->arrayType();
106 size_t elementSize = SkMemberInfo::GetSize(elementType);
190 SkDisplayTypes elementType; local
193 elementType = dispArray->values.getType();
195 elementType = info->arrayType();
200 switch (elementType) {
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp185 CharUnits CGCXXABI::getArrayCookieSizeImpl(QualType elementType) { argument
201 QualType elementType) {
207 return elementType.isDestructedType();
200 requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType) argument
/external/deqp/modules/gles3/functional/
H A Des3fLifetimeTests.cpp210 BufferVAOAttacher (lt::Context& ctx, Type& elementType, argument
212 : Attacher (ctx, elementType, varrType)
/external/guava/guava/src/com/google/common/collect/
H A DSets.java123 Class<E> elementType) {
128 * type. This means that, when iterable is null but elementType is not,
134 * elementType, the problem argument, is harmful, while checking iterable,
138 EnumSet<E> set = EnumSet.noneOf(elementType);
122 newEnumSet(Iterable<E> iterable, Class<E> elementType) argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSets.java120 Class<E> elementType) {
125 * type. This means that, when iterable is null but elementType is not,
131 * elementType, the problem argument, is harmful, while checking iterable,
135 EnumSet<E> set = EnumSet.noneOf(elementType);
119 newEnumSet(Iterable<E> iterable, Class<E> elementType) argument
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
H A DSDL_sysjoystick.c287 long elementType, usagePage, usage; local
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/skia/src/animator/
H A DSkDisplayable.cpp100 SkDisplayTypes elementType; local
103 elementType = dispArray->values.getType();
105 elementType = info->arrayType();
106 size_t elementSize = SkMemberInfo::GetSize(elementType);
190 SkDisplayTypes elementType; local
193 elementType = dispArray->values.getType();
195 elementType = info->arrayType();
200 switch (elementType) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DBrowserAccessibilityManager.java201 String elementType = arguments.getString(
203 if (elementType == null)
205 elementType = elementType.toUpperCase(Locale.US);
206 return jumpToElementType(elementType, true);
211 String elementType = arguments.getString(
213 if (elementType == null)
215 elementType = elementType.toUpperCase(Locale.US);
216 return jumpToElementType(elementType, fals
280 jumpToElementType(String elementType, boolean forwards) argument
747 nativeFindElementType(long nativeBrowserAccessibilityManagerAndroid, int startId, String elementType, boolean forwards) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drestsnew.cpp965 UResType elementType=tagelement.getType(); local
966 CONFIRM_EQ(elementType, (int32_t)URES_STRING);
/external/deqp/modules/gles31/functional/
H A Des31fSSBOLayoutTests.cpp222 const glu::VarType elementType = generateType(rnd, typeDepth, childArrayOk, false); local
223 return glu::VarType(elementType, glu::VarType::UNSIZED_ARRAY);
251 const glu::VarType elementType = generateType(rnd, typeDepth, childArrayOk, false); local
253 return glu::VarType(elementType, arrayLength);
329 BlockBasicUnsizedArrayCase (Context& context, const char* name, const char* description, const VarType& elementType, int arraySize, deUint32 layoutFlags) argument
333 block.addMember(BufferVar("var", VarType(elementType, VarType::UNSIZED_ARRAY), ACCESS_READ|ACCESS_WRITE));
/external/icu/icu4c/source/test/intltest/
H A Drestsnew.cpp965 UResType elementType=tagelement.getType(); local
966 CONFIRM_EQ(elementType, (int32_t)URES_STRING);

Completed in 981 milliseconds

123