Home
last modified time | relevance | path

Searched refs:attrDict (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/pdf/
DSkPDFTag.cpp127 std::unique_ptr<SkPDFDict> attrDict = SkPDFMakeDict(); in appendInt() local
128 attrDict->insertName("O", owner); in appendInt()
129 attrDict->insertInt(name, value); in appendInt()
130 fAttrs->appendObject(std::move(attrDict)); in appendInt()
137 std::unique_ptr<SkPDFDict> attrDict = SkPDFMakeDict(); in appendFloat() local
138 attrDict->insertName("O", owner); in appendFloat()
139 attrDict->insertScalar(name, value); in appendFloat()
140 fAttrs->appendObject(std::move(attrDict)); in appendFloat()
147 std::unique_ptr<SkPDFDict> attrDict = SkPDFMakeDict(); in appendName() local
148 attrDict->insertName("O", owner); in appendName()
[all …]
/external/llvm-project/mlir/include/mlir/IR/
DFunctionSupport.h594 MutableDictionaryAttr attrDict(curAttr); in setArgAttr()
595 attrDict.set(name, value); in setArgAttr()
598 if (curAttr != attrDict.getDictionary(value.getContext())) in setArgAttr()
599 setArgAttrs(index, attrDict); in setArgAttr()
607 MutableDictionaryAttr attrDict(getArgAttrDict(index)); in removeArgAttr()
608 auto result = attrDict.remove(name); in removeArgAttr()
612 setArgAttrs(index, attrDict); in removeArgAttr()
654 MutableDictionaryAttr attrDict(curAttr); in setResultAttr()
655 attrDict.set(name, value); in setResultAttr()
658 if (curAttr != attrDict.getDictionary(value.getContext())) in setResultAttr()
[all …]
/external/llvm-project/mlir/lib/IR/
DSymbolTable.cpp447 DictionaryAttr attrDict = op->getMutableAttrDict().getDictionaryOrNull(); in walkSymbolRefs() local
448 if (!attrDict) in walkSymbolRefs()
453 SmallVector<Attribute, 1> attrWorklist(1, attrDict); in walkSymbolRefs()
/external/llvm-project/mlir/tools/mlir-tblgen/
DOpFormatGen.cpp1174 } else if (auto *attrDict = dyn_cast<AttrDictDirective>(element)) { in genElementParser() local
1176 << (attrDict->isWithKeyword() ? "WithKeyword" : "") in genElementParser()
1669 if (auto *attrDict = dyn_cast<AttrDictDirective>(element)) { in genElementPrinter() local
1670 genAttrDictPrinter(*this, op, body, attrDict->isWithKeyword()); in genElementPrinter()
/external/python/setuptools/setuptools/_vendor/
Dpyparsing.py4891 def withAttribute(*args,**attrDict): argument
4944 attrs = attrDict.items()
/external/python/setuptools/pkg_resources/_vendor/
Dpyparsing.py4891 def withAttribute(*args,**attrDict): argument
4944 attrs = attrDict.items()