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

123

/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/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSafeArrayList.java87 private Class<E> elementType; field in class:SafeArrayList
92 public SafeArrayList(Class<E> elementType) { argument
93 this.elementType = elementType;
96 public SafeArrayList(Class<E> elementType, Collection<? extends E> c) { argument
97 this.elementType = elementType;
106 return createArray(elementType, size);
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp91 bool requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType);
107 QualType elementType) {
110 return elementType.isDestructedType();
140 QualType elementType) {
144 CharUnits cookieSize = getArrayCookieSizeImpl(elementType);
106 requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType) argument
136 InitializeArrayCookie(CodeGenFunction &CGF, llvm::Value *newPtr, llvm::Value *numElements, const CXXNewExpr *expr, QualType elementType) argument
H A DCGCXXABI.cpp153 CharUnits CGCXXABI::getArrayCookieSizeImpl(QualType elementType) { argument
169 QualType elementType) {
175 return elementType.isDestructedType();
168 requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType) argument
H A DCGExprAgg.cpp88 QualType elementType, InitListExpr *E);
383 QualType elementType, InitListExpr *E) {
389 // DestPtr is an array*. Construct an elementType* by drilling
399 QualType::DestructionKind dtorKind = elementType.isDestructedType();
411 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
447 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
467 CGF.getTypes().isZeroInitializable(elementType))) {
493 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
1013 QualType elementType =
1021 EmitArrayInit(Dest.getAddr(), AType, elementType,
382 EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType, QualType elementType, InitListExpr *E) argument
[all...]
H A DCGDecl.cpp897 QualType elementType; local
898 llvm::tie(elementCount, elementType) = getVLASize(Ty);
900 llvm::Type *llvmTy = ConvertTypeForMem(elementType);
1395 QualType elementType,
1398 ElementType(elementType), Destroyer(destroyer) {}
1417 QualType elementType,
1420 ElementType(elementType), Destroyer(destroyer) {}
1434 /// \param elementType - the immediate element type of the array;
1436 /// \param array - a value of type elementType*
1442 QualType elementType,
1394 RegularPartialArrayDestroy(llvm::Value *arrayBegin, llvm::Value *arrayEnd, QualType elementType, CodeGenFunction::Destroyer *destroyer) argument
1415 IrregularPartialArrayDestroy(llvm::Value *arrayBegin, llvm::Value *arrayEndPointer, QualType elementType, CodeGenFunction::Destroyer *destroyer) argument
1440 pushIrregularPartialArrayCleanup(llvm::Value *arrayBegin, llvm::Value *arrayEndPointer, QualType elementType, Destroyer *destroyer) argument
1459 pushRegularPartialArrayCleanup(llvm::Value *arrayBegin, llvm::Value *arrayEnd, QualType elementType, Destroyer *destroyer) argument
[all...]
H A DCGExprCXX.cpp831 QualType elementType,
846 QualType::DestructionKind dtorKind = elementType.isDestructedType();
861 pushIrregularPartialArrayCleanup(beginPtr, endOfInit, elementType,
871 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), elementType, explicitPtr);
916 pushRegularPartialArrayCleanup(beginPtr, curPtr, elementType,
1511 QualType elementType) {
1515 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1524 numElements, elementType,
1528 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1537 CGF.emitArrayDestroy(deletedPtr, arrayEnd, elementType,
830 EmitNewArrayInitializer(const CXXNewExpr *E, QualType elementType, llvm::Value *beginPtr, llvm::Value *numElements) argument
1508 EmitArrayDelete(CodeGenFunction &CGF, const CXXDeleteExpr *E, llvm::Value *deletedPtr, QualType elementType) argument
[all...]
H A DCodeGenFunction.cpp930 QualType elementType = arrayType->getElementType(); local
931 arrayType = getContext().getAsArrayType(elementType);
935 baseType = elementType;
1019 QualType elementType; local
1021 elementType = type->getElementType();
1032 } while ((type = getContext().getAsVariableArrayType(elementType)));
1034 return std::pair<llvm::Value*,QualType>(numElements, elementType);
H A DCGCXXABI.h249 virtual CharUnits getArrayCookieSizeImpl(QualType elementType);
/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/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/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/StaticAnalyzer/Core/
H A DStore.cpp203 // ElementRegion (with elementType == PointeeTy) directly on top of
300 SVal StoreManager::getLValueElement(QualType elementType, NonLoc Offset, argument
328 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
346 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
360 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR,
H A DSimpleSValBuilder.cpp910 QualType elementType; local
917 elementType = elemReg->getElementType();
923 elementType = resultTy->getPointeeType();
927 return loc::MemRegionVal(MemMgr.getElementRegion(elementType, *indexV,
/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/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 ...
H A Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h980 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg) argument
982 ElementType(elementType), Index(Idx) {
988 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1174 const ElementRegion *getElementRegion(QualType elementType, NonLoc Idx,
H A DStore.h114 virtual SVal getLValueElement(QualType elementType, NonLoc offset, SVal Base);
/external/llvm/lib/VMCore/
H A DType.cpp704 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) { argument
705 Type *ElementType = const_cast<Type*>(elementType);
731 VectorType *VectorType::get(Type *elementType, unsigned NumElements) { argument
732 Type *ElementType = const_cast<Type*>(elementType);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DParseHelper.cpp1095 TType elementType = *type; local
1097 elementType.clearArrayness();
1113 newNode = constructStruct(node, &elementType, 1, node->getLine(), false);
1144 newNode = constructStruct(*p, &elementType, paramCount+1, node->getLine(), true);

Completed in 3235 milliseconds

123