/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/ |
D | ProjectionExpressionTest.java | 48 List<NestedAttributeName> attributeNames = EXPECTED_ATTRIBUTE_NAMES.values() in severalTopLevelAttributes_handledCorrectly() local 57 …assertProjectionExpression(attributeNames, EXPECTED_ATTRIBUTE_NAMES, expectedProjectionExpression); in severalTopLevelAttributes_handledCorrectly() 62 List<NestedAttributeName> attributeNames = Arrays.asList(NestedAttributeName.create( in severalNestedAttributes_handledCorrectly() local 71 …assertProjectionExpression(attributeNames, EXPECTED_ATTRIBUTE_NAMES, expectedProjectionExpression); in severalNestedAttributes_handledCorrectly() 79 List<NestedAttributeName> attributeNames = Arrays.asList( in nonUniqueAttributeNames_AreCollapsed() local 86 … assertProjectionExpression(attributeNames, expectedAttributeNames, expectedProjectionExpression); in nonUniqueAttributeNames_AreCollapsed() 96 List<NestedAttributeName> attributeNames = Arrays.asList( in nonUniquePlaceholders_AreDisambiguated() local 104 … assertProjectionExpression(attributeNames, expectedAttributeNames, expectedProjectionExpression); in nonUniquePlaceholders_AreDisambiguated() 107 private void assertProjectionExpression(List<NestedAttributeName> attributeNames, in assertProjectionExpression() argument 110 ProjectionExpression projectionExpression = ProjectionExpression.create(attributeNames); in assertProjectionExpression()
|
/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/cldr-code/src/main/java/org/unicode/cldr/api/ |
D | CldrPath.java | 500 List<String> attributeNames = in appendToString() local 505 if (attributeNames.isEmpty()) { in appendToString() 512 .compare(lastPathAttributeName, attributeNames.get(0)) in appendToString() 515 appendResortedValueAttributesTo(out, attributeNames, valueAttributes); in appendToString() 521 out.append(getLocalToString()), attributeNames, valueAttributes); in appendToString() 526 List<String> attributeNames, in appendResortedValueAttributesTo() argument 530 attributeNames.add(attributeKeyValuePairs.get(n)); in appendResortedValueAttributesTo() 532 attributeNames.sort(dtdType.getAttributeComparator()); in appendResortedValueAttributesTo() 533 for (String attrName : attributeNames) { in appendResortedValueAttributesTo() 545 List<String> attributeNames, in appendValueAttributesTo() argument [all …]
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/immutable/ |
D | MetaTableSchemaTest.java | 152 public void attributeNames() { in attributeNames() method in MetaTableSchemaTest 153 List<String> attributeNames = Collections.singletonList("attribute-names"); in attributeNames() local 156 when(mockTableSchema.attributeNames()).thenReturn(attributeNames); in attributeNames() 158 assertThat(metaTableSchema.attributeNames()).isSameAs(attributeNames); in attributeNames() 159 verify(mockTableSchema).attributeNames(); in attributeNames() 164 assertUninitialized(TableSchema::attributeNames); in attributeNames_notInitialized()
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
D | ChartDtdDelta.java | 202 .addCell(datum.attributeNames) in writeContents() 292 Set<String> attributeNames = in checkNames() local 305 attributeNames); in checkNames() 309 Set<String> attributeNames = in checkNames() local 342 || !attributeNames.isEmpty()) { in checkNames() 348 attributeNames); in checkNames() 391 final String attributeNames; field in ChartDtdDelta.DiffElement 412 this.attributeNames = in DiffElement() 437 .add("attributeNames", attributeNames) in toString() 453 Set<String> attributeNames) { in addData() argument [all …]
|
D | ShowDtdDiffs.java | 104 String attributeNames = in checkNames() local 107 System.out.println(prefix + "\tElement\t" + newPath + "\t" + attributeNames); in checkNames() 110 String attributeNames = in checkNames() local 113 if (!attributeNames.isEmpty()) { in checkNames() 114 System.out.println(prefix + "\tAttribute\t" + newPath + "\t" + attributeNames); in checkNames()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ |
D | UpdateItemOperationTransactTest.java | 62 Map<String, String> attributeNames = Collections.singletonMap("key", "value2"); in generateTransactWriteItem_basicRequest() local 67 builder.expressionAttributeNames(attributeNames); in generateTransactWriteItem_basicRequest() 81 … .expressionAttributeNames(attributeNames) in generateTransactWriteItem_basicRequest() 99 Map<String, String> attributeNames = Collections.singletonMap("key", "value2"); in generateTransactWriteItem_conditionalRequest() local 104 builder.expressionAttributeNames(attributeNames); in generateTransactWriteItem_conditionalRequest() 120 … .expressionAttributeNames(attributeNames) in generateTransactWriteItem_conditionalRequest()
|
D | DeleteItemOperationTest.java | 498 Map<String, String> attributeNames = Collections.singletonMap("key", "value2"); in generateTransactWriteItem_conditionalRequest() local 505 … .expressionAttributeNames(attributeNames) in generateTransactWriteItem_conditionalRequest() 518 … .expressionAttributeNames(attributeNames) in generateTransactWriteItem_conditionalRequest()
|
D | PutItemOperationTest.java | 575 Map<String, String> attributeNames = Collections.singletonMap("key", "value2"); in generateTransactWriteItem_conditionalRequest() local 582 .expressionAttributeNames(attributeNames) in generateTransactWriteItem_conditionalRequest() 595 … .expressionAttributeNames(attributeNames) in generateTransactWriteItem_conditionalRequest()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/ |
D | QueryEnhancedRequestTest.java | 157 List<NestedAttributeName> attributeNames = new ArrayList<>(); in test_nestedAttributesNullNestedAttributeElement() local 158 attributeNames.add(NestedAttributeName.create("foo")); in test_nestedAttributesNullNestedAttributeElement() 159 attributeNames.add(null); in test_nestedAttributesNullNestedAttributeElement() 161 .addNestedAttributesToProject(attributeNames) in test_nestedAttributesNullNestedAttributeElement()
|
D | ScanEnhancedRequestTest.java | 173 List<NestedAttributeName> attributeNames = new ArrayList<>(); in test_nestedAttributesNullNestedAttributeElement() local 174 attributeNames.add(NestedAttributeName.create("foo")); in test_nestedAttributesNullNestedAttributeElement() 175 attributeNames.add(null); in test_nestedAttributesNullNestedAttributeElement() 177 .addNestedAttributesToProject(attributeNames) in test_nestedAttributesNullNestedAttributeElement()
|
/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/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/ |
D | WrappedTableSchema.java | 91 public List<String> attributeNames() { in attributeNames() method in WrappedTableSchema 92 return this.delegateTableSchema.attributeNames(); in attributeNames()
|
D | StaticImmutableTableSchema.java | 89 private final List<String> attributeNames; field in StaticImmutableTableSchema 184 flattenedMapper.otherItemTableSchema.attributeNames().forEach( in StaticImmutableTableSchema() 208 this.attributeNames = Collections.unmodifiableList(new ArrayList<>(mutableAttributeNames)); in StaticImmutableTableSchema() 573 public List<String> attributeNames() { in attributeNames() method in StaticImmutableTableSchema 574 return this.attributeNames; in attributeNames()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/mapper/ |
D | MetaTableSchema.java | 78 public List<String> attributeNames() { in attributeNames() method in MetaTableSchema 79 return concreteTableSchema().attributeNames(); in attributeNames()
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | XPathParts.java | 560 public XPathParts removeAttributes(String elementName, Collection<String> attributeNames) { in removeAttributes() argument 561 return removeAttributes(findElement(elementName), attributeNames); in removeAttributes() 564 public XPathParts removeAttributes(int elementIndex, Collection<String> attributeNames) { in removeAttributes() argument 568 || attributeNames == null in removeAttributes() 569 || attributeNames.isEmpty() in removeAttributes() 570 || Collections.disjoint(attributeNames, ea.keySet())) { in removeAttributes() 577 elements.get(elementIndex).removeAttributes(attributeNames); in removeAttributes() 726 private void removeAttributes(Collection<String> attributeNames) { in removeAttributes() argument 727 if (attributeNames == null) { in removeAttributes() 730 for (String attribute : attributeNames) { in removeAttributes()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/update/ |
D | UpdateExpressionConverter.java | 107 List<String> attributeNames = listPathsWithoutTokens(updateExpression); in findAttributeNames() local 109 attributeNames.addAll(attributeNamesFromTokens); in findAttributeNames() 110 return attributeNames; in findAttributeNames()
|
D | UpdateExpressionUtils.java | 139 private static Map<String, String> expressionNamesFor(String... attributeNames) { in expressionNamesFor() argument 140 return Arrays.stream(attributeNames) in expressionNamesFor()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/ |
D | DocumentTableSchemaTest.java | 71 assertThat(documentTableSchema.attributeNames()).isEqualTo(Collections.emptyList()); in defaultBuilderWith_NoElement_CreateEmptyMetaData() 83 …assertThat(documentTableSchema.attributeNames()).isEqualTo(Arrays.asList("sampleHashKey", "sampleS… in tableMetaData_With_BothSortAndHashKey_InTheBuilder() 96 …assertThat(documentTableSchema.attributeNames()).isEqualTo(Collections.singletonList("sampleHashKe… in tableMetaData_WithOnly_HashKeyInTheBuilder()
|
/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/pytorch/torch/csrc/jit/ir/ |
D | node_hashing.cpp | 164 auto lnames = lhs->attributeNames(); in attributesEqualCSE() 165 auto rnames = rhs->attributeNames(); in attributesEqualCSE()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/ |
D | StaticImmutableTableSchemaFlattenTest.java | 183 public void attributeNames() { in attributeNames() method in StaticImmutableTableSchemaFlattenTest 184 Collection<String> result = immutableTableSchema.attributeNames(); in attributeNames()
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/ |
D | TableSchema.java | 286 List<String> attributeNames(); in attributeNames() method
|
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/document/ |
D | DocumentTableSchema.java | 163 public List<String> attributeNames() { in attributeNames() method in DocumentTableSchema
|