Home
last modified time | relevance | path

Searched full:natural (Results 1 – 25 of 4534) sorted by relevance

12345678910>>...182

/aosp_15_r20/external/libcups/examples/
H A Dipp-everywhere.test27 ATTR naturalLanguage attributes-natural-language en
186 ATTR naturalLanguage attributes-natural-language en
207 ATTR naturalLanguage attributes-natural-language en
230 ATTR naturalLanguage attributes-natural-language en
252 ATTR naturalLanguage attributes-natural-language en
273 ATTR naturalLanguage attributes-natural-language en
296 ATTR naturalLanguage attributes-natural-language en
318 ATTR naturalLanguage attributes-natural-language en
339 ATTR naturalLanguage attributes-natural-language en
362 ATTR naturalLanguage attributes-natural-language en
[all …]
H A Dipp-1.1.test35 ATTR naturalLanguage attributes-natural-language en
44 # attributes-natural-language.
67 NAME "RFC 8011 section 4.1.4: attributes-natural-language"
70 ATTR naturalLanguage attributes-natural-language en
77 NAME "RFC 8011 section 4.1.4: attributes-natural-language + attributes-charset"
80 ATTR naturalLanguage attributes-natural-language en
88 NAME "RFC 8011 section 4.1.4: attributes-charset + attributes-natural-language"
92 ATTR naturalLanguage attributes-natural-language en
110 ATTR naturalLanguage attributes-natural-language en
126 ATTR naturalLanguage attributes-natural-language en
[all …]
/aosp_15_r20/external/libcups/test/
H A D4.2-cups-printer-ops.test21 ATTR language attributes-natural-language en
31 EXPECT attributes-natural-language
44 ATTR language attributes-natural-language en
52 EXPECT attributes-natural-language
65 ATTR language attributes-natural-language en
73 EXPECT attributes-natural-language
86 ATTR language attributes-natural-language en
94 EXPECT attributes-natural-language
107 ATTR language attributes-natural-language en
120 EXPECT attributes-natural-language
[all …]
H A D4.3-job-ops.test21 ATTR language attributes-natural-language en
42 ATTR language attributes-natural-language en
53 EXPECT attributes-natural-language
67 ATTR language attributes-natural-language en
76 EXPECT attributes-natural-language
92 ATTR language attributes-natural-language en
106 EXPECT attributes-natural-language
121 ATTR language attributes-natural-language en
130 EXPECT attributes-natural-language
146 ATTR language attributes-natural-language en
[all …]
H A D4.1-requests.test5 # attributes-natural-language
26 EXPECT attributes-natural-language
44 EXPECT attributes-natural-language
55 ATTR language attributes-natural-language en
62 EXPECT attributes-natural-language
73 ATTR language attributes-natural-language en
81 EXPECT attributes-natural-language
93 ATTR language attributes-natural-language en
100 EXPECT attributes-natural-language
112 ATTR language attributes-natural-language en
[all …]
/aosp_15_r20/external/coreboot/src/lib/gnat/
H A Ds-unstyp.ads57 type Packed_Bytes1 is array (Natural range <>) of aliased Packed_Byte;
96 Amount : Natural) return Short_Short_Unsigned;
100 Amount : Natural) return Short_Short_Unsigned;
104 Amount : Natural) return Short_Short_Unsigned;
108 Amount : Natural) return Short_Short_Unsigned;
112 Amount : Natural) return Short_Short_Unsigned;
116 Amount : Natural) return Short_Unsigned;
120 Amount : Natural) return Short_Unsigned;
124 Amount : Natural) return Short_Unsigned;
128 Amount : Natural) return Short_Unsigned;
[all …]
H A Ds-imenne.adb43 (Pos : Natural;
45 P : out Natural;
52 type Index_Table is array (Natural) of Natural_8;
60 Start : constant Natural := Natural (IndexesT (Pos));
61 Next : constant Natural := Natural (IndexesT (Pos + 1));
73 (Pos : Natural;
75 P : out Natural;
82 type Index_Table is array (Natural) of Natural_16;
90 Start : constant Natural := Natural (IndexesT (Pos));
91 Next : constant Natural := Natural (IndexesT (Pos + 1));
[all …]
H A Dinterfac.ads75 Amount : Natural) return Unsigned_8;
79 Amount : Natural) return Unsigned_8;
83 Amount : Natural) return Unsigned_8;
87 Amount : Natural) return Unsigned_8;
91 Amount : Natural) return Unsigned_8;
95 Amount : Natural) return Unsigned_16;
99 Amount : Natural) return Unsigned_16;
103 Amount : Natural) return Unsigned_16;
107 Amount : Natural) return Unsigned_16;
111 Amount : Natural) return Unsigned_16;
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DTreeMultimapNaturalTest.java56 * Unit tests for {@code TreeMultimap} with natural ordering.
76 Ordering.natural().nullsFirst(), Ordering.natural().nullsFirst()); in suite()
90 .compare(left.getKey(), right.getKey(), Ordering.natural().nullsFirst()) in suite()
92 left.getValue(), right.getValue(), Ordering.natural().nullsFirst()) in suite()
116 TreeMultimap.create(Ordering.natural().nullsFirst(), Ordering.natural()); in suite()
125 return Ordering.natural().nullsFirst().sortedCopy(insertionOrder); in suite()
232 TreeMultimap.create(Ordering.natural(), Ordering.natural().nullsFirst()); in suite()
239 return Ordering.natural().nullsFirst().sortedCopy(insertionOrder); in suite()
255 TreeMultimap.create(Ordering.natural(), Ordering.natural().nullsFirst()); in suite()
262 return Ordering.natural().nullsFirst().sortedCopy(insertionOrder); in suite()
[all …]
H A DComparatorsTest.java39 Comparator<String> comparator = Ordering.natural(); in testLexicographical()
53 .addEqualityGroup(Ordering.natural()) in testLexicographical()
58 assertFalse(Comparators.isInOrder(asList(5, 3, 0, 9), Ordering.natural())); in testIsInOrder()
59 assertFalse(Comparators.isInOrder(asList(0, 5, 3, 9), Ordering.natural())); in testIsInOrder()
60 assertTrue(Comparators.isInOrder(asList(0, 3, 5, 9), Ordering.natural())); in testIsInOrder()
61 assertTrue(Comparators.isInOrder(asList(0, 0, 3, 3), Ordering.natural())); in testIsInOrder()
62 assertTrue(Comparators.isInOrder(asList(0, 3), Ordering.natural())); in testIsInOrder()
63 assertTrue(Comparators.isInOrder(Collections.singleton(1), Ordering.natural())); in testIsInOrder()
64 assertTrue(Comparators.isInOrder(Collections.<Integer>emptyList(), Ordering.natural())); in testIsInOrder()
68 assertFalse(Comparators.isInStrictOrder(asList(5, 3, 0, 9), Ordering.natural())); in testIsInStrictOrder()
[all …]
H A DOrderingTest.java78 Ordering.<Integer>natural() in testComplicatedOrderingExample()
112 Ordering<Integer> comparator = Ordering.natural(); in testNatural()
130 assertEquals("Ordering.natural()", comparator.toString()); in testNatural()
140 Ordering<String> orderingFromOrdering = Ordering.from(Ordering.<String>natural()); in testFrom()
143 .addEqualityGroup(orderingFromOrdering, Ordering.natural()) in testFrom()
294 return Ordering.<Character>natural().onResultOf(CharAtFunction.values()[index]);
368 .addEqualityGroup(Ordering.natural().reverse())
388 private static final Ordering<Integer> DECREASING_INTEGER = Ordering.<Integer>natural().reverse();
392 Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength);
399 comparator, Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength))
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DTreeMultimapNaturalTest.java56 * Unit tests for {@code TreeMultimap} with natural ordering.
76 Ordering.natural().nullsFirst(), Ordering.natural().nullsFirst()); in suite()
90 .compare(left.getKey(), right.getKey(), Ordering.natural().nullsFirst()) in suite()
92 left.getValue(), right.getValue(), Ordering.natural().nullsFirst()) in suite()
116 TreeMultimap.create(Ordering.natural().nullsFirst(), Ordering.natural()); in suite()
125 return Ordering.natural().nullsFirst().sortedCopy(insertionOrder); in suite()
232 TreeMultimap.create(Ordering.natural(), Ordering.natural().nullsFirst()); in suite()
239 return Ordering.natural().nullsFirst().sortedCopy(insertionOrder); in suite()
255 TreeMultimap.create(Ordering.natural(), Ordering.natural().nullsFirst()); in suite()
262 return Ordering.natural().nullsFirst().sortedCopy(insertionOrder); in suite()
[all …]
H A DComparatorsTest.java42 Comparator<String> comparator = Ordering.natural(); in testLexicographical()
56 .addEqualityGroup(Ordering.natural()) in testLexicographical()
61 assertFalse(Comparators.isInOrder(asList(5, 3, 0, 9), Ordering.natural())); in testIsInOrder()
62 assertFalse(Comparators.isInOrder(asList(0, 5, 3, 9), Ordering.natural())); in testIsInOrder()
63 assertTrue(Comparators.isInOrder(asList(0, 3, 5, 9), Ordering.natural())); in testIsInOrder()
64 assertTrue(Comparators.isInOrder(asList(0, 0, 3, 3), Ordering.natural())); in testIsInOrder()
65 assertTrue(Comparators.isInOrder(asList(0, 3), Ordering.natural())); in testIsInOrder()
66 assertTrue(Comparators.isInOrder(Collections.singleton(1), Ordering.natural())); in testIsInOrder()
67 assertTrue(Comparators.isInOrder(Collections.<Integer>emptyList(), Ordering.natural())); in testIsInOrder()
71 assertFalse(Comparators.isInStrictOrder(asList(5, 3, 0, 9), Ordering.natural())); in testIsInStrictOrder()
[all …]
H A DOrderingTest.java78 Ordering.<Integer>natural() in testComplicatedOrderingExample()
112 Ordering<Integer> comparator = Ordering.natural(); in testNatural()
130 assertEquals("Ordering.natural()", comparator.toString()); in testNatural()
140 Ordering<String> orderingFromOrdering = Ordering.from(Ordering.<String>natural()); in testFrom()
143 .addEqualityGroup(orderingFromOrdering, Ordering.natural()) in testFrom()
294 return Ordering.<Character>natural().onResultOf(CharAtFunction.values()[index]);
368 .addEqualityGroup(Ordering.natural().reverse())
388 private static final Ordering<Integer> DECREASING_INTEGER = Ordering.<Integer>natural().reverse();
392 Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength);
399 comparator, Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength))
[all …]
/aosp_15_r20/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/
H A DPredictResponse.java90 * AutoML Translation and AutoML Natural Language Sentiment Analysis
105 * AutoML Translation and AutoML Natural Language Sentiment Analysis
121 * AutoML Translation and AutoML Natural Language Sentiment Analysis
136 * AutoML Translation and AutoML Natural Language Sentiment Analysis
151 * AutoML Translation and AutoML Natural Language Sentiment Analysis
170 * For AutoML Natural Language (Classification, Entity Extraction, and
191 * For AutoML Natural Language (Classification, Entity Extraction, and
214 * For AutoML Natural Language (Classification, Entity Extraction, and
264 * AutoML Natural Language Sentiment Analysis
273 * from Sentiment Analysis in the Natural Language API.
[all …]
H A DPredictResponseOrBuilder.java31 * AutoML Translation and AutoML Natural Language Sentiment Analysis
43 * AutoML Translation and AutoML Natural Language Sentiment Analysis
55 * AutoML Translation and AutoML Natural Language Sentiment Analysis
67 * AutoML Translation and AutoML Natural Language Sentiment Analysis
80 * AutoML Translation and AutoML Natural Language Sentiment Analysis
94 * For AutoML Natural Language (Classification, Entity Extraction, and
112 * For AutoML Natural Language (Classification, Entity Extraction, and
130 * For AutoML Natural Language (Classification, Entity Extraction, and
149 * AutoML Natural Language Sentiment Analysis
158 * from Sentiment Analysis in the Natural Language API.
[all …]
/aosp_15_r20/external/libcups/doc/help/
H A Dspec-ipp.html436 <dt>Natural Language and Character Set:
438 …<dd>The "attributes-charset" and "attributes-natural-language" attributes as described in section …
454 <dt>Natural Language and Character Set:
456 …<dd>The "attributes-charset" and "attributes-natural-language" attributes as described in section …
484 <dt>Natural Language and Character Set:
486 …<dd>The "attributes-charset" and "attributes-natural-language" attributes as described in section …
530 <dt>Natural Language and Character Set:
532 …<dd>The "attributes-charset" and "attributes-natural-language" attributes as described in section …
561 <dt>Natural Language and Character Set:
563 …<dd>The "attributes-charset" and "attributes-natural-language" attributes as described in section …
[all …]
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMap.java115 private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
119 ImmutableSortedSet.emptySet(Ordering.natural()), ImmutableList.<Object>of());
122 if (Ordering.natural().equals(comparator)) { in emptyMap()
144 return of(Ordering.natural(), k1, v1); in of()
155 * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
158 * @throws IllegalArgumentException if the two keys are equal according to their natural ordering
166 * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
169 * @throws IllegalArgumentException if any two keys are equal according to their natural ordering
177 * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
180 * @throws IllegalArgumentException if any two keys are equal according to their natural ordering
[all …]
H A DImmutableSortedSet.java87 if (Ordering.natural().equals(comparator)) { in emptySet()
88 @SuppressWarnings("unchecked") // The natural-ordered empty set supports all types. in emptySet()
102 @SuppressWarnings("unchecked") // The natural-ordered empty set supports all types.
109 return new RegularImmutableSortedSet<>(ImmutableList.of(e1), Ordering.natural()); in of()
113 * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
120 return construct(Ordering.natural(), 2, e1, e2); in of()
124 * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
131 return construct(Ordering.natural(), 3, e1, e2, e3); in of()
135 * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
142 return construct(Ordering.natural(), 4, e1, e2, e3, e4); in of()
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DImmutableSortedMap.java116 private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
120 ImmutableSortedSet.emptySet(Ordering.natural()), ImmutableList.<Object>of());
123 if (Ordering.natural().equals(comparator)) { in emptyMap()
145 return of(Ordering.natural(), k1, v1); in of()
156 * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
159 * @throws IllegalArgumentException if the two keys are equal according to their natural ordering
167 * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
170 * @throws IllegalArgumentException if any two keys are equal according to their natural ordering
178 * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
181 * @throws IllegalArgumentException if any two keys are equal according to their natural ordering
[all …]
H A DImmutableSortedSet.java83 if (Ordering.natural().equals(comparator)) { in emptySet()
84 @SuppressWarnings("unchecked") // The natural-ordered empty set supports all types. in emptySet()
98 @SuppressWarnings("unchecked") // The natural-ordered empty set supports all types.
105 return new RegularImmutableSortedSet<>(ImmutableList.of(e1), Ordering.natural()); in of()
109 * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
116 return construct(Ordering.natural(), 2, e1, e2); in of()
120 * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
127 return construct(Ordering.natural(), 3, e1, e2, e3); in of()
131 * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
138 return construct(Ordering.natural(), 4, e1, e2, e3, e4); in of()
[all …]
/aosp_15_r20/external/google-cloud-java/java-automl/grpc-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/
H A DPredictionServiceGrpc.java186 * AutoML Natural Language Classification
189 * AutoML Natural Language Entity Extraction
192 * AutoML Natural Language Sentiment Analysis
223 * * AutoML Video Intelligence Object Tracking * AutoML Natural Language Classification
224 * * AutoML Natural Language Entity Extraction
225 * * AutoML Natural Language Sentiment Analysis
287 * AutoML Natural Language Classification
290 * AutoML Natural Language Entity Extraction
293 * AutoML Natural Language Sentiment Analysis
325 * * AutoML Video Intelligence Object Tracking * AutoML Natural Language Classification
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DTreeSet.java30 * The elements are ordered using their {@linkplain Comparable natural
116 * natural ordering of its elements. All elements inserted into
141 * If {@code null}, the {@linkplain Comparable natural
150 * collection, sorted according to the <i>natural ordering</i> of its
234 * and this set uses natural ordering, or its comparator
255 * and this set uses natural ordering, or its comparator
276 * and this set uses natural ordering, or its comparator
299 * if any element is null and this set uses natural ordering, or
319 * is null and this set uses natural ordering, or its comparator
333 * this set uses natural ordering, or its comparator does
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DTreeSet.java30 * The elements are ordered using their {@linkplain Comparable natural
116 * natural ordering of its elements. All elements inserted into
141 * If {@code null}, the {@linkplain Comparable natural
150 * collection, sorted according to the <i>natural ordering</i> of its
234 * and this set uses natural ordering, or its comparator
255 * and this set uses natural ordering, or its comparator
276 * and this set uses natural ordering, or its comparator
299 * if any element is null and this set uses natural ordering, or
319 * is null and this set uses natural ordering, or its comparator
333 * this set uses natural ordering, or its comparator does
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/
DTreeSet.java30 * The elements are ordered using their {@linkplain Comparable natural
116 * natural ordering of its elements. All elements inserted into
141 * If {@code null}, the {@linkplain Comparable natural
150 * collection, sorted according to the <i>natural ordering</i> of its
234 * and this set uses natural ordering, or its comparator
255 * and this set uses natural ordering, or its comparator
276 * and this set uses natural ordering, or its comparator
299 * if any element is null and this set uses natural ordering, or
319 * is null and this set uses natural ordering, or its comparator
333 * this set uses natural ordering, or its comparator does
[all …]

12345678910>>...182