/external/llvm/include/llvm/ADT/ |
D | SparseBitVector.h | 292 ElementList Elements; 298 if (Elements.empty()) { 299 CurrElementIter = Elements.begin(); 300 return Elements.begin(); 304 if (CurrElementIter == Elements.end()) 313 while (ElementIter != Elements.begin() 317 while (ElementIter != Elements.end() && 349 if (BitVector->Elements.empty()) { 353 Iter = BitVector->Elements.begin(); 381 if (Iter == BitVector->Elements.end()) { [all …]
|
D | IntervalMap.h | 404 IdxPair distribute(unsigned Nodes, unsigned Elements, unsigned Capacity, 1971 unsigned Elements = 0; in overflow() local 1977 Offset += Elements = CurSize[Nodes] = LeftSib.size(); in overflow() 1982 Elements += CurSize[Nodes] = P.size(Level); in overflow() 1988 Elements += CurSize[Nodes] = RightSib.size(); in overflow() 1994 if (Elements + 1 > Nodes * NodeT::Capacity) { in overflow() 2006 IdxPair NewOffset = distribute(Nodes, Elements, NodeT::Capacity, in overflow()
|
/external/llvm/unittests/ADT/ |
D | SCCIteratorTest.cpp | 35 BitVector Elements; member in llvm::Graph::NodeSubset 36 NodeSubset(BitVector e) : Elements(e) {} in NodeSubset() 39 NodeSubset() : Elements(0) { in NodeSubset() 43 NodeSubset(const NodeSubset &other) : Elements(other.Elements) {} in NodeSubset() 47 return other.Elements == this->Elements; in operator ==() 56 Elements |= 1U << Idx; in AddNode() 62 Elements &= ~(1U << Idx); in DeleteNode() 68 return (Elements & (1U << Idx)) != 0; in count() 73 return Elements == 0; in isEmpty() 78 return (this->Elements | other.Elements) == other.Elements; in isSubsetOf() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGObjCGNU.cpp | 1476 std::vector<llvm::Constant*> Elements; in GenerateMethodList() local 1478 Elements.clear(); in GenerateMethodList() 1485 Elements.push_back(C); in GenerateMethodList() 1486 Elements.push_back(MethodTypes[i]); in GenerateMethodList() 1489 Elements.push_back(Method); in GenerateMethodList() 1490 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodTy, Elements)); in GenerateMethodList() 1532 std::vector<llvm::Constant*> Elements; in GenerateIvarList() local 1534 Elements.clear(); in GenerateIvarList() 1535 Elements.push_back(IvarNames[i]); in GenerateIvarList() 1536 Elements.push_back(IvarTypes[i]); in GenerateIvarList() [all …]
|
D | CGExprConstant.cpp | 43 SmallVector<llvm::Constant *, 32> Elements; member in __anon89e99b390111::ConstStructBuilder 150 Elements.push_back(InitCst); in AppendBytes() 195 assert(!Elements.empty() && "Elements can't be empty!"); in AppendBitField() 231 llvm::Value *LastElt = Elements.back(); in AppendBitField() 252 Elements.pop_back(); in AppendBitField() 257 assert(isa<llvm::UndefValue>(Elements.back()) && in AppendBitField() 258 Elements.back()->getType()->isIntegerTy(CharWidth) && in AppendBitField() 263 Elements.back() = llvm::ConstantInt::get(CGM.getLLVMContext(), Tmp); in AppendBitField() 283 Elements.push_back(llvm::ConstantInt::get(CGM.getLLVMContext(), Tmp)); in AppendBitField() 304 Elements.push_back(llvm::ConstantInt::get(CGM.getLLVMContext(), in AppendBitField() [all …]
|
D | CGDebugInfo.cpp | 406 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() local 408 ObjNode->replaceOperandWith(10, Elements); in CreateType() 683 llvm::DIArray Elements; in CreateType() local 691 Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() 699 Flags, llvm::DIType(), Elements); in CreateType() 725 Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() 729 Flags, llvm::DIType(), Elements); in CreateType() 1376 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() local 1381 FwdDeclNode->replaceOperandWith(10, Elements); in CreateType() 1383 FwdDeclNode->replaceOperandWith(10, Elements); in CreateType() [all …]
|
D | CodeGenModule.cpp | 2484 SmallVector<uint16_t, 32> Elements; in GetConstantArrayFromStringLiteral() local 2485 Elements.reserve(NumElements); in GetConstantArrayFromStringLiteral() 2488 Elements.push_back(E->getCodeUnit(i)); in GetConstantArrayFromStringLiteral() 2489 Elements.resize(NumElements); in GetConstantArrayFromStringLiteral() 2490 return llvm::ConstantDataArray::get(VMContext, Elements); in GetConstantArrayFromStringLiteral() 2494 SmallVector<uint32_t, 32> Elements; in GetConstantArrayFromStringLiteral() local 2495 Elements.reserve(NumElements); in GetConstantArrayFromStringLiteral() 2498 Elements.push_back(E->getCodeUnit(i)); in GetConstantArrayFromStringLiteral() 2499 Elements.resize(NumElements); in GetConstantArrayFromStringLiteral() 2500 return llvm::ConstantDataArray::get(VMContext, Elements); in GetConstantArrayFromStringLiteral()
|
/external/llvm/lib/Support/ |
D | IntervalMap.cpp | 120 IdxPair distribute(unsigned Nodes, unsigned Elements, unsigned Capacity, in distribute() argument 123 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements"); in distribute() 124 assert(Position <= Elements && "Invalid position"); in distribute() 129 const unsigned PerNode = (Elements + Grow) / Nodes; in distribute() 130 const unsigned Extra = (Elements + Grow) % Nodes; in distribute() 138 assert(Sum == Elements + Grow && "Bad distribution sum"); in distribute() 153 assert(Sum == Elements && "Bad distribution sum"); in distribute()
|
/external/clang/include/clang/Analysis/ |
D | CFG.h | 342 ElementList Elements; variable 385 : Elements(C), Label(NULL), Terminator(NULL), LoopTarget(NULL), in CFGBlock() 396 CFGElement front() const { return Elements.front(); } in front() 397 CFGElement back() const { return Elements.back(); } in back() 399 iterator begin() { return Elements.begin(); } in begin() 400 iterator end() { return Elements.end(); } in end() 401 const_iterator begin() const { return Elements.begin(); } in begin() 402 const_iterator end() const { return Elements.end(); } in end() 404 reverse_iterator rbegin() { return Elements.rbegin(); } in rbegin() 405 reverse_iterator rend() { return Elements.rend(); } in rend() [all …]
|
/external/llvm/lib/IR/ |
D | Type.cpp | 426 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument 433 unsigned NumElements = Elements.size(); in setBody() 435 memcpy(Elts, Elements.data(), sizeof(Elements[0]) * NumElements); in setBody() 518 StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements, in create() argument 521 ST->setBody(Elements, isPacked); in create() 525 StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements) { in create() argument 526 return create(Context, Elements, StringRef()); in create() 533 StructType *StructType::create(ArrayRef<Type*> Elements, StringRef Name, in create() argument 535 assert(!Elements.empty() && in create() 537 return create(Elements[0]->getContext(), Elements, Name, isPacked); in create() [all …]
|
D | DIBuilder.cpp | 485 DIType DerivedFrom, DIArray Elements, in createClassType() argument 502 Elements, in createClassType() 519 DIArray Elements, in createStructType() argument 534 Elements, in createStructType() 547 uint64_t SizeInBits, uint64_t AlignInBits, unsigned Flags, DIArray Elements, in createUnionType() argument 561 Elements, in createUnionType() 594 uint64_t SizeInBits, uint64_t AlignInBits, DIArray Elements, in createEnumerationType() argument 608 Elements, in createEnumerationType() 779 DIArray DIBuilder::getOrCreateArray(ArrayRef<Value *> Elements) { in getOrCreateArray() argument 780 if (Elements.empty()) { in getOrCreateArray() [all …]
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 1645 Subtrees, Elements: IList<IANTLRInterface>; 1651 Elements := Subtrees; 1652 CheckEquals('[foo, big]', TCollectionUtils.ListToString(Elements)); 1698 Elements: IList<IANTLRInterface>; 1704 Elements := TList<IANTLRInterface>.Create; 1705 Visitor := TRecordAllElementsVisitor.Create(Elements); 1707 CheckEquals('[B]' ,TCollectionUtils.ListToString(Elements)); 1715 Elements: IList<IANTLRInterface>; 1721 Elements := TList<IANTLRInterface>.Create; 1722 Visitor := TRecordAllElementsVisitor.Create(Elements); [all …]
|
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 215 static StructType *create(ArrayRef<Type*> Elements, 218 static StructType *create(ArrayRef<Type*> Elements); 220 ArrayRef<Type*> Elements, 223 static StructType *create(LLVMContext &Context, ArrayRef<Type*> Elements); 228 static StructType *get(LLVMContext &Context, ArrayRef<Type*> Elements, 268 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRRewriteRuleElementStream.h | 33 } Elements; typedef 40 Elements elements; 49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRRewriteRuleElementStream.h | 33 } Elements; typedef 40 Elements elements; 49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRRewriteRuleElementStream.h | 33 } Elements; typedef 40 Elements elements; 49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements;
|
/external/llvm/include/llvm/ |
D | DIBuilder.h | 272 DIArray Elements, MDNode *VTableHolder = 0, 289 DIArray Elements, unsigned RunTimeLang = 0, 305 DIArray Elements, unsigned RunTimeLang = 0); 362 uint64_t SizeInBits, uint64_t AlignInBits, DIArray Elements, 396 DIArray getOrCreateArray(ArrayRef<Value *> Elements);
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | Program.cpp | 1677 … for (unsigned int arrayIndex = 0; arrayIndex < constantDescription.Elements; arrayIndex++) in defineUniform() 1688 … std::string structIndex = (constantDescription.Elements > 1) ? ("[" + str(arrayIndex) + "]") : ""; in defineUniform() 1757 case 1: return new Uniform(GL_SAMPLER_2D, name, constantDescription.Elements); in createUniform() 1764 case 1: return new Uniform(GL_SAMPLER_CUBE, name, constantDescription.Elements); in createUniform() 1771 case 1: return new Uniform(GL_BOOL, name, constantDescription.Elements); in createUniform() 1772 case 2: return new Uniform(GL_BOOL_VEC2, name, constantDescription.Elements); in createUniform() 1773 case 3: return new Uniform(GL_BOOL_VEC3, name, constantDescription.Elements); in createUniform() 1774 case 4: return new Uniform(GL_BOOL_VEC4, name, constantDescription.Elements); in createUniform() 1781 case 1: return new Uniform(GL_INT, name, constantDescription.Elements); in createUniform() 1782 case 2: return new Uniform(GL_INT_VEC2, name, constantDescription.Elements); in createUniform() [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1485 SmallVectorImpl<Value*> &Elements, in CollectInsertionElements() argument 1499 if (ElementIndex >= Elements.size() || Elements[ElementIndex] != 0) in CollectInsertionElements() 1502 Elements[ElementIndex] = V; in CollectInsertionElements() 1515 ElementIndex, Elements, VecEltTy); in CollectInsertionElements() 1529 if (!CollectInsertionElements(Piece, ElementIndex+i, Elements, VecEltTy)) in CollectInsertionElements() 1543 Elements, VecEltTy); in CollectInsertionElements() 1550 Elements, VecEltTy); in CollectInsertionElements() 1553 Elements, VecEltTy) && in CollectInsertionElements() 1555 Elements, VecEltTy); in CollectInsertionElements() 1564 Elements, VecEltTy); in CollectInsertionElements() [all …]
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 204 SmallVector<Type*, 16> Elements; in linkDefinedTypeBodies() local 220 Elements.resize(SrcSTy->getNumElements()); in linkDefinedTypeBodies() 221 for (unsigned i = 0, e = Elements.size(); i != e; ++i) in linkDefinedTypeBodies() 222 Elements[i] = getImpl(SrcSTy->getElementType(i)); in linkDefinedTypeBodies() 224 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies() 886 SmallVector<Constant*, 16> Elements; in linkAppendingVarInit() local 887 getArrayElements(AVI.DstInit, Elements); in linkAppendingVarInit() 890 getArrayElements(SrcInit, Elements); in linkAppendingVarInit() 893 AVI.NewGV->setInitializer(ConstantArray::get(NewType, Elements)); in linkAppendingVarInit()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 884 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE() local 887 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { in constructTypeDIE() 889 DIDescriptor Enum(Elements.getElement(i)); in constructTypeDIE() 904 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE() local 905 DIDescriptor RTy = Elements.getElement(0); in constructTypeDIE() 910 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) { in constructTypeDIE() 911 DIDescriptor Ty = Elements.getElement(i); in constructTypeDIE() 937 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE() local 940 unsigned N = Elements.getNumElements(); in constructTypeDIE() 946 DIDescriptor Element = Elements.getElement(i); in constructTypeDIE() [all …]
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/ |
D | ModelMessages.properties | 12 StringArrayPropertyEditor_itemsLabel=&Elements:
|
/external/llvm/lib/TableGen/ |
D | Record.cpp | 275 std::vector<Init*> Elements; in convertValue() local 281 Elements.push_back(CI); in convertValue() 288 return ListInit::get(Elements, this); in convertValue() 637 ListInit::convertInitListSlice(const std::vector<unsigned> &Elements) const { in convertInitListSlice() 639 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { in convertInitListSlice() 640 if (Elements[i] >= getSize()) in convertInitListSlice() 642 Vals.push_back(getElement(Elements[i])); in convertInitListSlice() 1278 TypedInit::convertInitListSlice(const std::vector<unsigned> &Elements) const { in convertInitListSlice() 1282 if (Elements.size() == 1) in convertInitListSlice() 1283 return VarListElementInit::get(const_cast<TypedInit *>(this), Elements[0]); in convertInitListSlice() [all …]
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 614 ExprResult Sema::BuildObjCArrayLiteral(SourceRange SR, MultiExprArg Elements) { in BuildObjCArrayLiteral() argument 711 Expr **ElementsBuffer = Elements.data(); in BuildObjCArrayLiteral() 712 for (unsigned I = 0, N = Elements.size(); I != N; ++I) { in BuildObjCArrayLiteral() 727 ObjCArrayLiteral::Create(Context, Elements, Ty, in BuildObjCArrayLiteral() 732 ObjCDictionaryElement *Elements, in BuildObjCDictionaryLiteral() argument 878 ExprResult Key = CheckObjCCollectionLiteralElement(*this, Elements[I].Key, in BuildObjCDictionaryLiteral() 885 = CheckObjCCollectionLiteralElement(*this, Elements[I].Value, ValueT); in BuildObjCDictionaryLiteral() 889 Elements[I].Key = Key.get(); in BuildObjCDictionaryLiteral() 890 Elements[I].Value = Value.get(); in BuildObjCDictionaryLiteral() 892 if (Elements[I].EllipsisLoc.isInvalid()) in BuildObjCDictionaryLiteral() [all …]
|
/external/llvm/test/Transforms/GlobalOpt/ |
D | 2008-04-26-SROA-Global-Align.ll | 2 ; alignments. Elements 0 and 2 must be 16-byte aligned, and element
|