Home
last modified time | relevance | path

Searched refs:elementType (Results 1 – 25 of 43) sorted by relevance

12

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DHTMLSchema.java35 elementType("<pcdata>", M_EMPTY, M_PCDATA, 0); in HTMLSchema()
36 elementType("<root>", M_ROOT, M_EMPTY, 0); in HTMLSchema()
37 elementType("a", M_PCDATA|M_NOLINK, M_INLINE, 0); in HTMLSchema()
38 elementType("abbr", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART); in HTMLSchema()
39 elementType("acronym", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART); in HTMLSchema()
40 elementType("address", M_PCDATA|M_INLINE|M_P, M_BLOCK, 0); in HTMLSchema()
41 elementType("applet", M_PCDATA|M_PARAM|M_INLINE|M_BLOCK, M_INLINE|M_NOLINK, 0); in HTMLSchema()
42 elementType("area", M_EMPTY, M_AREA, 0); in HTMLSchema()
43 elementType("b", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART); in HTMLSchema()
44 elementType("base", M_EMPTY, M_HEAD, 0); in HTMLSchema()
[all …]
DSchema.java54 public void elementType(String name, int model, int memberOf, int flags) { in elementType() method in Schema
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DSafeArrayList.java87 private Class<E> elementType; field in SafeArrayList
92 public SafeArrayList(Class<E> elementType) { in SafeArrayList() argument
93 this.elementType = elementType; in SafeArrayList()
96 public SafeArrayList(Class<E> elementType, Collection<? extends E> c) { in SafeArrayList() argument
97 this.elementType = elementType; in SafeArrayList()
106 return createArray(elementType, size); in createArray()
/external/clang/utils/ABITest/
DTypeGen.py113 def __init__(self, index, isVector, elementType, size): argument
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): argument
154 self.elementType = elementType
157 return '_Complex (%s)'%(self.elementType)
[all …]
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=outp…
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,in…
333 …self.checkTypeValues('(__imag %s)'%nameLHS, '(__imag %s)'%nameRHS, t.elementType, output=output,in…
339 self.checkTypeValues('((%s*) &%s)[%d]'%(t.elementType,nameLHS,i),
340 '((%s*) &%s)[%d]'%(t.elementType,nameRHS,i),
[all …]
/external/javassist/sample/vector/
DVectorAssistant.java61 CtClass elementType = pool.get(args[0]); in assist() local
62 if (elementType.isPrimitive()) in assist()
63 subclass = makeSubclass2(pool, elementType); in assist()
65 subclass = makeSubclass(pool, elementType); in assist()
/external/skia/src/animator/
DSkDisplayable.cpp100 SkDisplayTypes elementType; in deepCopy() local
103 elementType = dispArray->values.getType(); in deepCopy()
105 elementType = info->arrayType(); in deepCopy()
106 size_t elementSize = SkMemberInfo::GetSize(elementType); in deepCopy()
190 SkDisplayTypes elementType; in dumpAttrs() local
193 elementType = dispArray->values.getType(); in dumpAttrs()
195 elementType = info->arrayType(); in dumpAttrs()
200 switch (elementType) { in dumpAttrs()
/external/chromium_org/third_party/skia/src/animator/
DSkDisplayable.cpp100 SkDisplayTypes elementType; in deepCopy() local
103 elementType = dispArray->values.getType(); in deepCopy()
105 elementType = info->arrayType(); in deepCopy()
106 size_t elementSize = SkMemberInfo::GetSize(elementType); in deepCopy()
190 SkDisplayTypes elementType; in dumpAttrs() local
193 elementType = dispArray->values.getType(); in dumpAttrs()
195 elementType = info->arrayType(); in dumpAttrs()
200 switch (elementType) { in dumpAttrs()
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
DSDL_sysjoystick.c287 long elementType, usagePage, usage; in HIDAddElement() local
293 if ((refElementType) && (CFNumberGetValue (refElementType, kCFNumberLongType, &elementType))) in HIDAddElement()
296 …if ((elementType == kIOHIDElementTypeInput_Misc) || (elementType == kIOHIDElementTypeInput_Button)… in HIDAddElement()
297 (elementType == kIOHIDElementTypeInput_Axis)) in HIDAddElement()
348 else if (kIOHIDElementTypeCollection == elementType) in HIDAddElement()
/external/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java421 public static String getArrayType(String elementType) { in getArrayType() argument
422 if (elementType.charAt(0) == '[') in getArrayType()
423 return "[" + elementType; in getArrayType()
425 return "[L" + elementType.replace('.', '/') + ";"; in getArrayType()
/external/chromium_org/chrome/browser/resources/instant/
Dinstant.js32 function createElementWithClass(elementType, className) { argument
33 var element = document.createElement(elementType);
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp438 SVal StoreManager::getLValueElement(QualType elementType, NonLoc Offset, in getLValueElement() argument
466 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset, in getLValueElement()
485 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset, in getLValueElement()
499 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR, in getLValueElement()
DSimpleSValBuilder.cpp884 QualType elementType; in evalBinOpLN() local
891 elementType = elemReg->getElementType(); in evalBinOpLN()
897 elementType = resultTy->getPointeeType(); in evalBinOpLN()
901 return loc::MemRegionVal(MemMgr.getElementRegion(elementType, *indexV, in evalBinOpLN()
/external/clang/lib/CodeGen/
DCGCXXABI.cpp151 CharUnits CGCXXABI::getArrayCookieSizeImpl(QualType elementType) { in getArrayCookieSizeImpl() argument
167 QualType elementType) { in requiresArrayCookie() argument
173 return elementType.isDestructedType(); in requiresArrayCookie()
DCGDecl.cpp949 QualType elementType; in EmitAutoVarAlloca() local
950 llvm::tie(elementCount, elementType) = getVLASize(Ty); in EmitAutoVarAlloca()
952 llvm::Type *llvmTy = ConvertTypeForMem(elementType); in EmitAutoVarAlloca()
1501 QualType elementType, in RegularPartialArrayDestroy() argument
1504 ElementType(elementType), Destroyer(destroyer) {} in RegularPartialArrayDestroy()
1523 QualType elementType, in IrregularPartialArrayDestroy() argument
1526 ElementType(elementType), Destroyer(destroyer) {} in IrregularPartialArrayDestroy()
1544 QualType elementType, in pushIrregularPartialArrayCleanup() argument
1548 elementType, destroyer); in pushIrregularPartialArrayCleanup()
1559 QualType elementType, in pushRegularPartialArrayCleanup() argument
[all …]
DCGExprAgg.cpp87 QualType elementType, InitListExpr *E);
375 QualType elementType, InitListExpr *E) { in EmitArrayInit() argument
391 QualType::DestructionKind dtorKind = elementType.isDestructedType(); in EmitArrayInit()
403 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType, in EmitArrayInit()
433 LValue elementLV = CGF.MakeAddrLValue(element, elementType); in EmitArrayInit()
452 CGF.getTypes().isZeroInitializable(elementType))) { in EmitArrayInit()
478 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType); in EmitArrayInit()
1104 QualType elementType = in VisitInitListExpr() local
1112 EmitArrayInit(Dest.getAddr(), AType, elementType, E); in VisitInitListExpr()
DItaniumCXXABI.cpp156 CharUnits getArrayCookieSizeImpl(QualType elementType);
196 CharUnits getArrayCookieSizeImpl(QualType elementType);
926 CharUnits ItaniumCXXABI::getArrayCookieSizeImpl(QualType elementType) { in getArrayCookieSizeImpl() argument
930 CGM.getContext().getTypeAlignInChars(elementType)); in getArrayCookieSizeImpl()
988 CharUnits ARMCXXABI::getArrayCookieSizeImpl(QualType elementType) { in getArrayCookieSizeImpl() argument
998 CGM.getContext().getTypeAlignInChars(elementType)); in getArrayCookieSizeImpl()
1005 QualType elementType) { in InitializeArrayCookie() argument
1017 getContext().getTypeSizeInChars(elementType).getQuantity()); in InitializeArrayCookie()
1026 CharUnits cookieSize = ARMCXXABI::getArrayCookieSizeImpl(elementType); in InitializeArrayCookie()
DCGExprCXX.cpp841 QualType elementType, in EmitNewArrayInitializer() argument
856 QualType::DestructionKind dtorKind = elementType.isDestructedType(); in EmitNewArrayInitializer()
871 pushIrregularPartialArrayCleanup(beginPtr, endOfInit, elementType, in EmitNewArrayInitializer()
881 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), elementType, explicitPtr); in EmitNewArrayInitializer()
926 pushRegularPartialArrayCleanup(beginPtr, curPtr, elementType, in EmitNewArrayInitializer()
1546 QualType elementType) { in EmitArrayDelete() argument
1550 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType, in EmitArrayDelete()
1559 numElements, elementType, in EmitArrayDelete()
1563 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) { in EmitArrayDelete()
1572 CGF.emitArrayDestroy(deletedPtr, arrayEnd, elementType, in EmitArrayDelete()
DCodeGenFunction.cpp1135 QualType elementType = arrayType->getElementType(); in emitArrayLength() local
1136 arrayType = getContext().getAsArrayType(elementType); in emitArrayLength()
1140 baseType = elementType; in emitArrayLength()
1223 QualType elementType; in getVLASize() local
1225 elementType = type->getElementType(); in getVLASize()
1237 } while ((type = getContext().getAsVariableArrayType(elementType))); in getVLASize()
1239 return std::pair<llvm::Value*,QualType>(numElements, elementType); in getVLASize()
DMicrosoftCXXABI.cpp164 bool requiresArrayCookie(const CXXDeleteExpr *expr, QualType elementType);
567 QualType elementType) { in requiresArrayCookie() argument
570 return elementType.isDestructedType(); in requiresArrayCookie()
600 QualType elementType) { in InitializeArrayCookie() argument
604 CharUnits cookieSize = getArrayCookieSizeImpl(elementType); in InitializeArrayCookie()
/external/llvm/lib/IR/
DType.cpp683 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) { in get() argument
684 Type *ElementType = const_cast<Type*>(elementType); in get()
710 VectorType *VectorType::get(Type *elementType, unsigned NumElements) { in get() argument
711 Type *ElementType = const_cast<Type*>(elementType); in get()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DMemRegion.h1014 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg) in ElementRegion() argument
1016 ElementType(elementType), Index(Idx) { in ElementRegion()
1022 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1214 const ElementRegion *getElementRegion(QualType elementType, NonLoc Idx,
DStore.h102 virtual SVal getLValueElement(QualType elementType, NonLoc offset, SVal Base);
/external/expat/lib/
Dxmlparse.c2703 ELEMENT_TYPE *elementType; in storeAtts() local
2716 elementType = (ELEMENT_TYPE *)lookup(parser, &dtd->elementTypes, tagNamePtr->str,0); in storeAtts()
2717 if (!elementType) { in storeAtts()
2721 elementType = (ELEMENT_TYPE *)lookup(parser, &dtd->elementTypes, name, in storeAtts()
2723 if (!elementType) in storeAtts()
2725 if (ns && !setElementTypePrefix(parser, elementType)) in storeAtts()
2728 nDefaultAtts = elementType->nDefaultAtts; in storeAtts()
2792 if (attId == elementType->defaultAtts[j].id) { in storeAtts()
2793 isCdata = elementType->defaultAtts[j].isCdata; in storeAtts()
2839 if (elementType->idAtt && (elementType->idAtt->name)[-1]) { in storeAtts()
[all …]
/external/chromium_org/third_party/angle/src/compiler/
DParseContext.cpp1063 TType elementType = *type; in addConstructor() local
1065 elementType.clearArrayness(); in addConstructor()
1081 newNode = constructStruct(node, &elementType, 1, node->getLine(), false); in addConstructor()
1112 newNode = constructStruct(*p, &elementType, paramCount+1, node->getLine(), true); in addConstructor()

12