/external/llvm-project/mlir/include/mlir/IR/ |
D | FunctionSupport.h | 581 auto newAttr = attributes.getDictionary( in setArgAttrs() local 584 newAttr); in setArgAttrs() 642 auto newAttr = attributes.getDictionary(this->getOperation()->getContext()); in setResultAttrs() local 644 newAttr); in setResultAttrs()
|
/external/clang/include/clang/Sema/ |
D | AttributeList.h | 730 void add(AttributeList *newAttr) { in add() argument 731 assert(newAttr); in add() 732 assert(newAttr->getNext() == nullptr); in add() 733 newAttr->setNext(list); in add() 734 list = newAttr; in add()
|
/external/fonttools/Tests/misc/ |
D | vector_test.py | 42 v.newAttr = 12
|
/external/fonttools/Lib/fontTools/ufoLib/ |
D | __init__.py | 2192 newAttr, newValue = convertFontInfoValueForAttributeFromVersion1ToVersion2(attr, value) 2194 if newAttr not in fontInfoAttributesVersion2: 2200 converted[newAttr] = newValue 2206 newAttr, newValue = convertFontInfoValueForAttributeFromVersion2ToVersion1(attr, value) 2208 if newAttr not in fontInfoAttributesVersion1: 2214 converted[newAttr] = newValue 2293 newAttr, newValue = convertFontInfoValueForAttributeFromVersion3ToVersion2(attr, value) 2294 if newAttr not in fontInfoAttributesVersion2: 2296 converted[newAttr] = newValue
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | UnImplNode.java | 307 public Attr setAttributeNode(Attr newAttr) throws DOMException in setAttributeNode() argument 443 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException in setAttributeNodeNS() argument
|
/external/llvm-project/clang/include/clang/Sema/ |
D | ParsedAttr.h | 828 void addAtEnd(ParsedAttr *newAttr) { in addAtEnd() argument 829 assert(newAttr); in addAtEnd() 830 AttrList.push_back(newAttr); in addAtEnd()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeProxy.java | 1149 public final Attr setAttributeNode(Attr newAttr) throws DOMException in setAttributeNode() argument 1257 public final Attr setAttributeNodeNS(Attr newAttr) throws DOMException in setAttributeNodeNS() argument
|
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/ |
D | PDLToPDLInterp.cpp | 480 Value newAttr = builder.create<pdl_interp::CreateAttributeOp>( in generateRewriter() local 482 rewriteValues[attrOp] = newAttr; in generateRewriter()
|
/external/llvm-project/mlir/lib/IR/ |
D | SymbolTable.cpp | 860 SymbolRefAttr newAttr = generateNewRefAttr(scope.symbol, newLeafAttr); in replaceAllSymbolUsesImpl() local 870 SymbolRefAttr replacementRef = newAttr; in replaceAllSymbolUsesImpl()
|
/external/python/cpython3/Doc/library/ |
D | xml.dom.rst | 662 .. method:: Element.setAttributeNode(newAttr) 666 old attribute node will be returned. If *newAttr* is already in use, 670 .. method:: Element.setAttributeNodeNS(newAttr) 674 If a replacement occurs, the old attribute node will be returned. If *newAttr*
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.rst | 677 .. method:: Element.setAttributeNode(newAttr) 681 old attribute node will be returned. If *newAttr* is already in use, 685 .. method:: Element.setAttributeNodeNS(newAttr) 689 If a replacement occurs, the old attribute node will be returned. If *newAttr*
|
/external/llvm-project/mlir/include/mlir/Dialect/Linalg/IR/ |
D | LinalgStructuredOpsInterface.td | 914 auto newAttr = attr.mapValues(IntegerType::get(32, getContext()), 916 getOperation()->setAttr("operand_segment_sizes", newAttr);
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 1606 newAttr = self.CHARSET_RE.sub(rewrite, contentType) 1608 newAttr)
|
/external/llvm-project/mlir/lib/Dialect/Vector/ |
D | VectorOps.cpp | 1842 auto newAttr = DenseElementsAttr::get( in matchAndRewrite() local 1845 rewriter.replaceOpWithNewOp<ConstantOp>(extractStridedSliceOp, newAttr); in matchAndRewrite() 2655 auto newAttr = DenseElementsAttr::get( in matchAndRewrite() local 2657 rewriter.replaceOpWithNewOp<ConstantOp>(shapeCastOp, newAttr); in matchAndRewrite()
|
/external/llvm-project/mlir/lib/Dialect/Linalg/IR/ |
D | LinalgOps.cpp | 1004 DenseElementsAttr newAttr = DenseElementsAttr::getFromRawBuffer( in matchAndRewrite() local 1006 rewriter.replaceOpWithNewOp<ConstantOp>(reshapeOp, newAttr); in matchAndRewrite()
|
/external/clang/lib/Sema/ |
D | SemaDeclAttr.cpp | 2313 clang::Attr *newAttr; in handleVisibilityAttr() local 2315 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(), in handleVisibilityAttr() 2319 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index); in handleVisibilityAttr() 2321 if (newAttr) in handleVisibilityAttr() 2322 D->addAttr(newAttr); in handleVisibilityAttr()
|
D | SemaDecl.cpp | 2549 InheritableAttr *newAttr = in mergeParamDeclAttributes() local 2551 newAttr->setInherited(true); in mergeParamDeclAttributes() 2552 newDecl->addAttr(newAttr); in mergeParamDeclAttributes()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaDeclAttr.cpp | 2610 Attr *newAttr; in handleVisibilityAttr() local 2612 newAttr = S.mergeTypeVisibilityAttr( in handleVisibilityAttr() 2615 newAttr = S.mergeVisibilityAttr(D, AL, type); in handleVisibilityAttr() 2617 if (newAttr) in handleVisibilityAttr() 2618 D->addAttr(newAttr); in handleVisibilityAttr()
|
D | TreeTransform.h | 6658 const Attr *newAttr = oldAttr ? getDerived().TransformAttr(oldAttr) : nullptr; in TransformAttributedType() local 6659 if (oldAttr && !newAttr) in TransformAttributedType() 6691 newTL.setAttr(newAttr); in TransformAttributedType()
|
D | SemaDecl.cpp | 3001 InheritableAttr *newAttr = in mergeParamDeclAttributes() local 3003 newAttr->setInherited(true); in mergeParamDeclAttributes() 3004 newDecl->addAttr(newAttr); in mergeParamDeclAttributes()
|