Home
last modified time | relevance | path

Searched refs:newAttr (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/mlir/include/mlir/IR/
DFunctionSupport.h581 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/
DAttributeList.h730 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/
Dvector_test.py42 v.newAttr = 12
/external/fonttools/Lib/fontTools/ufoLib/
D__init__.py2192 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/
DUnImplNode.java307 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/
DParsedAttr.h828 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/
DDTMNodeProxy.java1149 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/
DPDLToPDLInterp.cpp480 Value newAttr = builder.create<pdl_interp::CreateAttributeOp>( in generateRewriter() local
482 rewriteValues[attrOp] = newAttr; in generateRewriter()
/external/llvm-project/mlir/lib/IR/
DSymbolTable.cpp860 SymbolRefAttr newAttr = generateNewRefAttr(scope.symbol, newLeafAttr); in replaceAllSymbolUsesImpl() local
870 SymbolRefAttr replacementRef = newAttr; in replaceAllSymbolUsesImpl()
/external/python/cpython3/Doc/library/
Dxml.dom.rst662 .. 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/
Dxml.dom.rst677 .. 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/
DLinalgStructuredOpsInterface.td914 auto newAttr = attr.mapValues(IntegerType::get(32, getContext()),
916 getOperation()->setAttr("operand_segment_sizes", newAttr);
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py1606 newAttr = self.CHARSET_RE.sub(rewrite, contentType)
1608 newAttr)
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorOps.cpp1842 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/
DLinalgOps.cpp1004 DenseElementsAttr newAttr = DenseElementsAttr::getFromRawBuffer( in matchAndRewrite() local
1006 rewriter.replaceOpWithNewOp<ConstantOp>(reshapeOp, newAttr); in matchAndRewrite()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp2313 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()
DSemaDecl.cpp2549 InheritableAttr *newAttr = in mergeParamDeclAttributes() local
2551 newAttr->setInherited(true); in mergeParamDeclAttributes()
2552 newDecl->addAttr(newAttr); in mergeParamDeclAttributes()
/external/llvm-project/clang/lib/Sema/
DSemaDeclAttr.cpp2610 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()
DTreeTransform.h6658 const Attr *newAttr = oldAttr ? getDerived().TransformAttr(oldAttr) : nullptr; in TransformAttributedType() local
6659 if (oldAttr && !newAttr) in TransformAttributedType()
6691 newTL.setAttr(newAttr); in TransformAttributedType()
DSemaDecl.cpp3001 InheritableAttr *newAttr = in mergeParamDeclAttributes() local
3003 newAttr->setInherited(true); in mergeParamDeclAttributes()
3004 newDecl->addAttr(newAttr); in mergeParamDeclAttributes()