/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | HtmlPolicyBuilder.java | 301 public AttributeBuilder allowAttributes(String... attributeNames) { in allowAttributes() argument 303 for (String attributeName : attributeNames) { in allowAttributes() 318 public AttributeBuilder disallowAttributes(String... attributeNames) { in disallowAttributes() argument 319 return this.allowAttributes(attributeNames) in disallowAttributes() 325 AttributePolicy policy, List<String> attributeNames) { in allowAttributesGlobally() argument 327 for (String attributeName : attributeNames) { in allowAttributesGlobally() 341 AttributePolicy policy, List<String> attributeNames, in allowAttributesOnElements() argument 350 for (String attributeName : attributeNames) { in allowAttributesOnElements() 635 private final List<String> attributeNames; field in HtmlPolicyBuilder.AttributeBuilder 638 AttributeBuilder(List<? extends String> attributeNames) { in AttributeBuilder() argument [all …]
|
D | HtmlChangeListener.java | 48 @Nullable T context, String tagName, String... attributeNames); in discardedAttributes() argument
|
/external/cldr/tools/java/org/unicode/cldr/api/ |
D | CldrPath.java | 472 List<String> attributeNames = in appendToString() local 477 if (attributeNames.isEmpty()) { in appendToString() 484 .compare(lastPathAttributeName, attributeNames.get(0)) > 0) { in appendToString() 486 appendResortedValueAttributesTo(out, attributeNames, valueAttributes); in appendToString() 491 … return appendValueAttributesTo(out.append(getLocalToString()), attributeNames, valueAttributes); in appendToString() 496 List<String> attributeNames, in appendResortedValueAttributesTo() argument 500 attributeNames.add(attributeKeyValuePairs.get(n)); in appendResortedValueAttributesTo() 502 attributeNames.sort(dtdType.getAttributeComparator()); in appendResortedValueAttributesTo() 503 for (String attrName : attributeNames) { in appendResortedValueAttributesTo() 515 List<String> attributeNames, in appendValueAttributesTo() argument [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | ChartDtdDelta.java | 151 .addCell(datum.attributeNames) in writeContents() 218 …Set<String> attributeNames = getAttributeNames(dtdCurrent, dtdLast, name, Collections.emptyMap(), … in checkNames() local 219 …a(dtdCurrent, NEW_PREFIX + name + (ordered ? ORDERED_SIGN : ""), version, newPath, attributeNames); in checkNames() 223 …Set<String> attributeNames = getAttributeNames(dtdCurrent, dtdLast, name, oldElement.getAttributes… in checkNames() local 231 if (!attributeNames.isEmpty()) { in checkNames() 232 …wlyDeprecated ? DEPRECATED_PREFIX : "") + name + orderingStatus, version, newPath, attributeNames); in checkNames() 264 final String attributeNames; field in ChartDtdDelta.DiffElement 276 this.attributeNames = attributeNames2.isEmpty() ? NONE : in DiffElement() 297 .add("attributeNames", attributeNames) in toString() 308 …ta(DtdData dtdCurrent, String element, String prefix, String newPath, Set<String> attributeNames) { in addData() argument [all …]
|
D | ShowDtdDiffs.java | 93 …String attributeNames = getAttributeNames(dtdCurrent, name, Collections.EMPTY_MAP, element.getAttr… in checkNames() local 94 System.out.println(prefix + "\tElement\t" + newPath + "\t" + attributeNames); in checkNames() 97 …String attributeNames = getAttributeNames(dtdCurrent, name, oldElement.getAttributes(), element.ge… in checkNames() local 98 if (!attributeNames.isEmpty()) { in checkNames() 99 System.out.println(prefix + "\tAttribute\t" + newPath + "\t" + attributeNames); in checkNames()
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
D | HtmlChangeReporterTest.java | 56 Context context, String tagName, String... attributeNames) { in testChangeReporting() 59 for (String attributeName : attributeNames) { in testChangeReporting()
|
/external/llvm-project/mlir/lib/Dialect/PDL/IR/ |
D | PDL.cpp | 200 ArrayAttr attrNames = op.attributeNames(); in print() 280 ArrayAttr attributeNames = op.attributeNames(); in verify() local 282 if (attributeNames.size() != attributeValues.size()) { in verify() 286 << attributeNames.size() << " names and " << attributeValues.size() in verify()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XPathParts.java | 561 public XPathParts removeAttributes(String elementName, Collection<String> attributeNames) { in removeAttributes() argument 562 return removeAttributes(findElement(elementName), attributeNames); in removeAttributes() 565 public XPathParts removeAttributes(int elementIndex, Collection<String> attributeNames) { in removeAttributes() argument 568 …if (ea == null || attributeNames == null || attributeNames.isEmpty() || Collections.disjoint(attri… in removeAttributes() 574 elements.get(elementIndex).removeAttributes(attributeNames); in removeAttributes() 810 private void removeAttributes(Collection<String> attributeNames) { in removeAttributes() argument 811 if (attributeNames == null) { in removeAttributes() 814 for (String attribute : attributeNames) { in removeAttributes()
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | AttributeService.java | 393 ImmutableList<String> attributeNames = getAttributeNames(attribute); in getSingleAttribute() local 395 if (attributeNames.size() != 1 || ALL_ATTRIBUTES.equals(attributeNames.get(0))) { in getSingleAttribute() 399 return attributeNames.get(0); in getSingleAttribute()
|
/external/llvm-project/mlir/lib/Dialect/PDLInterp/IR/ |
D | PDLInterp.cpp | 100 ArrayAttr attrNames = op.attributeNames(); in print()
|
/external/llvm-project/mlir/test/Dialect/PDL/ |
D | invalid.mlir | 96 attributeNames = ["attr"],
|
/external/llvm-project/mlir/include/mlir/Dialect/PDLInterp/IR/ |
D | PDLInterpOps.td | 409 StrArrayAttr:$attributeNames, 416 "ArrayAttr":$attributeNames), [{ 418 operands, attributes, attributeNames, types);
|
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/ |
D | PredicateTree.cpp | 104 for (auto it : llvm::zip(op.attributeNames(), op.attributes())) { in getTreePredicates()
|
D | PDLToPDLInterp.cpp | 511 operationOp.attributeNames()); in generateRewriter()
|
/external/llvm-project/mlir/include/mlir/Dialect/PDL/IR/ |
D | PDLOps.td | 251 StrArrayAttr:$attributeNames,
|
/external/llvm-project/mlir/lib/Rewrite/ |
D | ByteCode.cpp | 578 for (auto it : llvm::zip(op.attributeNames(), op.attributes())) { in generate()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | STL.h | 2024 void attributeNames(Container *names_,const Image* image_) in attributeNames() function
|
/external/python/cpython2/Mac/Modules/qt/ |
D | _Qtmodule.c | 19529 char attributeNames; in Qt_XMLParseAddMultipleAttributes() local 19541 &attributeNames, in Qt_XMLParseAddMultipleAttributes() 19546 attributeNames, in Qt_XMLParseAddMultipleAttributes()
|