Searched refs:elementType (Results 1 - 25 of 83) sorted by relevance

1234

/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...]
H A DAttributeContainer.java21 attributeInfo.elementType = p.elementType;
/external/javassist/sample/vector/
H A DVectorAssistant.java61 CtClass elementType = pool.get(args[0]);
62 if (elementType.isPrimitive())
63 subclass = makeSubclass2(pool, elementType);
65 subclass = makeSubclass(pool, elementType);
/external/chromium_org/mojo/public/js/bindings/
H A Dvalidator.js165 offset, elementSize, expectedElementCount, elementType, nullable) {
175 arrayOffset, elementSize, expectedElementCount, elementType);
200 function (offset, elementSize, expectedElementCount, elementType) {
212 var elementsTotalSize = (elementType === codec.PackedBool) ?
227 var nullable = isNullable(elementType);
229 if (isHandleClass(elementType))
231 if (isStringClass(elementType))
234 if (elementType instanceof codec.PointerTo)
236 elementsOffset, numElements, elementType.cls, nullable);
237 if (elementType instanceo
[all...]
/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/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLSchema.java35 elementType("<pcdata>", M_EMPTY, M_PCDATA, 0);
36 elementType("<root>", M_ROOT, M_EMPTY, 0);
37 elementType("a", M_PCDATA|M_NOLINK, M_INLINE, 0);
38 elementType("abbr", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART);
39 elementType("acronym", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART);
40 elementType("address", M_PCDATA|M_INLINE|M_P, M_BLOCK, 0);
41 elementType("applet", M_PCDATA|M_PARAM|M_INLINE|M_BLOCK, M_INLINE|M_NOLINK, 0);
42 elementType("area", M_EMPTY, M_AREA, 0);
43 elementType("b", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART);
44 elementType("bas
[all...]
H A DSchema.java54 public void elementType(String name, int model, int memberOf, int flags) { method in class:Schema
/external/deqp/modules/glshared/
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...]
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;
/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/clang/utils/ABITest/
H A DTypeGen.py113 def __init__(self, index, isVector, elementType, size):
121 self.elementType = elementType
124 eltSize = self.elementType.sizeof()
132 return 'vector (%s)[%d]'%(self.elementType,self.size)
134 return '(%s)[%d]'%(self.elementType,self.size)
136 return '(%s)[]'%(self.elementType,)
139 elementName = printer.getTypeName(self.elementType)
152 def __init__(self, index, elementType):
154 self.elementType
[all...]
H A DABITestGen.py241 for t in self.getTestValues(t.elementType):
244 values = list(self.getTestValues(t.elementType))
302 self.printValueOfType(prefix, '(__real %s)'%name, t.elementType, output=output,indent=indent)
303 self.printValueOfType(prefix, '(__imag %s)'%name, t.elementType, output=output,indent=indent)
309 self.printValueOfType(prefix, '((%s*) &%s)[%d]'%(t.elementType,name,i), t.elementType, output=output,indent=indent)
311 self.printValueOfType(prefix, '%s[%d]'%(name,i), t.elementType, output=output,indent=indent)
332 self.checkTypeValues('(__real %s)'%nameLHS, '(__real %s)'%nameRHS, t.elementType, output=output,indent=indent)
333 self.checkTypeValues('(__imag %s)'%nameLHS, '(__imag %s)'%nameRHS, t.elementType, output=output,indent=indent)
339 self.checkTypeValues('((%s*) &%s)[%d]'%(t.elementType,nameLH
[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/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/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/chrome/browser/resources/instant/
H A Dinstant.js32 function createElementWithClass(elementType, className) {
33 var element = document.createElement(elementType);
/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/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/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/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,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1082 milliseconds

1234